SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for perl-Moo-2.004000-150500.2.1.noarch.rpm :

* Fri Apr 10 2020 timueller+perlAATTsuse.de- updated to 2.004000 see /usr/share/doc/packages/perl-Moo/Changes 2.004000 - 2020-04-09 - minor documentation tweaks - minor test tweaks - refactor creation and installation of helper subs allowing extensions to customize the behavior easier. - added is_class and make_class methods to Moo - added make_role method to Moo::Role - lower Scalar::Util dependency to 1.00 - fix unlikely failure to properly inflate Type::Tiny types to Moose under threads on perl 5.8
* Mon Oct 28 2019 timueller+perlAATTsuse.de- updated to 2.003006 see /usr/share/doc/packages/perl-Moo/Changes 2.003006 - 2019-10-25 - update Role::Tiny prerequisite to 2.001004 to fix issues with re-importing Moo::Role 2.003_005 - 2019-10-18 - always exclude helper subs (has, with, etc) from the list of methods, even if they are installed later or wrapped with a modifier - drop Devel::GlobalDestruction prerequisite unless using perl < 5.14 - fix preserving full accuracy of numbers in non-ref defaults - fix tracking of stubs and constants as methods to be consistent and work properly with unusual ways of storing subs (RT#130050) - fix test for modules broken by newer Moo versions when new enough CPAN::Meta version is not available - fix undeferring subs before wrapping with a method modifier when subs to wrap are given as a list or array ref - fix error reporting locations from Carp calls in DEMOLISH (RT#124845) - fix extending attributes (has +) to allow overriding a default with a builder (RT#130361) - fix re-throwing Moose inflation exceptions when examining exception objects on older Moose or Devel::StackTrace versions - reorganized documentation related to Moose to improve clarity - improved documentation of usage with namespace::clean - various documentation tweaks
* Thu Dec 07 2017 cooloAATTsuse.com- updated to 2.003004 see /usr/share/doc/packages/perl-Moo/Changes 2.003004 - 2017-12-01 - re-allow stubs for attribute parameters like isa or coerce (RT#123753) - fix accidentally removed space in coderef error message (GH#33) - fix test errors with old Carp versions
* Fri Nov 17 2017 cooloAATTsuse.com- updated to 2.003003 see /usr/share/doc/packages/perl-Moo/Changes 2.003003 - 2017-11-16 - test tweaks - fix handling of code refs stored directly in the stash (for perl 5.28) - consider inline packages with constants in them as being loaded - stubs will be treated as methods that exist when inflating to Moose - avoid loading overload.pm unless required
* Wed Mar 29 2017 cooloAATTsuse.com- updated to 2.003002 see /usr/share/doc/packages/perl-Moo/Changes 2.003002 - 2017-03-28 - ensure tarball does not contain SCHILY headers
* Tue Mar 07 2017 cooloAATTsuse.com- updated to 2.003001 see /usr/share/doc/packages/perl-Moo/Changes 2.003001 - 2017-03-06 - fix +attributes replacing builder subs if parent attribute was defined with builder => $subref - fix trigger with a default value and init_arg of undef
* Sat Dec 10 2016 cooloAATTsuse.com- updated to 2.003000 see /usr/share/doc/packages/perl-Moo/Changes 2.003000 - 2016-12-09 - fix create_class_with_roles being used multiple times with the same packages - fix edge case with AATTISA assignment on perl 5.10.0 - minor test adjustments - fix handles on oddly named attributes - make has options linkable in documentation - Sub::Quote and Sub::Defer have been split into a separate dist
* Tue Nov 01 2016 cooloAATTsuse.com- updated to 2.002005 see /usr/share/doc/packages/perl-Moo/Changes 2.002005 - 2016-10-31 - fix accessor extensions that need captured variables for clearers and predicates. (RT#118453) - avoid relying on \'.\' being in AATTINC in tests - fix Sub::Quote test when run with perl -C or PERL_UNICODE on perl 5.10 (RT#117844) - improved error messages for invalid sub names in Sub::Quote (RT#116416, RT#117711) - clarify meta method documentation - bump Role::Tiny prereq version to get stub in role fix (RT#116674)
* Mon Jul 04 2016 cooloAATTsuse.com- updated to 2.002004 see /usr/share/doc/packages/perl-Moo/Changes 2.002004 - 2016-06-28 - fixed another case of local functions interfering with generated code. (RT#115655) - prevent infinite recursion on some Moose metaclass inflation errors.
* Fri Jun 24 2016 cooloAATTsuse.com- updated to 2.002003 see /usr/share/doc/packages/perl-Moo/Changes 2.002003 - 2016-06-23 - prevent local functions with same names as core functions from interfering with generated code (RT#115529) - Work around nmake bug that corrupts commands that include slashes (RT#115518) - Fix tests to work when lexical features are enabled outside of our control (such as with cperl) - Fix tests on perl 5.6
* Thu Jun 23 2016 cooloAATTsuse.com- updated to 2.002002 see /usr/share/doc/packages/perl-Moo/Changes 2.002002 - 2016-06-21 - fix handling of Carp < 1.12 2.002_001 - 2016-06-17 - added Sub::Quote::sanitize_identifier to generate an identifier from an arbitrary string. - Sub::Defer::defer_info is now exportable. - improved documentation for Sub::Quote. - fix quoted subs with no_defer ignoring no_install option. (RT#114605) - internals of Sub::Quote were refactored. - error message when AATTISA changes now includes the location that the constructor was generated. - original invoker will be used when calling a non-Moo parent constructor. (RT#115189) - added testing for preserving context into quote_sub subs. (RT#114511) - quote_sub context options will be used even when zero. (RT#114512) - Sub::Defer::defer_sub gained attributes option to specify sub attributes. - Sub::Quote::quote_sub gained attributes option to specify sub attributes. 2.002_000 - 2016-05-18 - Use Carp::croak rather than die to improve reported error locations (RT#109844, RT#109632, RT#102622) - removed Method::Inliner module. It was never intended to ship with Moo, and was undocumented, untested, and unused on CPAN. - require Role::Tiny 2.000002 for fixes to method modifiers being applied via multiple role composition paths (RT#106668) - Delay loading Class::Method::Modifiers until we actually need it - Fix an explosion that could happen if meta inflation was attempted part way through Moo\'s bootstrapping process, which was possible via a CORE::GLOBAL::bless override (RT#113743) - Accessor subs will be generated immediately, rather than being partially deferred. The deferal added extra sub layers and the delayed compilation didn\'t provide any real benefit for them. - Numeric values used as defaults will be inlined as numbers rather than strings. - Numerous test cleanups and additional test coverage - Fixed a typo in Sub::Defer docs (RT#113416) - Deferred subs (including constructors) will always be named properly, even if neither Sub::Name nor Sub::Util are available. This improves compatibility with namespace::autoclean, among other things. Once the sub is undeferred, it may not be given a correct name if Sub::Name or Sub::Util aren\'t available.
* Mon Mar 07 2016 cooloAATTsuse.com- updated to 2.001001 see /usr/share/doc/packages/perl-Moo/Changes 2.001001 - 2016-03-04 - Fixed order of attribute value being set and trigger running when there is an isa check present. (RT#112677) - Corrected LIFECYCLE METHODS to be a head1 section rather than head2. 2.001000 - 2016-02-29
* Documentation - Added documentation for has\'s ability to accept an arrayref of attribute names to create with the same options. - Removed mention that we may not call BUILDARGS, since that behavior was removed in 2.000002. - Reorganized documentation of class methods to separate those provided as a public API (new/does/meta) from those used by Moo in the object lifecycle (BUILDARGS/FOREIGNBUILDARGS/BUILD/DEMOLISH). - Updated documentation of most class methods for clarity. - Updated BUILDARGS documentation to show an around rather than just overriding. - Added examples to FOREIGNBUILDARGS and BUILD. - Added explicit documentation for DOES and meta methods.
* Fixes - Fixed grammar in error message when AATTISA is changed unexpectedly before a constructor is fully generated. - Fixed Moo classes and Sub::Quote subs in packages that are nearly 252 characters long. - Fixed Sub::Defer::undefer_package emitting warnings. - Fixed detection of constructors that have already been inlined.
* Performance - The generated code in constructors and setters has had a number of microoptimizations applied. - Deferred subs (and quoted subs like some accessors) in roles will be undefered before copying them to classes. This prevents the need for a goto on every call that would slow down the subs. - Fixed Moose inflation code resulting in constructors with deferred wrappers.
* Other - Recommend Sub::Name 0.08, which fixes a memory leak. - The values given to BUILD subs will be the original values passed to new, rather than after coercions have been applied. This brings the behavior in line with Moose.
* Sat Jul 25 2015 cooloAATTsuse.com- updated to 2.000002 see /usr/share/doc/packages/perl-Moo/Changes 2.000002 - 2015-07-24 - BUILDARGS will now always be called on object creation, even if no attributes exist - fix required attributes with spaces or other odd characters in init_arg - fix (is => \'lazy\', required => 1, init_arg => undef), which previously didn\'t think it provided a builder - under \'no Moo::sification\', prevent automatic Moose metaclass inflation from ->meta calls - don\'t load Moo::Role for a ->does check if no roles could exist - make global destruction test more robust from outside interference - fix false default values satisfying required attributes - Fix Moose attribute delegation to a Moo class via a wildcard - work around case where Sub::Util is loadable but doesn\'t provide Sub::Util::set_subname - skip thread tests on perl 5.8.4 and below where threads are extremely unreliable - Allow stub methods (e.g. sub foo;) to be overwritten by accessors or other generated methods. (RT#103804)
* Tue Apr 14 2015 cooloAATTsuse.com- updated to 2.000001 see /usr/share/doc/packages/perl-Moo/Changes 2.000001 - 2015-03-16 - Fix how we pick between Sub::Name and Sub::Util if they are both loaded. This fixes how we interact with Moose in some cases. (RT#102729) (GH#15) 2.000000 - 2015-03-02
* Incompatible Changes - Fatal warnings and the other additional checks from the strictures module will no longer be applied to modules using Moo or Moo::Role. We now only apply strict and (non-fatal) warnings, matching the behavior of Moose. - Classes without attributes used to store everything passed to ->new in the object. This has been fixed to not store anything in the object, making it consistent with classes that had attributes. - Moo will now pass __no_BUILD__ to parent constructors when inheriting from a Moose or Class::Tiny class, to prevent them from calling BUILD functions. Moo calls the BUILD functions itself, which previously led to them being called multiple times. - Attempting to replace an existing constructor, or modify one that has been used, will throw an error. This includes adding attributes. Previously, this would result in some attributes being silently ignored by the constructor. - If a class\'s AATTISA is modified without using \'extends\' in a way that affects object construction, Moo will detect this and throw an error. This can happen in code that uses ->load_components from Class::C3::Componentised, which is common in DBIx::Class modules.
* Bug Fixes - Fix calling class methods on Moo::HandleMoose::FakeMetaClass, such as modules scanning all classes
* Miscellaneous - use Sub::Util instead of Sub::Name if available 1.007000 - 2015-01-21 - fix Moose metaclass inflation of Method::Generate::Constructor (RT#101111) - clarify behavior of clearers for non-lazy attribute defaults - add Sub::Defer::undefer_package to undefer all subs from a given package - existing attributes will no longer be overwritten when composing roles. Previously, the attribute configuration used by the constructor would be overridden, but the attribute methods would not be. This caused a mismatch in attribute behavior. - link to Type::Tiny in docs rather than MooX::Types::MooseLike - document exports of Sub::Defer - fix capture_unroll usage in inlinify example - fix needless re-assigning of variables in generated Sub::Quote subs - fix global destruction test to work when perl path has spaces
* Wed Nov 12 2014 cooloAATTsuse.com- updated to 1.006001 - Name the ->DOES method installed by Role::Tiny - don\'t apply threading workarounds on non-threaded perls, even if module for it is loaded by something - avoid loading base.pm and just set AATTISA manually - fix some Pod links to Class::Method::Modifiers - fix applying roles with multiple attributes with defaults to objects (RT#99217) - fix Moose inheriting from a Moo class that inherits from a non-M
* class when the Moose class is not made immutable - fix ->does method on Moose child classes of Moo classes
 
ICM