Revisions of perl-Moose

Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 398467 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 80)
automatic update
buildservice-autocommit accepted request 394291 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 79)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 393838 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 78)
automatic update
buildservice-autocommit accepted request 360656 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 77)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 360379 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 76)
automatic update
buildservice-autocommit accepted request 342985 from Dirk Stoecker's avatar Dirk Stoecker (dstoecker) (revision 75)
baserev update by copy to link target
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 342972 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 74)
automatic update
buildservice-autocommit accepted request 332504 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 73)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 72)
- updated to 2.1603
   see /usr/share/doc/packages/perl-Moose/Changes
buildservice-autocommit accepted request 297621 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 71)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 70)
- remove outdated perl-Moose-apply_role.patch
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 297073 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 69)
- 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)
buildservice-autocommit accepted request 231412 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 68)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 67)
- 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)
buildservice-autocommit accepted request 230301 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 66)
baserev update by copy to link target
Martin Caj's avatar Martin Caj (mcaj) committed (revision 65)
updated to 2.1204 
  - bump minimum prereq needed for optional test using MooseX::NonMoose (which
    broke with new Module::Runtime, see 2.1203), so users can install Moose
    and pass tests before updating MooseX::NonMoose.
  - bump prereq on Module::Runtime to properly detect when a module fails to
    load, and fix how we call these subs (Zefram, RT#92770, RT#86394, RT#92791)
  - string comparisons are now possible with Moose exceptions (RT#92232)
  - re-release to index pod files (Moose::Cookbook::*, Moose::Manual::* etc).
  - Releasing 2.1108 as stable (last stable release was 2.1005).
  - fixed distribution manifest
  - minor documentation and metadata updates
  - many additions to the list of conflicting modules (those that require
    updates after installing Moose), reflecting recent API changes
  - now failing early at build time, with a useful error message, if a
    compiler is not available
  - throw_error import cleaned from Moose::Object after use (doy)
  - resolved new circular load issue between Moose::Util and Class::MOP (Kent
    Fredric, RT#89713 and PR#42)
  - legacy throw_error now takes multiple arguments, like confess does
    (Karen Etheridge)
  - Class::MOP::Object::_inline_throw_error is back, used by some MooseX
    modules (Upasana)
  - fix errors in last trial release relating to Moose::Error::Default,
    Moose::Util::throw_error (Upasana)
  - die if a role to consume can't be found -- this restores behaviour as in
    2.1005 (doy)
  - fix test to accomodate Devel::PartialDump possibly not being installed
    (Upasana)
  - Moose string exceptions have been replaced by Moose::Exception objects. See
    Moose::Manual::Delta for details.
buildservice-autocommit accepted request 178267 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 64)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 63)
- 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.
buildservice-autocommit accepted request 122854 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 62)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 61)
Displaying revisions 41 - 60 of 120
openSUSE Build Service is sponsored by