[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.05-66-g8523817dcc

Git repo owner gitmaster at git.koha-community.org
Wed May 6 00:33:49 CEST 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  8523817dcc4d2219138b1c8600f289cbe9a009ee (commit)
       via  ace1f665dfdcb7dd2fe1e864191556432e9c5ef6 (commit)
       via  ee25606e8a85fb8a95284b6ad678dd18e97dfd02 (commit)
       via  36a84f4264e5c03b900eb850c93cc4eb0befd9e7 (commit)
       via  2b8f6f62af9c262bec4a4ce88ddae3d706727fb1 (commit)
       via  d3e3a3757dc3e9d97e3204767409e1d39d637255 (commit)
      from  0ac67146b97123c2d408c0c72547d92e13368313 (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 8523817dcc4d2219138b1c8600f289cbe9a009ee
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Wed Mar 11 17:39:18 2020 +0300

    Bug 21865: allow test arg alone
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel 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 ace1f665dfdcb7dd2fe1e864191556432e9c5ef6
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Mon Nov 19 15:45:49 2018 +0100

    Bug 21865: add confirm to remove_unused_authorities.pl script
    
    Like in most scripts in misc, add confirm argument
    to ensure script is not run without knowing what it does.
    
    Test plan:
    1) Run misc/migration_tools/remove_unused_authorities.pl -h
    2) You see help line for confirm
    3) Run misc/migration_tools/remove_unused_authorities.pl
    4) You see help and script does nothing
    5) Run misc/migration_tools/remove_unused_authorities.pl -c
    6) Script runs like wanted
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel 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 ee25606e8a85fb8a95284b6ad678dd18e97dfd02
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Mon Nov 19 15:19:46 2018 +0100

    Bug 21865: ES compatiblity of remove_unused_authorities.pl
    
    The script misc/migration_tools/remove_unused_authorities.pl directly checks if Zebra search is OK.
    
    This patch changes so that this test is only if Zebra is the search engine.
    It also adds a test on the search off any authority number indexed (index 'an').
    With Zebra its : an,alwaysmatches=''
    With ES its : an:*
    This test ensure that biblios records are indexed and that not all autorities will be deleted.
    
    Test plan:
    1) On a catalog create a new authority
    2) Use Zebra in systempreference SearchEngine
    3) Stop Zebra server
    4) Run misc/migration_tools/remove_unused_authorities.pl -c
    5) The script does nothing and says :
       Zebra server seems not to be available. This script needs Zebra runs.
    6) Restart Zebra server
    7) Delete biblio index base
    8) Run misc/migration_tools/remove_unused_authorities.pl -c
    9) The script does nothing and says :
       Searching authority number in biblio records seems not to be available : an,alwaysmatches=''
    10) Use ElasticSearch in systempreference SearchEngine
    11) Delete biblio index base
    12) Run misc/migration_tools/remove_unused_authorities.pl -c
    13) The script does nothing and says :
        Searching authority number in biblio records seems not to be available : an:*
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel 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 36a84f4264e5c03b900eb850c93cc4eb0befd9e7
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Mon Nov 19 14:46:05 2018 +0100

    Bug 21865: improve remove_unused_authorities.pl script
    
    remove_unused_authorities.pl script can be improved.
    
    This patch changes changes verbosity so than test mode can be used
    to know the autorities that are used and those that can be deleted.
    It also writes a line in output if limited authority type(s).
    
    This patch also removes the unused vars $thresholdmin and $thresholdmax.
    
    It also changes the query to use SQL with parameters for authority types.
    
    Test plan :
    1) On a catalog create a new authority
    2) Be sure catalog is well indexed
    3) Run misc/migration_tools/remove_unused_authorities.pl -t
    4) You will see the line :
       *** Testing only, authorities will not be deleted. ***
    5) You will see lines of :
       authid=x type=y : used X time(s)
    6) You will see the line for the authority created in 1) :
       authid=x type=y : can be deleted
    7) You will see at the end :
       x authorities parsed
       y can be deleted because unused
       z unchanged because used
    8) Run misc/migration_tools/remove_unused_authorities.pl
    9) You don't see the line :
       *** Testing only, authorities will not be deleted. ***
    10) You will see lines of :
       authid=x type=y : used X time(s)
    11) You will see the line for the authority created in 1) :
       authid=x type=y : deleted
    12) You will see at the end :
       x authorities parsed
       y deleted because unused
       z unchanged because used
    13) Run misc/migration_tools/remove_unused_authorities.pl --auth NP --auth CO
    14) You see the line :
        Restricted to authority type(s) : NP,CO.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel 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 2b8f6f62af9c262bec4a4ce88ddae3d706727fb1
Author: David Roberts <david at koha-ptfs.co.uk>
Date:   Sat Apr 4 23:13:00 2020 +0000

    Bug 25053: Clarify the description of syspref PatronSelfRegistrationExpireTemporaryAccountsDelay
    
    This patch changes the wording of this system preference.
    
    To test:
    
    1) Check the current wording of this system preference.
    2) Install the patch.
    3) Check that the wording of this system preference has changed to "Delete patrons still in the category indicated by PatronSelfRegistrationDefaultCategory X days after account creation."
    
    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 d3e3a3757dc3e9d97e3204767409e1d39d637255
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Jan 30 10:29:05 2020 -0500

    Bug 24547: Add more action logs for holds
    
    It seems like ModReserveFill and ModReserveAffect should both produce action logs for holds.
    
    Test Plan:
    1) Apply this patch
    2) Place a hold
    3) Check in the item to trap the hold
    4) Check out the item to fill the hold
    5) Check the action logs for that reserve id
    6) Note the new logs!
    
    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>

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

Summary of changes:
 C4/Reserves.pm                                     |  6 ++
 .../prog/en/modules/admin/preferences/opac.pref    |  4 +-
 misc/migration_tools/remove_unused_authorities.pl  | 87 ++++++++++++++--------
 3 files changed, 65 insertions(+), 32 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list