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

Git repo owner gitmaster at git.koha-community.org
Fri Jan 31 01:19:08 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  a8659229be16dc8d8b2beaae370528afd373192e (commit)
       via  91befb973d9b646b15c78ba535348fa2cf139639 (commit)
       via  1bd14933e6bb21017abf271c758558c97624e6c7 (commit)
       via  4f2cac32a58905aab7f81071d27248174f932bad (commit)
       via  4c715fa0dbb0a92454b1e3012af8884ad4e12300 (commit)
       via  ae4c86e87e26a06611519510c386723e3a904371 (commit)
       via  ff78c70ccb540dfe5d2b2a263f3701bd8aa52cc3 (commit)
       via  756a95098d858d63cc0971c950f02278bbe242fe (commit)
       via  ad92c140587657a2cb2fb2fbd4c7ebce8dd15eb3 (commit)
       via  27de0d61792d46e4fbf8bd8dba2d1d6f0a48c091 (commit)
      from  428fc6fcc1dc029bed3d85acac1570e964c66c9a (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 a8659229be16dc8d8b2beaae370528afd373192e
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Fri Jan 10 10:49:45 2020 +0000

    Bug 23377: (QA follow-up) Use OVERRIDE_SYSPREF
    
    SYSPREF_OVERRIDE unfortunately is not supported ;)
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 91befb973d9b646b15c78ba535348fa2cf139639
Author: Ian Walls <ian at bywatersolutions.com>
Date:   Wed Jul 31 16:32:23 2019 +0000

    Bug 23377: use ENV syspref override instead of complete disable
    
    In an attempt to save time, bulkmarcimport temporarily sets CataloguingLog
    and AuthoritiesLog to 0.  It does this by disabling syspref caching and saving
    the changes to the database (then replacing the original values at completion).
    
    Unfortunately, this disables other key sysprefs from being cached, and results in
    a 50% increase in processing time for the script.
    
    This patch instead utilizes the ENV variable override feature of sysprefs, which
    preempts the cache in C4::Context->preference().
    
    To test:
    1. Perform a bulkmarcimport with a reasonable number of biblios (~1000 will do)
    2. Note the time taken to complete
    3. Apply patch
    4. Revert the biblio load performed
    5. Perform another bulkmarcimport with the same biblios and commandline options
    6. Note the time taken to complete
    7. Compare times.  The time from step 6 should be about 33% less than the time from step 2
    8. Check Cataloguing and Authorities Logs to verify imported records were not logged
    9. Profit!
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 1bd14933e6bb21017abf271c758558c97624e6c7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Jan 10 11:48:09 2020 +0100

    Bug 24200: Try to fix random failures from Borrower_PrevCheckout.t
    
    It failed inconsistently, let's try to use build_sample_item and see if
    it fixes the random failures.
    
    Test plan:
     % prove t/db_dependent/Patron/Borrower_PrevCheckout.t
    must return green
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 4f2cac32a58905aab7f81071d27248174f932bad
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Jan 10 11:29:15 2020 +0100

    Bug 24396: Fix Suggestions.t with MySQL 8
    
     #   Failed test 'DelSuggestion deletes the correct suggestion'
     #   at t/db_dependent/Suggestions.t line 413.
     #          got: 'my title 3'
     #     expected: 'my deleted title'
     t/db_dependent/Suggestions.t .. 112/113 # Looks like you failed 1 test of 113.
    
    Suggestions were returned in the reverse order. Adding an ORDER BY clause fixes the problem.
    
    Test plan:
     % prove t/db_dependent/Suggestions.t
    must return green
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 4c715fa0dbb0a92454b1e3012af8884ad4e12300
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Nov 26 12:57:17 2019 +0000

    Bug 23274: Mock simple_search_compat to cover both search engines
    
    Signed-off-by: Michal Denar <black23 at gmail.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 ae4c86e87e26a06611519510c386723e3a904371
Author: Cori Lynn Arnold <carnold at dgiinc.com>
Date:   Tue Dec 31 17:10:14 2019 +0000

    Bug 24323: Advanced editor - Display an error message if the record did not save
    
    Invalid 008 with helper silently fails to save.
    
    This patch adds a "else if" to fall through if the error message isn't
    one of the previously defined ones ("syntax" and "invalid") and presents
    the human with a generic message that "Something went wrong, cannot
    save."
    
    Prior to testing:
    a/Verify that Advanced Editor is enabled
    b/Download the errorrecord.mrc from bug
    
    To test:
    1/Apply patch
    2/Go to Cataloging->Advanced Editor
    3/Click "Import Record" button and navigate to the record saved from
    step b/
    4/Add an 003 field (as required by the default cataloging config)
    5/Hit "Save to catalog"
    6/Verify that a message is passed to the user that the file was unable
    to be saved
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    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 ff78c70ccb540dfe5d2b2a263f3701bd8aa52cc3
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Jan 10 09:56:12 2020 +0100

    Bug 24371: Fix "Show all items" avaibility link (use $raw filter) - intra
    
    Same fix for the intranet side
    
    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 756a95098d858d63cc0971c950f02278bbe242fe
Author: Lucas Gass <lucas at bywatersolutions.com>
Date:   Tue Jan 7 18:54:49 2020 +0000

    Bug 24371: Fix "Show all items" avaibility link (use $raw filter) - opac
    
    TO TEST:
    1. Make an OPAC search with plenty of results.
    2. Use the search facets to limit the search in some way, item type, author, etc.
    3. Click on 'Limit to currently available items', everything is still fine.
    4. Attempt to return to 'Show all items', there will be no search results.
    5. Apply patch
    6. Ateempt steps 1-4 again.
    7. Should work this time.
    
    Signed-off-by: Rhonda Kuiper <rkuiper at roundrocktexas.gov>
    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 ad92c140587657a2cb2fb2fbd4c7ebce8dd15eb3
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Jan 9 16:17:12 2020 +0100

    Bug 14759: Add test
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 27de0d61792d46e4fbf8bd8dba2d1d6f0a48c091
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Wed Jan 8 09:13:18 2020 +0000

    Bug 14759: Replace Text::Unaccent with Unicode::Normalize
    
    As shown in the comments on the bug, it appears that Unicode::Normalize
    is the most reliable way to strip accents from strings for this use
    case.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 C4/Installer/PerlDependencies.pm                       |  5 -----
 C4/Suggestions.pm                                      |  1 +
 Koha/Patron.pm                                         |  6 +++---
 .../intranet-tmpl/prog/en/includes/cateditor-ui.inc    |  2 ++
 koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc    |  2 +-
 .../opac-tmpl/bootstrap/en/includes/opac-facets.inc    |  2 +-
 misc/migration_tools/bulkmarcimport.pl                 | 18 +++++-------------
 t/db_dependent/Koha/Patrons.t                          |  5 +++--
 t/db_dependent/Patron/Borrower_PrevCheckout.t          | 12 +++---------
 t/db_dependent/XISBN.t                                 | 11 +++++++----
 10 files changed, 26 insertions(+), 38 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list