[koha-commits] main Koha release repository branch master updated. v20.05.00-350-g005219ea6f

Git repo owner gitmaster at git.koha-community.org
Wed Jul 22 11:00:10 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, master has been updated
       via  005219ea6fc53a52a41169e96024244abb394ee1 (commit)
       via  015ed932114ff48e944739afa9123d2501d65e14 (commit)
       via  9b526483c65550c0f36eabad70055bed79a8197c (commit)
       via  b31fdc8f55007217f95980692114a5b0a9a85bc0 (commit)
       via  dc2c19bd515a4ce4057b41b2ae2bb668d345c461 (commit)
       via  997094cc38a46372777f39f0bfa249b87fe76d58 (commit)
       via  16413beea6a2f5667a3a68971158ad1d7ea4b48a (commit)
       via  e9927e729066be42a039b7e3f1abb5143820d1cb (commit)
      from  14932ae7d3bf864f64bffc9b1b015a07e11c8e2e (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 005219ea6fc53a52a41169e96024244abb394ee1
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Wed Jul 8 14:24:37 2020 +0000

    Bug 25955: Fix getting index_name
    
    To test:
    1 - Have a site running ES
    2 - perl misc/maintenance/compare_es_to_db.pl
    3 - Lots of output, all bad
    4 - Apply patch
    5 - Repeate
    6 - Whew, looks correct
    
    Signed-off-by: Didier Gautheron <didier.gautheron at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 015ed932114ff48e944739afa9123d2501d65e14
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jul 20 09:50:58 2020 -0300

    Bug 25845: (QA follow-up) Call it REST API instead of just API
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 9b526483c65550c0f36eabad70055bed79a8197c
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Tue Jun 23 11:06:55 2020 -0300

    Bug 25845: Add 'api' to the log viewer interface options
    
    This patch simply adds the API option to the log viewer.
    
    To test:
    1. Have BorrowersLog set
    2. Update some patron using the API. For example
       curl --location --request PUT 'http://koha:koha@kohadev-intra.mydnsname.org:8081/api/v1/patrons/1' \
    --header 'Content-Type: application/json' \
    --data-raw '{
    "firstname": "Tomasito",
    "surname": "None",
    "address": "Address",
    "category_id": "ST",
    "city": "Córdoba",
    "library_id": "MPL"
    }'
    3. Open the log viewer
    => FAIL: There's no way to filter on interface, choosing API
    4. Apply this patch
    5. Reload the log viewer
    => SUCCESS: There are options to filter by 'API' interface
    => SUCCESS: Filtering by 'API' works
    6. Sign off :-D
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit b31fdc8f55007217f95980692114a5b0a9a85bc0
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Jul 1 06:53:18 2020 -0400

    Bug 25907: When cancelling a waiting hold on returns.pl, looks for new hold to fill without rescanning barcode
    
    Right now, after canceling a hold on the checkin screen, a librarian
    needs to rescan the item barcode to check and trap the next hold. This
    is an extra unnecessary step.
    
    Test Plan:
    1) Place two or more holds on a record
    2) Check in the item
    3) Confirm the hold
    4) Check in the item again
    5) Cancel the hold
    6) Koha should now display the modal asking to confirm the next hold
       without the need to rescan the barcode!
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Rebecca Coert <rcoert at arlingtonva.us>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit dc2c19bd515a4ce4057b41b2ae2bb668d345c461
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sat May 30 00:46:46 2020 +0000

    Bug 25629: Fix capitalization in sample notices
    
    This fixes the capitalization in sample notices files to
    follow coding-guidelines. Only applies to English, translations
    remain unchanged.
    
    Additional fixes:
    - Overdues slip added the letter code as subject instead of the description
    - Opac changed to OPAC for self-registration verification emails
    
    German (de-DE) file was not changed, as there is a pending translation
    bug that will take care of these (bug 25129).
    
    To test:
    - Verify changes by running the web installer for the changed
      files and verify sample notices install without error
    - Verify subjects and notice descriptions are correct
    - Run tests in t/db_dependent/Letters*
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 997094cc38a46372777f39f0bfa249b87fe76d58
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Jul 17 07:44:45 2020 +0100

    Bug 25998: (QA follow-up) Add DBIC level relation
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 16413beea6a2f5667a3a68971158ad1d7ea4b48a
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Jul 16 09:40:23 2020 +0100

    Bug 25998: Add 'library' relation to Koha::Account::Line
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit e9927e729066be42a039b7e3f1abb5143820d1cb
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Jul 17 08:01:06 2020 +0100

    Bug 25998: Add Unit Tests
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

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

Summary of changes:
 Koha/Account/Line.pm                               | 13 ++++
 Koha/Schema/Result/Accountline.pm                  | 20 ++++++
 .../data/mysql/en/mandatory/sample_notices.yml     | 80 +++++++++++-----------
 .../mysql/fr-CA/obligatoire/sample_notices.sql     |  4 +-
 .../mysql/fr-FR/1-Obligatoire/sample_notices.sql   |  4 +-
 installer/data/mysql/it-IT/necessari/notices.sql   |  2 +-
 .../mysql/nb-NO/1-Obligatorisk/sample_notices.sql  |  7 +-
 .../data/mysql/pl-PL/mandatory/sample_notices.sql  | 44 ++++++------
 .../data/mysql/ru-RU/mandatory/sample_notices.sql  | 46 ++++++-------
 .../data/mysql/uk-UA/mandatory/sample_notices.sql  |  2 +-
 .../intranet-tmpl/prog/en/modules/circ/returns.tt  |  1 +
 .../intranet-tmpl/prog/en/modules/tools/viewlog.tt |  3 +-
 misc/maintenance/compare_es_to_db.pl               |  6 +-
 t/db_dependent/Koha/Account/Line.t                 | 44 +++++++++++-
 t/db_dependent/Letters/TemplateToolkit.t           |  4 +-
 15 files changed, 178 insertions(+), 102 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list