[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.04-55-gd6a0b07984

Git repo owner gitmaster at git.koha-community.org
Thu Apr 2 21:15:15 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  d6a0b07984ed63e91723fa484890f111077dbd10 (commit)
       via  a5e723b887fe085ba36527bbf14e4c1d9d30556d (commit)
       via  dd8df39986ebc7c055894fea0148f900ba4a3a45 (commit)
       via  9ce0f3a73e4de58fb04f4e7977a6299e4b480b5b (commit)
       via  ce96ed4336f99d97c31bc87cfea3369ddfaf0a02 (commit)
       via  f2aeaede38b05cb93146d9fbe86bcd4a2a76b8d5 (commit)
       via  a0a579d773c95ec87a647497cc755b0a4cc7f55f (commit)
       via  20118bb795ce046c2b00152aeccb94ae998375e6 (commit)
      from  00379c189976ac9e7e2429f5261a0b562206fc5d (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 d6a0b07984ed63e91723fa484890f111077dbd10
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Feb 4 12:09:00 2020 +0100

    Bug 19008: Replace issues with checkouts in print statement
    
    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 a5e723b887fe085ba36527bbf14e4c1d9d30556d
Author: Magnus Enger <magnus at libriotech.no>
Date:   Fri Aug 2 13:57:13 2019 +0200

    Bug 19008: More database cleanups - QA followup
    
    This patch tries to change the POD as suggested in the QA process.
    
    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 dd8df39986ebc7c055894fea0148f900ba4a3a45
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 16:09:14 2017 +0200

    Bug 19008: More database cleanups - item transfers
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for branchtransfers table.
    
    Test plan :
    - Count : select count(*),datearrived from branchtransfers group by datearrived;
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --transfers 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Kyle M Hall <kyle 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 9ce0f3a73e4de58fb04f4e7977a6299e4b480b5b
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 16:01:51 2017 +0200

    Bug 19008: More database cleanups - old reserves
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for old_reserves table.
    
    Test plan :
    - Count : select count(*),date(timestamp) from old_reserves group by date(timestamp);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --old-reserves 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Kyle M Hall <kyle 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 ce96ed4336f99d97c31bc87cfea3369ddfaf0a02
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:57:33 2017 +0200

    Bug 19008: More database cleanups - old issues
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for old_issues table.
    
    Test plan :
    - Count : select count(*),date(timestamp) from old_issues group by date(timestamp);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --old-issues 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Kyle M Hall <kyle 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 f2aeaede38b05cb93146d9fbe86bcd4a2a76b8d5
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:43:45 2017 +0200

    Bug 19008: More database cleanups - deleted patrons
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for deletedborrowers table.
    
    Test plan :
    - Count : select count(*),date(updated_on) from deletedborrowers group by date(updated_on);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --deleted-patrons 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Kyle M Hall <kyle 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 a0a579d773c95ec87a647497cc755b0a4cc7f55f
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:05:03 2017 +0200

    Bug 19008: More database cleanups - deleted catalog
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for deleted catalog tables.
    Note that deletedbiblio_metadata is managed by foreign key on biblionumber.
    
    Test plan :
    - Count :
    select count(*),year(timestamp) from deleteditems group by year(timestamp);
    select count(*),year(timestamp) from deletedbiblio group by year(timestamp);
    select count(*),year(timestamp) from deletedbiblioitems group by year(timestamp);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --deleted-catalog 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Kyle M Hall <kyle 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 20118bb795ce046c2b00152aeccb94ae998375e6
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:12:22 2017 +0200

    Bug 19008: More database cleanups - statistics
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for statistics table.
    
    Test plan :
    - Count statistics : select count(*),date(datetime) from statistics group by date(datetime);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --statistics 30
    - Recount statistics
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Kyle M Hall <kyle 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:
 misc/cronjobs/cleanup_database.pl | 114 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 113 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list