Revisions of perl-Moose

Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 332504 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 26)
- updated to 2.1603
   see /usr/share/doc/packages/perl-Moose/Changes
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 297621 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 25)
- updated to 2.1403
   see /usr/share/doc/packages/perl-Moose/Changes
  2.1403   2014-12-07
  
    [ENHANCEMENTS]
  
    - Added a section to Moose::Manual::MethodModifiers illustrating how method
      modifiers work with inheritance. (Andreas Koenig, RT #98940)
  
    [DOCUMENTATION]
  
    - Added docs to Moose.pm on the -meta_name import option. This addresses RT
      #98488.
  
    [BUG FIXES]
  
    - Fix a test that fails on MSWin32 systems using nmake
    - fix dev build compilation error when using MSVC (A. Sinan Unur)
  
    [OTHER]
  
    - the modules in the git repository now have a defined $VERSION, to make it
      easier to test MooseX::* and other code under development.
  
  2.1402   2014-11-05
  
    [BUG FIXES]
  
    - Fix a test that was trying to load Test::Exception instead of Test::Fatal.
      (Michael Schout)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 24)
Split 13.2 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 231412 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 23)
- updated to 2.1205
   [ENHANCEMENTS]
 
   - new utility interface: Moose::Util::is_role
 
   [BUG FIXES]
 
   - better error message provided when trying to load a trait class that does
     not exist in @INC (Upasana, RT#94731)
 
   [OTHER]
 
   - new test added, to run last, which runs `moose-outdated` as a possibly
     more visible mechanism to provide important information to the user
     (re RT#92780)
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_factory) accepted request 230301 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 22)
Automatic submission by obs-autosubmit
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 21)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 178267 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 20)
- updated to 2.0802
   * fix incompatibilities with Test::Builder 1.005+ (Karen Etheridge)
   * Moose::Manual::Contributing updated to reflect the change of primary
     repository from git.moose.perl.org to github.com
 
 2.0801 Thu, Mar 28, 2013
 
   [BUG FIXES]
 
   * properly apply traits at compile time (error introduced in 2.0800,
     RT#77974). (doy)
 
 2.0800 Wed, Mar 27, 2013
 
   [ENHANCEMENTS]
 
   * The super() subroutine now carps if you pass it arguments. These arguments
     are always ignored, but we used to ignore them silently. RT #77383.
 
   * Roles can now override methods from other roles they consume directly,
     without needing to manually exclude them (just like classes can). (mst)
 
   [BUG FIXES]
 
   * Fix false positive when checking for circular references for modules that
     use the "also" parameter with Moose::Exporter. Reported by Jon
     Swartz. Fixed by Matthew Wickline. RT #63818.
 
   * Fix memory leak in type unions. (Karen Etheridge) RT#83929.
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 19)
Split 12.3 from Factory
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 18)
branched from openSUSE:Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 122854 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 17)
- updated to 2.0602
  [BUG FIXES]
  * Ensure that the Moose::Exporter-generated init_meta returns the same value
    that it did previously. This isn't really a bug, since the return value has
    never been tested or documented, but since the generated init_meta is
    nothing more than a compatibility shim at this point, there's no reason to
    not make it as compatible as possible. Reported by Moritz Onken. (doy)
  [BUG FIXES]
  * Fix init_meta order when multiple also packages are specified (this matters
    when one of them is being used to actually initalize the metaclass,
    typically with also => 'Moose'). Reported by Randy Stauner. (doy)
 ... see Changes
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 108971 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 16)
Automatic submission by obs-autosubmit
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 14)
replace license with spdx.org variant
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 94194 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 13)
- fix requires

- update to 2.0401:
  * attributes with weak_ref now weaken their associated slot when they are
    initialized through a lazy default or builder
- changes from 2.0302:
  * make make_immutable return value consistent and document it to be true
- changes from 2.0301:
  * a custom error class caused a warning when the class that used it was made
    immutable
  * the enum type will now allow single value enumerations; previously, two or
    more values were required
- changes from 2.0300:
  * the optimize_as option for type constraints has been deprecated; use the
    inline_as option to provide inlining code instead
  * methods to introspect a class's methods will now return methods defined in
    UNIVERSAL (isa, can, etc.); this also means that you can wrap these
    methods with method modifiers; RT#69839
  * the ->parent and ->parents method for a union now return the nearest common
    ancestor of that union's component types; see Moose::Manual::Delta for more
    details
  * the ->parents method used to return an arrayref for union types, and a
    list of one or more types for all other types; now they all return
    lists
  * the ->is_subtype_of and ->is_a_type_of methods have changed their behavior
    for union types: previously, they returned true if any of their member
    types returned true for a given type; now, all of the member types must
    return true; RT#67731
  * the Moose::Exporter module now has a "meta_lookup" option when creating an
    importer: allows you to specify an alternate method for determining the
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 90957 from Marcus Meissner's avatar Marcus Meissner (msmeissn) (revision 12)
update to 2.0205 ... also fix build
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 11)
Displaying revisions 21 - 40 of 50
openSUSE Build Service is sponsored by