[koha-commits] main Koha release repository branch 19.05.x updated. v19.05.00-34-ge697441

Git repo owner gitmaster at git.koha-community.org
Tue Jun 11 16:12:17 CEST 2019


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, 19.05.x has been updated
       via  e69744172a33165758562c6c786a1135361c7509 (commit)
       via  203ae6e8ecf2606922490fe0433e5eccfc8d95c5 (commit)
       via  1d27e1b4163573f314ea153fc091298229f15e80 (commit)
       via  e09c4a2cb1cc37ef167a952231a6103dec150c68 (commit)
       via  dfc86527ab0f258dd4b6c2c07b24dd890c70681b (commit)
       via  c4f81ea8f9d165a1cdfa1e5f4a80983f480befc7 (commit)
       via  997ad5043d25e8c32508ba655319cb4836126f80 (commit)
       via  75da739b1bf3bdb22f30e1e41da65c7a713c8036 (commit)
       via  a61323998313092385db7e94f177068463fca8ec (commit)
      from  feb8f84ef7a92038a544aaa2f44584ee848451fd (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 e69744172a33165758562c6c786a1135361c7509
Author: Jonathan Druart <jonathan.druart at 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 <lovenabila at gmail.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 703ec1e2f24345146c997398b9c0cc492016455d)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 203ae6e8ecf2606922490fe0433e5eccfc8d95c5
Author: Katrin Fischer <katrin.fischer.83 at 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 <wizzyrea at gmail.com>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 3f93acbc6c0344151da794a73476de1f91000502)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 1d27e1b4163573f314ea153fc091298229f15e80
Author: Jonathan Druart <jonathan.druart at 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 <wizzyrea at gmail.com>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit e825751cda6a920aa2455908970a3f8e85c1a4e8)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit e09c4a2cb1cc37ef167a952231a6103dec150c68
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue May 28 07:54:58 2019 -0400

    Bug 22982: (QA follow-up) Add behavior to Koha::Account::Line::apply and unit test
    
    Signed-off-by: Nadine Pierre <nadine.pierre at inLibro.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit f417c15e499745a7cd35fd1c8c5ae79888857199)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit dfc86527ab0f258dd4b6c2c07b24dd890c70681b
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu May 23 14:14:06 2019 -0400

    Bug 22982: Add unit tests
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Signed-off-by: Nadine Pierre <nadine.pierre at inLibro.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 986629b29f8651a99f877444c69dec2838f513d8)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit c4f81ea8f9d165a1cdfa1e5f4a80983f480befc7
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu May 23 11:27:23 2019 -0400

    Bug 22982: Paying lost fee does not always remove lost item from checkouts
    
    Depending on how a lost fee is paid, it may or may not be removed from the
    patrons current checkouts. The current expected behavior is for the lost
    item to be removed from the patrons checkouts when the lost fee is paid in
    full.
    
    This is due to the subroutine for handling of lost fees being included in
    the 'pay specific lines' code but not in the 'pay by amount' code.
    
    Test Plan:
    1) Apply this patch
    2) prove t/db_dependent/Koha/Account.t
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Signed-off-by: Nadine Pierre <nadine.pierre at inLibro.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 20dde4cc4acf35ba9f5edc76c5271198217994e6)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 997ad5043d25e8c32508ba655319cb4836126f80
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Mon Jun 3 17:32:10 2019 +0100

    Bug 23037: Add Henry Bolshaw to contributors
    
    We missed Henry from the release notes and about page.. sorry Henry!
    
    Signed-off-by: Magnus Enger <magnus at libriotech.no>
    Not really tested, just had a look and checked the changes look sane.
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 72d4b10bf4abcfc36a9f3bac263ad182b6512088)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 75da739b1bf3bdb22f30e1e41da65c7a713c8036
Author: Nazlı Çetin <nazli at devinim.com.tr>
Date:   Tue Nov 27 15:24:38 2018 +0000

    Bug 21887: (For OPAC) 856 link problem in XSLT result lists and detail page
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 9a58871503caa1b48e4e5c3cc0f565fa583f3e9d)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit a61323998313092385db7e94f177068463fca8ec
Author: Nazlı Çetin <nazli at devinim.com.tr>
Date:   Tue Nov 27 14:15:33 2018 +0000

    Bug 21887: 856 link problem in XSLT result lists and detail page
    
    Signed-off-by: Nazlı Çetin <nazli at devinim.com.tr>
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 4903cee9e937c970c6d3d15fd78d82189d8705eb)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

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

Summary of changes:
 Koha/Account.pm                                    |    8 +-
 Koha/Account/Line.pm                               |   10 +
 Koha/Manual.pm                                     |    1 +
 docs/contributors.yaml                             |    3 +
 docs/history.txt                                   |    1 +
 .../marc21/mandatory/authorities_normal_marc21.sql |    2 +-
 .../prog/en/xslt/MARC21slim2intranetDetail.xsl     |   75 ++++---
 .../prog/en/xslt/MARC21slim2intranetResults.xsl    |   82 ++++---
 .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl    |   17 +-
 .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl   |   17 +-
 t/db_dependent/Koha/Account.t                      |  227 +++++++++++++++++++-
 t/db_dependent/Suggestions.t                       |   18 +-
 12 files changed, 385 insertions(+), 76 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list