[koha-commits] main Koha release repository branch 18.05.x updated. v18.05.02-105-g7b09487

Git repo owner gitmaster at git.koha-community.org
Thu Aug 16 16:49:44 CEST 2018


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, 18.05.x has been updated
       via  7b094874ec08ed32568a7e0b94464bebc7f082ab (commit)
       via  7cacd4ddb90d55238e0446a67ce4d68a54c58e3e (commit)
       via  8111e0c380c9d2c61a2b6b6665b5a7bad3a3e646 (commit)
       via  c359d56f25a0b346b71a3fd8700b07e4713640d7 (commit)
       via  cdd6054f35c8c2a2d5a71397c6b69db5b5431123 (commit)
       via  0c3d3a3a7fe1d49735d3273b3a45b287219fb5da (commit)
      from  a2b4f38712694b55aa4c631e4b0d0a65e2adc002 (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 7b094874ec08ed32568a7e0b94464bebc7f082ab
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Aug 16 14:03:28 2018 +0000

    Bug 21226: DBRev 18.05.02.002
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 610c628def96437c0cc75ec2d2455cd373c5db18)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 7cacd4ddb90d55238e0446a67ce4d68a54c58e3e
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Aug 15 11:58:12 2018 -0300

    Bug 21226: Remove xISBN services
    
    OCLC has decided to retire all xISBN services:
    https://www.oclc.org/developer/news/2018/xid-decommission.en.html
    
    The code for related features has to be removed from Koha.
    
    Test plan:
    You need to be familiar with the different sysprefs (I am not):
    - FRBRizeEditions
    - SyndeticsEnabled
    - SyndeticsEditions
    - ThingISBN
    
    Make sure there are no regressions introduced by this patchset.
    
    QA Note: C4/XISBN.pm should be renammed
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit bce549bc4c0f9fefddb34fe614f6bf79aef882ea)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 8111e0c380c9d2c61a2b6b6665b5a7bad3a3e646
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Aug 15 11:36:21 2018 -0300

    Bug 21226: DB Changes
    
    Remove prefs OCLCAffiliateID, XISBN and XISBNDailyLimit
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit b19090c4505c0f407a7f3cbfe3c14da5cfecc657)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit c359d56f25a0b346b71a3fd8700b07e4713640d7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Aug 15 12:21:38 2018 -0300

    Bug 21230: Prevent Reserves.t to fail randomly
    
    The following test can fail if the hold has been generated with found => 'W':
     #   Failed test 'No tests run for subtest "_koha_notify_reserve() tests"'
     #   at t/db_dependent/Reserves.t line 675.
    Can't call method "to_address" on an undefined value at
    t/db_dependent/Reserves.t line 661.
     # Looks like your test exited with 255 just after 56.
    
    We should call AddReserve instead.
    
    Test plan:
    0. Do not apply this patch
    1. Do the following change:
        my $hold = $builder->build({
                source => 'Reserve',
                value => {
                   borrowernumber=>$hold_borrower,
                   found => 'W', # This line is added, do not forget the comma above
                }
            });
    2. Prove it makes the test fail
    3. stash the changes and apply this patch
    4. Make sure the tests pass
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit c957b52ef8bba734043157445470bedc36feae5e)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit cdd6054f35c8c2a2d5a71397c6b69db5b5431123
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Aug 13 11:54:36 2018 -0300

    Bug 21213: Add diagnostics to Circulation.t
    
    Jenkins reported failures on a D9 run. No idea why it is failing so
    adding diag and wait for the next failure.
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit b1a4205cac57a6432ed2471f0d1ac5c3ce3b527a)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 0c3d3a3a7fe1d49735d3273b3a45b287219fb5da
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 14 16:26:39 2018 -0300

    Bug 21221: Shortcut memberentry scripts if patron does not exist
    
    If borrowernumber is passed and that it does not refer to a valid patron
    in DB, we should not continue the script and display an error instead.
    
    Test plan:
    Create a patron
    Edit a patron
    => Both should work ok
    You can also test the other action memberentry.pl manage.
    
    Edit it again but modify the borrowernumber parameter
    => You should see a friendly user message saying that the patron does
    not exist.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 51933c7753f04cdc7baa745037919e601ec3d798)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/UsageStats.pm                                     |    1 -
 C4/XISBN.pm                                          |   18 ++----------------
 Koha.pm                                              |    2 +-
 installer/data/mysql/sysprefs.sql                    |    3 ---
 installer/data/mysql/updatedatabase.pl               |    9 +++++++++
 .../modules/admin/preferences/enhanced_content.pref  |   16 ----------------
 members/memberentry.pl                               |    4 ++++
 t/db_dependent/Circulation.t                         |    7 +++++--
 t/db_dependent/Reserves.t                            |   11 ++++-------
 t/db_dependent/UsageStats.t                          |    1 -
 t/db_dependent/XISBN.t                               |   17 +----------------
 11 files changed, 26 insertions(+), 63 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list