[koha-commits] main Koha release repository branch master updated. v18.05.00-1423-gedf5021

Git repo owner gitmaster at git.koha-community.org
Thu Nov 8 22:23:37 CET 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, master has been updated
       via  edf50215b5e2282568f12f4d1e33dd8e56a467c8 (commit)
       via  04d137b06d1cc872941aab38ecc41e562c7a5554 (commit)
       via  42e9c49934c87f17b3350955e7d5d0860ecbe8bd (commit)
       via  4a61f18f41f7fa4643bd893f525cede496329d3e (commit)
       via  7d10549ae8632e6640d3a99014268a2a1e46b3c4 (commit)
       via  9dc5a53daabc0b7a07430bf0f5ba469d2b4c2e6c (commit)
      from  de3015dabbc438b89d8b76680efc6d602b55d3a5 (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 edf50215b5e2282568f12f4d1e33dd8e56a467c8
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Nov 8 21:05:49 2018 +0000

    Bug 19349: DBRev 18.06.00.058
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 04d137b06d1cc872941aab38ecc41e562c7a5554
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Fri Nov 2 11:17:46 2018 +0100

    Bug 19349: (QA follow-up) Cosmetic changes
    
    [1] Construction with a // b instead of a; unless( a ) b;
    [2] Error checking on subfieldCode
    [3] Add explanation how to fill preference
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 42e9c49934c87f17b3350955e7d5d0860ecbe8bd
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Wed Sep 20 14:58:07 2017 +0200

    Bug 19349: Store record's creator and last modifier in record
    
    Test plan:
    1. Run updatedatabase.pl
    2. Set sysprefs MarcFieldForCreatorId, MarcFieldForCreatorName,
       MarcFieldForModifierId, MarcFieldForModifierName
    3. Create a new biblio
    4. Verify that the fields are correctly filled
    5. Logout and login as another user
    6. Modify the same biblio
    7. Verify that only the fields for last modifier have been modified
    
    Works perfectly.
    
    Signed-off-by: Simon Pouchol <simon.pouchol at biblibre.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 4a61f18f41f7fa4643bd893f525cede496329d3e
Author: Josef Moravec <josef.moravec at gmail.com>
Date:   Tue Aug 21 13:16:02 2018 +0000

    Bug 21205: (follow-up) Fix column name - itemnumbers -> itemnumber
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 7d10549ae8632e6640d3a99014268a2a1e46b3c4
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Aug 6 18:48:29 2018 -0300

    Bug 21205: Replace C4::Items::GetOrderFromItemnumber calls
    
    This is done to ease the move of C4::Items (bug 18252) to Koha::Items
    
      my @itemnumbers = GetItemnumbersFromOrder($order->{ordernumber});
    will become
      my @itemnumbers = $order_object->items->get_column('itemnumbers');
    
    Test plan:
    - Create an order with several items
    - Receive some items
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 9dc5a53daabc0b7a07430bf0f5ba469d2b4c2e6c
Author: Matthias Meusburger <matthias.meusburger at biblibre.com>
Date:   Tue Nov 28 16:01:09 2017 +0000

    Bug 18507: Shibboleth auto-provisioning - Sync
    
    This patch allows to update borrowers informations with Shibboleth attributes
    upon login.
    
    Test plan:
    1. In $KOHA_CONF, check that //shibboleth/sync is set to 1
    2. Find an existing user and change one of the values mapped with a Shibboleth attribute
    3. Log in using Shibboleth
    4. Check that the value has been updated with the Shibboleth attribute.
    
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Comments posted on Bugzilla.
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

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

Summary of changes:
 C4/Acquisition.pm                                  |   45 +++++--------------
 C4/Auth_with_shibboleth.pm                         |   20 ++++++++-
 C4/Biblio.pm                                       |   26 +++++++----
 Koha.pm                                            |    2 +-
 Koha/Util/MARC.pm                                  |   47 ++++++++++++++++++++
 acqui/basket.pl                                    |   10 +++--
 acqui/finishreceive.pl                             |   28 +++++++-----
 acqui/orderreceive.pl                              |    7 +--
 acqui/parcel.pl                                    |   13 +++---
 installer/data/mysql/sysprefs.sql                  |    4 ++
 installer/data/mysql/updatedatabase.pl             |   14 ++++++
 .../en/modules/admin/preferences/cataloguing.pref  |   10 +++++
 opac/opac-detail.pl                                |    7 ++-
 t/Auth_with_shibboleth.t                           |   21 ++++++++-
 t/Koha/Util/MARC.t                                 |   42 +++++++++++++++++
 t/db_dependent/Acquisition/CancelReceipt.t         |   18 ++++----
 t/db_dependent/Acquisition/TransferOrder.t         |   12 ++---
 t/db_dependent/Biblio.t                            |   31 ++++++++++++-
 18 files changed, 269 insertions(+), 88 deletions(-)
 create mode 100644 t/Koha/Util/MARC.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list