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, master has been updated
       via  c3346b50bd00778c2e8364b40a7dd7a891c713b4 (commit)
       via  117061d88420231d709515f4702446e60f7de4b6 (commit)
       via  9713e13893c9f2d2b12cea29b23b72a25170462e (commit)
       via  8592474c3fe6af408c7265a50bd1776a76942397 (commit)
       via  703ec1e2f24345146c997398b9c0cc492016455d (commit)
       via  3f93acbc6c0344151da794a73476de1f91000502 (commit)
       via  e825751cda6a920aa2455908970a3f8e85c1a4e8 (commit)
      from  f417c15e499745a7cd35fd1c8c5ae79888857199 (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 c3346b50bd00778c2e8364b40a7dd7a891c713b4
Author: Martin Renvoize <martin.renvo...@ptfs-europe.com>
Date:   Thu Jun 6 15:32:14 2019 +0100

    Bug 10215: DBRev 19.06.00.002
    
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

commit 117061d88420231d709515f4702446e60f7de4b6
Author: Martin Renvoize <martin.renvo...@ptfs-europe.com>
Date:   Wed Jun 5 12:58:20 2019 +0100

    Bug 10215: (follow-up) Fix the failing test
    
    We now handle NULL values at the database end and do not expect empty
    strings.
    
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>
    Signed-off-by: Nick Clemens <n...@bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

commit 9713e13893c9f2d2b12cea29b23b72a25170462e
Author: Martin Renvoize <martin.renvo...@ptfs-europe.com>
Date:   Wed Jun 5 12:54:30 2019 +0100

    Bug 10215: (follow-up) Correct existing data
    
    This patch adds the correction of data ('' => NULL) during the DB
    update.
    
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>
    Signed-off-by: Nick Clemens <n...@bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

commit 8592474c3fe6af408c7265a50bd1776a76942397
Author: Kyle M Hall <k...@bywatersolutions.com>
Date:   Tue May 7 12:49:03 2013 -0400

    Bug 10215: Increase the size of opacnote and librariannote for table 
subscriptionhistory
    
    We have librarians that are regularly hitting the maximum number of
    characters for the note fields in subscription history. They would like
    to be able to store at least 1000 characters here. Converting the
    varchar(150) to text should do it.
    
    Test Plan:
    1) Apply this patch
    2) Run updatedatabase.pl
    3) Add public and private notes to a subscription history entry
       where each note is greater than 150 characters.
    4) Save and view the notes, the notes should not be truncated.
    
    Rescued-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>
    Signed-off-by: Owen Leonard <oleon...@myacpl.org>
    Signed-off-by: Nick Clemens <n...@bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

commit 703ec1e2f24345146c997398b9c0cc492016455d
Author: Jonathan Druart <jonathan.dru...@bugs.koha-community.org>
Date:   Thu May 30 09:36:31 2019 -0500

    Bug 22919: Fix insert of authorities_normal_marc21.sql with strict SQL modes
    
    If strict SQL modes are set, the insert of authorities_normal_marc21.sql
    will fail.
    
    Test plan:
    DELETE FROM auth_subfield_structure;
    DELETE FROM auth_tag_structure;
    DELETE FROM auth_types;
    SET sql_mode = 
'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
    source 
/home/vagrant/kohaclone/installer/data/mysql/en/marcflavour/marc21/mandatory/authorities_normal_marc21.sql
    
    You should not see any errors.
    Without this patch you see:
    ERROR 1366 (22007) at line 280 in file:
    
'/home/vagrant/kohaclone/installer/data/mysql/en/marcflavour/marc21/mandatory/authorities_normal_marc21.sql':
    Incorrect integer value: ' for column 'linkid' at row 148
    '
    
    Signed-off-by: nabila <lovenab...@gmail.com>
    Signed-off-by: Nick Clemens <n...@bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

commit 3f93acbc6c0344151da794a73476de1f91000502
Author: Katrin Fischer <katrin.fischer...@web.de>
Date:   Sun Jun 2 08:58:50 2019 +0000

    Bug 22958: Fix help link on the SMS providers page
    
    The help link on the SMS providers page didn't link to the
    according chapter in the manual.
    
    To test:
    - Enter Email in SMSSendDriver system preference to
      make the configuration page appear
    - Go to Administration > SMS cellular providers
    - Click on the help link
    - Verify it leads to the manual start page
    - Apply patch
    - Repeat and verify the link now leads to the correct
      section in the manual
    
    Signed-off-by: Liz Rea <wizzy...@gmail.com>
    Signed-off-by: Josef Moravec <josef.mora...@gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

commit e825751cda6a920aa2455908970a3f8e85c1a4e8
Author: Jonathan Druart <jonathan.dru...@bugs.koha-community.org>
Date:   Fri May 31 11:41:22 2019 -0500

    Bug 23027: Make Suggestions.t pass even if no biblio in DB
    
    There are biblionumbers 1 and 2 hardcoded
    
    Test plan:
    MariaDB [koha_kohadev]> delete from biblioitems; delete from items; delete 
from biblio;
    % prove t/db_dependent/Suggestions.t
    Must return green with this patch applied
    
    Signed-off-by: Liz Rea <wizzy...@gmail.com>
    Signed-off-by: Josef Moravec <josef.mora...@gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvo...@ptfs-europe.com>

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

Summary of changes:
 C4/Serials.pm                                        |    1 +
 Koha.pm                                              |    2 +-
 Koha/Manual.pm                                       |    1 +
 .../marc21/mandatory/authorities_normal_marc21.sql   |    2 +-
 installer/data/mysql/kohastructure.sql               |    4 ++--
 installer/data/mysql/updatedatabase.pl               |   14 ++++++++++++++
 t/db_dependent/Serials.t                             |    4 ++--
 t/db_dependent/Suggestions.t                         |   18 +++++++++---------
 8 files changed, 31 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
main Koha release repository
_______________________________________________
koha-commits mailing list
koha-commits@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-commits

Reply via email to