[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.02-138-gcb59d155ae

Git repo owner gitmaster at git.koha-community.org
Tue Feb 11 01:42:36 CET 2020


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.11.x has been updated
       via  cb59d155aede69111bfd9d4d013ae027ebf51ae3 (commit)
       via  d5cd348c27b0c0d18474d11a8b78d1e2468f9a7a (commit)
       via  b995a6cb31cdc9596b06ba626df301c73941870a (commit)
       via  4642d1ddab23c7665f74cee86d4b2be76a6f9261 (commit)
       via  b985cf5b88fa5e04e7b3dcca263e3c9ce4d0b27a (commit)
       via  91294e26237e60353dd36dae13029e9ee8d157cb (commit)
      from  06377eb9d555e0e18a857406ceacb1d4f1e34720 (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 cb59d155aede69111bfd9d4d013ae027ebf51ae3
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Jan 17 14:29:42 2020 +0000

    Bug 24449: Add too_many_overdue to patron status for SIP
    
    To test:
    1 - Have sip running and use the cli to get info for a patron
        example: perl misc/sip_cli_emulator.pl  -a localhost -p 6001 -su koha -sp koha -l CPL -m patron_status_request --patron koha
    2 - Checkout an item to the patron, backdated so it is overdue
    3 - Set syspref 'OverduesBlockCirc' to anything but "Don't Block"
    4 - Get the patron status via SIP, note circ blocked flag is set, but too_many_overdue is not
    5 - Apply patch
    6 - Restart all the things
    7 - Get the patron status via SIP
    8 - Note the too_many_overdue flag is now triggered and there is a message
        example: READ: 24Y     Y       00120200117    142716AEEdna Acosta|AA23529001000463|BLY|CQN|BV0.25|AFGreetings from Koha.  -- Patron has overdues -- Patron owes 0.25|AOCPL|
    
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit d5cd348c27b0c0d18474d11a8b78d1e2468f9a7a
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Feb 5 10:36:14 2020 +0100

    Bug 24590: Fix Koha/Object.t on MySQL 8
    
    % prove t/db_dependent/Koha/Object.t
    is failing on MySQL 8 with:
    
     kohadev-koha at 9bbf9ac68519:/kohadevbox/koha$ prove t/db_dependent/Koha/Object.t
     t/db_dependent/Koha/Object.t .. 15/18
         #   Failed test 'Exception field is correct'
         #   at t/db_dependent/Koha/Object.t line 650.
         #          got: 'api_keys.secret'
         #     expected: 'secret'
         # Looks like you failed 1 test of 16.
     t/db_dependent/Koha/Object.t .. 16/18
     #   Failed test 'store() tests'
     #   at t/db_dependent/Koha/Object.t line 723.
    
    MySQL 8 displays the tablename in the error.
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit b995a6cb31cdc9596b06ba626df301c73941870a
Author: Lucas Gass <lucas at bywatersolutions.com>
Date:   Tue Jan 14 15:40:38 2020 +0000

    Bug 24420: Display waiting on hold items in the Cataloging search results Location column
    
    To Test:
    1. Place a hold on an item and trigger it.
    2  Do a cataloging search that would include this record.
    3. Notice that the 'Location' column does not account for this onhold
    item.
    4. Apply patch and look at catalog results again.
    5. You should see information display about the item being on hold.
    
    Signed-off-by: Barbara Johnson <barbara.johnson at bedfordtx.gov>
    Signed-off-by: Bouzid Fergani <bouzid.fergani at inlibro.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 4642d1ddab23c7665f74cee86d4b2be76a6f9261
Author: Nick <nick at bywatersolutions.com>
Date:   Fri Oct 18 18:26:38 2019 +0000

    Bug 23844: Check if field defined in framework and specify 'Default' for framework
    
    To test:
    1 - Go to Cataloguing
    2 - New from Z3950
    3 - Find an import a record
    4 - Check the plack logs:
    Use of uninitialized value in string ne at /kohadevbox/koha/cataloguing/addbiblio.pl line 565.
    Use of uninitialized value in string ne at /kohadevbox/koha/cataloguing/addbiblio.pl line 580.
    Use of uninitialized value $frameworkcode in string eq at /kohadevbox/koha/cataloguing/addbiblio.pl line 711.
    Use of uninitialized value $frameworkcode in string eq at /kohadevbox/koha/cataloguing/addbiblio.pl line 715.
    Use of uninitialized value $frameworkcode in string eq at /kohadevbox/koha/cataloguing/addbiblio.pl line 734.
    5 - Apply patch
    6 - Repeat
    7 - No new errors
    8 - Confirm selecting 'Default' from 'New from Z3950' dropdown also generates no errors
    
    Signed-off-by: Myka Kennedy Stephens <mkstephens at lancasterseminary.edu>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit b985cf5b88fa5e04e7b3dcca263e3c9ce4d0b27a
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Feb 4 14:16:26 2020 +0000

    Bug 22302: Make ITEMTYPECAT descriptions fallback to lib description if no opac description
    
    Signed-off-by: Andrew Fuerste-Henry <andrew at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 91294e26237e60353dd36dae13029e9ee8d157cb
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Feb 4 14:15:36 2020 +0000

    Bug 22302: Unit tests
    
    Signed-off-by: Andrew Fuerste-Henry <andrew at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 C4/Koha.pm                                                   |  4 ++--
 C4/SIP/ILS/Patron.pm                                         |  4 ++++
 cataloguing/addbiblio.pl                                     |  2 +-
 .../intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt    |  5 +++--
 t/db_dependent/Koha.t                                        | 12 +++++++++---
 t/db_dependent/Koha/Object.t                                 |  6 +++---
 6 files changed, 22 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list