[koha-commits] main Koha release repository branch master updated. v16.05.00-998-g981ad35

Git repo owner gitmaster at git.koha-community.org
Wed Oct 12 12:27:30 CEST 2016


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  981ad35ce3390d473fcb63ca9cd58996b456ddc0 (commit)
       via  38eee216aef7160d3e60662770a24c10ec9752f6 (commit)
       via  c253af2e519570c4024891dc4d1e81743a2c5fc2 (commit)
       via  4383ec732ef5dd202352ee4ed30c3cb1da24393e (commit)
       via  228a9ac882e2c716c95a341df298058af5fc7cba (commit)
       via  1a77758989619086512829a7f7904c9370c6715d (commit)
       via  6a2a15aae803997cb9f090a59e893a7242d56923 (commit)
      from  df3df9cf7199c464565742af59bd48006d93cfdf (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 981ad35ce3390d473fcb63ca9cd58996b456ddc0
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 16:53:27 2016 +0100

    Bug 17091: Add delete to the Koha::Objects AUTOLOAD method
    
    Signed-off-by: Aleisha Amohia <aleishaamohia at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

commit 38eee216aef7160d3e60662770a24c10ec9752f6
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 16:34:15 2016 +0100

    Bug 17091: In a first phase, restrict the usage of AUTOLOAD in Koha::Objects
    
    To make sure the methods will be covered by tests and devs won't
    overused this method, I think it may be a good idea to restrict its
    usage.
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    AUTOLOAD added. No Koha QA errors. Test passed successfully
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

commit c253af2e519570c4024891dc4d1e81743a2c5fc2
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 15:58:31 2016 +0100

    Bug 17091: Remove explicit declaration of Koha::Objects->reset
    
    Test plan:
      prove t/db_dependent/Koha/Objects.t
    should return green
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

commit 4383ec732ef5dd202352ee4ed30c3cb1da24393e
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 15:54:58 2016 +0100

    Bug 17091: Remove explicit declaration of Koha::Objects->pager
    
    Test plan:
      prove t/db_dependent/Koha/Objects.t
    should return green
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

commit 228a9ac882e2c716c95a341df298058af5fc7cba
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 15:48:05 2016 +0100

    Bug 17091: Remove explicit declaration of Koha::Objects->count
    
    Test plan:
      prove t/db_dependent/Koha/Objects.t
    should return green
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

commit 1a77758989619086512829a7f7904c9370c6715d
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 15:46:48 2016 +0100

    Bug 17091: Remove explicit declaration of Koha::Objects->update
    
    Test plan:
      prove t/db_dependent/Koha/Objects.t
    should return green
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

commit 6a2a15aae803997cb9f090a59e893a7242d56923
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Aug 9 15:46:11 2016 +0100

    Bug 17091: Add AUTOLOAD to Koha::Objects
    
    Up to now if a Koha::Objects based object needs to call DBIx::Class methods, we
    have to create a new method for Koha::Objects, something like:
      sub method {
        my $self = shift;
        return $self->_resultset->method
      }
    
    To simplify and ease the call to DBIx::Class method, this patch defines an
    AUTOLOAD to call the DBIx::Class method on the resultset we are encapsulating.
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

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

Summary of changes:
 Koha/Objects.pm               |   77 +++++++++++++----------------------------
 t/db_dependent/Koha/Objects.t |   32 ++++++++++++++++-
 2 files changed, 55 insertions(+), 54 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list