[koha-commits] main Koha release repository branch 3.22.x updated. v3.22.09-88-g0d18533

Git repo owner gitmaster at git.koha-community.org
Wed Aug 17 14:06:15 CEST 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, 3.22.x has been updated
       via  0d1853382b8d874c62aeda6549b5f1cc8a24c8ef (commit)
       via  8af23fbd3605afc1806b641c614d1d276a936d9b (commit)
       via  537d43bcd2d4b9c46756546bf4046e0068b9e89d (commit)
       via  7fa5b2d97912796723f15a0b437631236ee58f3d (commit)
       via  f0cfa73b3547629a25f8c906b8df40d5b1f58535 (commit)
      from  5ab0a8c23c4dee7b9fb557a714a0939abfb5ea45 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0d1853382b8d874c62aeda6549b5f1cc8a24c8ef
Author: Frédéric Demians <f.demians at tamil.fr>
Date:   Mon Aug 1 09:54:30 2016 +0000

    Bug 16573: Update DB rev (3.22.09.002)
    
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>

commit 8af23fbd3605afc1806b641c614d1d276a936d9b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Jul 22 09:51:00 2016 +0100

    Bug 16573: Define virtualshelves.created_on as datetime for existing installs
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 44785935bd45291a2ae36a5c9ab65b1e6cf69c5b)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    (cherry picked from commit d2b20b2a82ef73423ec6571967173083ba333501)
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>

commit 537d43bcd2d4b9c46756546bf4046e0068b9e89d
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Tue May 24 18:12:11 2016 -0300

    Bug 16573: change created_on type - atomic update
    
    This patch change 'created_on' virtualshelves column to
    datetime type
    
    To test:
    1) Apply the patch
    2) Run updatedatabase.pl
    3) Verify type of 'created_on' column
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 162b9015d9bfb23200d1bddff69be9384a33463b)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    (cherry picked from commit ce68d9b7fd14f9959f18039b63ad3e7bea44213e)
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>

commit 7fa5b2d97912796723f15a0b437631236ee58f3d
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Mon May 23 17:06:01 2016 -0300

    Bug 16573: fix structure and sample data for MySQL 5.7
    
    Web install on Ubuntu 16.04/Mysql 5.7 fails.
    
    This patch makes small changes to make installation
    possible to kohastructure.sql and some sample files.
    
    Sample values for quotes table can't have '0000-00-00 ...' values
    nor NULL values, now() is perhaps an option.
    
    Depends on Bug 16572
    
    To test:
    1) System with MySQL 5.7, for example Ubuntu 16.05
    2) Apply 16572
    3) Try web install, it fails
    4) Apply this and next patch
    5) Try again, now it succeed
    
    This is only for English install, i18n files needs revision
    I can do that if this is accepted.
    
    Perphaps a change is needed to updatedatabase.pl
    
    Ammended patch, 'created_on' field on virtualshelves
    can't be timestamp default null, mysql 5.5 complains
    that only one timestamp column can be defined as
    default not null. Changed to 'datetime' type.
    
    Can provide followup with updatedabase change,
    but need an opinion if this type change makes sense.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 36b2b288a7b8a39530f0a1ba7a00396206640533)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    (cherry picked from commit 8955b1b7c56ebbcf350a57e3a794597e0ac2d70c)
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>

commit f0cfa73b3547629a25f8c906b8df40d5b1f58535
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Mon May 23 16:58:03 2016 -0300

    Bug 16573: fix linkid value on marc_subfield_structure
    
    followup to previous patch.
    
    This patch fixes linkid value. It was set to '', but
    declared as tinyint.
    Mysql < 5.7 replaced this with nearest right value, i.e 0
    Mysql 5.7 gives error here.
    
    Also some normalization, all lines with data begins with two tabs
    
    To test:
    On top of Bug 16572 and previous patch
    
    1) Run webinstaller
    2) Add mandatory values
    3) There must be no problems on MySQL 5.7
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit d00d46112df2dc1c3f823fbc2a8c347deb69cdb7)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    (cherry picked from commit 58bd47a462a008f2e5cb9cfa221ee5b0a0bd5826)
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>

-----------------------------------------------------------------------

Summary of changes:
 Koha.pm                                            |    2 +-
 .../marc21/mandatory/authorities_normal_marc21.sql | 3380 ++++++++++----------
 .../data/mysql/en/optional/sample_patrons.sql      |    3 +-
 installer/data/mysql/en/optional/sample_quotes.sql |   62 +-
 installer/data/mysql/kohastructure.sql             |    4 +-
 installer/data/mysql/updatedatabase.pl             |   12 +-
 6 files changed, 1736 insertions(+), 1727 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list