[koha-commits] main Koha release repository branch master updated. v19.11.00-815-gbf0f6a2b8f

Git repo owner gitmaster at git.koha-community.org
Thu Feb 20 10:12:18 CET 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  bf0f6a2b8f9e78a7548f27a6430d187b0e9f08b7 (commit)
       via  c6bdb0fda8ea5cffaa653a47dbf8d20224c7214a (commit)
       via  1a5efe389d17c49f24d94815c5695eaf07fec9f6 (commit)
       via  cd9d18f24d79d51be5db77a934288b0cef5bf175 (commit)
       via  2e860805666e248fe555fa83967872159121cfcc (commit)
       via  87c14e07d65e988a07529a3fd45eae354b1285ba (commit)
       via  b0d777b8366239523639ffe60735944503434daa (commit)
       via  ff2641ca86018bf369673ac5f7c8b55a2c77ded0 (commit)
      from  f49661a96f1c24adfe81c6e2650aeebd6a7daa91 (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 bf0f6a2b8f9e78a7548f27a6430d187b0e9f08b7
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Feb 20 08:45:29 2020 +0000

    Bug 24532: DBRev 19.12.00.027
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit c6bdb0fda8ea5cffaa653a47dbf8d20224c7214a
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Jan 30 14:39:22 2020 +0000

    Bug 24532: Fix misidentified credit_types from bug 23049
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 1a5efe389d17c49f24d94815c5695eaf07fec9f6
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Jan 30 13:19:37 2020 +0000

    Bug 24532: Fix original DB update for bug 23049
    
    Pathalogical cases of Payments and Writeoffs being converted to debits
    are identified during the DB update for bug 23049, but we are not
    correctly limiting to those types accountlines when subsequently
    populating the debit_type field.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit cd9d18f24d79d51be5db77a934288b0cef5bf175
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Wed Feb 19 21:30:22 2020 +0000

    Bug 24670: (QA follow-up) Add missing $rules definition
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Lisette Scheer <lisettes at latahlibrary.org>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 2e860805666e248fe555fa83967872159121cfcc
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Feb 17 12:54:56 2020 +0100

    Bug 24670: Fetch all circulation rules at once to fix perf regression
    
    Signed-off-by: Lisette Scheer <lisettes at latahlibrary.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 87c14e07d65e988a07529a3fd45eae354b1285ba
Author: David Cook <dcook at prosentient.com.au>
Date:   Wed Feb 19 02:07:30 2020 +0000

    Bug 24538: Handle Net::Netmask parser errors
    
    This patch switches from the new() to new2() constructor,
    which will return an undef value when it fails to parse a value.
    
    This patch warns on parser failures, but otherwise silently drops
    the invalid value, and returns objects for any valid input it can parse.
    This way one mistake won't disable the whole feature.
    
    To test:
    1. Run the unit test t/Koha/Middlware/RealIP.t
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit b0d777b8366239523639ffe60735944503434daa
Author: David Cook <dcook at prosentient.com.au>
Date:   Wed Feb 19 02:05:07 2020 +0000

    Bug 24538: Add unit tests for Koha::Middleware::RealIP
    
    This patch adds some unit tests for Koha::Middleware::RealIP
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit ff2641ca86018bf369673ac5f7c8b55a2c77ded0
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sun Jan 12 10:11:12 2020 +0100

    Bug 17611: Change 'Pending order' to 'Quantity ordered'
    
    Picking Quantity ordered as it seems more in line with
    other pages in Koha where we show information. We always
    show the quantity, so it makes sense to also have this
    label on the 'order search' and 'copy existing order'.
    
    Order search
    1) Make sure you have some orders in your acq module
    2) Go to the top and do an empty orders search
    3) Review the column headings of the search results
    4) Find "Pending order"
    
    Order from existing order (copy)
    1) Create or choose an existing open basket
    2) 'Add to basket' - 'From existing orders'
    3) Search to find some of your orders
    4) Look at the column headings, find 'Pending order'
    5) Pick some orders and fill out order information, save
    6) Summary: Find 'Pending order' in the table again
    
    x) Apply the patch and make sure all 'Pending' orders
    above have been changed to 'Quantity ordered'.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Bouzid Fergani <bouzid.fergani at inlibro.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 Koha.pm                                            |  2 +-
 Koha/Middleware/RealIP.pm                          | 11 ++-
 admin/smart-rules.pl                               | 10 ++-
 installer/data/mysql/updatedatabase.pl             | 46 ++++++++++-
 .../prog/en/modules/acqui/duplicate_orders.tt      |  4 +-
 .../prog/en/modules/acqui/histsearch.tt            |  2 +-
 .../prog/en/modules/admin/smart-rules.tt           | 60 +++++++-------
 t/Koha/Middlware/RealIP.t                          | 94 ++++++++++++++++++++++
 8 files changed, 193 insertions(+), 36 deletions(-)
 create mode 100644 t/Koha/Middlware/RealIP.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list