1 Also see Moose::Manual::Delta for more details of, and workarounds
2 for, noteworthy changes.
6 * Stop the natatime method provided by the native Array trait from returning
7 an exhausted iterator when being called with a callback. (Florian Ragwitz)
9 * Make Moose::Meta::TypeConstraint::Class correctly reject RegexpRefs.
12 1.01 Fri, Mar 26, 2010
16 * The handles option now also accepts a role type constraint in addition to a
17 plain role name. (Florian Ragwitz)
21 * Record the Sartak/doy debt properly in Changes (perigrin)
23 1.00 Tue, Mar 25, 2010
27 * Moose::Meta::Attribute::Native::Trait::Code no longer creates reader
28 methods by default. (Florian Ragwitz)
32 * Improve various parts of the documentation and fix many typos.
33 (Dave Rolsky, Mateu Hunter, Graham Knop, Robin V, Jay Hannah, Jesse Luehrs)
37 * Paid the $10 debt to doy from 0.80 Sat, Jun 6, 2009 (Sartak)
43 * New method find_type_for in Moose::Meta::TypeConstraint::Union, for finding
44 which member of the union a given value validates for. (Cory Watson)
48 * DEMOLISH methods in mutable subclasses of immutable classes are now called
49 properly (Chia-liang Kao, Jesse Luehrs)
53 * Added Moose::Manual::Support that defines the support, compatiblity, and
54 release policies for Moose. (Chris Prather)
56 0.98 Wed, Feb 10, 2010
60 * An internals change in 0.97 broke role application to an instance in some
61 cases. The bug occurred when two different roles were applied to different
62 instances of the same class. (Rafael Kitover)
69 * Calling ->reinitialize on a cached anonymous class effectively uncached
70 the metaclass object, causing the metaclass to go out of scope
71 unexpectedly. This could easily happen at a distance by applying a
72 metarole to an anonymous class. (Dave Rolsky).
78 * ScalarRef is now a parameterized type. You can now specify a type
79 constraint for whatever the reference points to. (Closes RT#50857)
80 (Michael G. Schwern, Florian Ragwitz)
84 * ScalarRef now accepts references to other references. (Closes RT#50934)
91 * Moose::Meta::Attribute::Native::Trait::Code now provides execute_method as
92 a delegation option. This allows the code reference to be called as a
93 method on the object. (Florian Ragwitz)
97 * Moose::Object::does no longer checks the entire inheritance tree, since
98 Moose::Meta::Class::does_role already does this. (doy)
100 * Moose::Util::add_method_modifier (and subsequently the sugar functions
101 Moose::before, Moose::after, and Moose::around) can now accept arrayrefs,
102 with the same behavior as lists. Types other than arrayref and regexp
103 result in an error. (Dylan Hardison)
105 0.94 Mon, Jan 18, 2010
109 * Please see the changes listed for 0.93_01 and Moose::Manual::Delta.
113 * Improved support for anonymous roles by changing various APIs to take
114 Moose::Meta::Role objects as well as role names. This included
116 - Moose::Meta::Class->does_role
117 - Moose::Meta::Role->does_role
118 - Moose::Util::does_role
119 - Moose::Util::apply_all_roles
120 - Moose::Util::ensure_all_roles
121 - Moose::Util::search_class_by_role
123 Requested by Shawn Moore. Addresses RT #51143 (and then some). (Dave Rolsky)
127 * Fix handling of non-alphanumeric attributes names like '@foo'. This should
128 work as long as the accessor method names are explicitly set to valid Perl
129 method names. Reported by Doug Treder. RT #53731. (Dave Rolsky)
132 0.93_03 Tue, Jan 5, 2010
136 * Portability fixes to our XS code so we compile with 5.8.8 and Visual
137 C++. Fixes RT #53391. Reported by Taro Nishino. (rafl)
140 0.93_02 Tue, Jan 5, 2010
144 * Depend on Class::MOP 0.97_01 so we can get useful results from CPAN
145 testers. (Dave Rolsky)
148 0.93_01 Mon, Jan 4, 2010
152 See Moose::Manual::Delta for more details on backwards compatiblity issues.
154 * Role attributes are now objects of the Moose::Meta::Role::Attribute
155 class. (Dave Rolsky).
157 * There were major changes to how metaroles are applied. We now distinguish
158 between metaroles for classes vs those for roles. See the
159 Moose::Util::MetaRole docs for details. (Dave Rolsky)
161 * The old MetaRole API has been deprecated, but will continue to
162 work. However, if you are applying an attribute metaclass role, this may
163 break because of the fact that roles now have an attribute metaclass
166 * Moose::Util::MetaRole::apply_metaclass_roles is now called
167 apply_metaroles. The old name is deprecated. Dave Rolsky>
169 * The unimport subs created by Moose::Exporter now clean up re-exported
170 functions like blessed and confess, unless the caller imported them from
171 somewhere else too. See Moose::Manua::Delta for backcompat details. (rafl)
173 [ENHANCEMENTS AND BUG FIXES]
175 * Changed the Str constraint to accept magic lvalue strings like one gets from
176 substr et al, again. (sorear)
178 * Sped up the type constraint parsing regex. (Sam Vilain)
180 * The Moose::Cookbook::Extending::Recipe2 recipe was broken. Fix suggested by
183 * Added Moose::Util::TypeConstraints exports when using oose.pm to allow
184 easier testing of TypeConstraints from the command line. (perigrin)
186 * Added a with_immutable test function to Test::Moose, to run a block of tests
187 with and without certain classes being immutable. (doy)
189 * We now use Module::Install extensions explicitly to avoid confusing errors
190 if they're not installed. We use Module::Install::AuthorRequires to stop
191 test extraction and general failures if you don't have the author side
192 dependencies installed.
194 * Fixed a grammar error in Moose::Cookbook::Basics::Recipe4. rt.cpan.org
195 #51791. (Amir E. Aharoni)
198 0.93 Thu, Nov 19, 2009
200 - Calling $object->new() is no longer deprecated, and no longer
204 - The get_attribute_map method is now deprecated. (Dave Rolsky)
206 * Moose::Meta::Method::Delegation
207 - Preserve variable aliasing in @_ for delegated methods, so that
208 altering @_ affects the passed value. (doy)
210 * Moose::Util::TypeConstraints
211 - Allow array refs for non-anonymous form of enum and duck_type, not
212 just anonymous. The non-arrayref forms may be removed in the
214 - Changed Str constraint to not accept globs (*STDIN or *FOO). (chansen)
215 - Properly document Int being a subtype of Str. (doy)
218 - Moose::Exporter using modules can now export their functions to the
219 main package. This applied to Moose and Moose::Role, among
220 others. (nothingmuch)
222 * Moose::Meta::Attribute
223 - Don't remove attribute accessors we never installed, during
224 remove_accessors. (doy)
226 * Moose::Meta::Attribute::Native::Trait::Array
227 - Don't bypass prototype checking when calling List::Util::first, to
228 avoid a segfault when it is called with a non-code argument. (doy)
230 * Moose::Meta::Attribute::Native::Trait::Code
231 - Fix passing arguments to code execute helpers. (doy)
233 0.92 Tue, Sep 22, 2009
234 * Moose::Util::TypeConstraints
235 - added the match_on_type operator (Stevan)
236 - added tests and docs for this (Stevan)
239 - Metaclass compat fixing should already happen recursively, there's no
240 need to explicitly walk up the inheritance tree. (doy)
242 * Moose::Meta::Attribute
243 - Add tests for set_raw_value and get_raw_value. (nothingmuch)
245 0.91 Thu, Sep 17, 2009
247 - Don't import any functions, in order to avoid polluting our namespace
248 with things that can look like methods (blessed, try, etc)
251 * Moose::Meta::Method::Constructor
252 - The generated code needs to called Scalar::Util::blessed by its
253 fully-qualified name or else Perl can interpret the call to blessed as
254 an indirect method call. This broke Search::GIN, which in turn broke
255 KiokuDB. (nothingmuch)
257 0.90 Tue, Sep 15, 2009
258 * Moose::Meta::Attribute::Native::Trait::Counter
259 * Moose::Meta::Attribute::Native::Trait::String
260 - For these two traits, an attribute which did not explicitly provide
261 methods to handles magically ended up delegating *all* the helper
262 methods. This has been removed. You must be explicit in your handles
263 declaration for all Native Traits. (Dave Rolsky)
266 - DEMOLISHALL behavior has changed. If any DEMOLISH method dies, we make
267 sure to rethrow its error message. However, we also localize $@ before
268 this so that if all the DEMOLISH methods success, the value of $@ will
269 be preserved. (nothingmuch and Dave Rolsky)
270 - We now also localize $? during object destruction. (nothingmuch and
272 - The handling of DEMOLISH methods was broken for immutablized classes,
273 which were not receiving the value of
274 Devel::GlobalDestruction::in_global_destruction.
275 - These two fixes address some of RT #48271, reported by Zefram.
276 - This is all now documented in Moose::Manual::Construction.
277 - Calling $object->new() is now deprecated. A warning will be
281 - Added more hooks to customize how roles are applied. The role
282 summation class, used to create composite roles, can now be changed
283 and/or have meta-roles applied to it. (rafl)
284 - The get_method_list method no longer explicitly excludes the "meta"
285 method. This was a hack that has been replaced by better hacks. (Dave
288 * Moose::Meta::Method::Delegation
289 - fixed delegated methods to make sure that any modifiers attached to
290 the accessor being delegated on will be called (Stevan)
291 - added tests for this (Stevan)
294 - Moose no longer warns when a class that is being made immutable has
295 mutable ancestors. While in theory this is a good thing to warn about,
296 we found so many exceptions to this that doing this properly became
299 0.89_02 Thu, Sep 10, 2009
300 * Moose::Meta::Attribute::Native
301 - Fix Hash, which still had 'empty' instead of 'is_empty'. (hdp)
303 * Moose::Meta::Attribute::Native::Trait::Array
304 - Added a number of functions from List::Util and List::MoreUtils,
305 including reduce, shuffle, uniq, and natatime. (doy)
308 - This module will now generate an init_meta method for your exporting
309 class if you pass it options for
310 Moose::Util::MetaRole::apply_metaclass_roles or
311 apply_base_class_roles. This eliminates a lot of repetitive
312 boilerplate for typical MooseX modules. (doy).
313 - Documented the with_meta feature, which is a replacement for
314 with_caller. This feature was added by josh a while ago.
315 - The with_caller feature is now deprecated, but will not issue a
316 warning yet. (Dave Rolsky)
317 - If you try to wrap/export a subroutine which doesn't actually exist,
318 Moose::Exporter will warn you about this. (doy)
320 * Moose::Meta::Role::Application::ToRole
321 - When a role aliased a method from another role, it was only getting
322 the new (aliased) name, not the original name. This differed from what
323 happens when a class aliases a role's methods. If you _only_ want the
324 aliased name, make sure to also exclue the original name. (Dave
327 0.89_01 Wed Sep 2, 2009
328 * Moose::Meta::Attribute
329 - Added the currying syntax for delegation from AttributeHelpers to the
330 existing delegation API. (hdp)
332 * Moose::Meta::Attribute::Native
333 - We have merged the functionality of MooseX::AttributeHelpers into the
334 Moose core with some API tweaks. You can continue to use
335 MooseX::AttributeHelpers, but it will not be maintained except
336 (perhaps) for critical bug fixes in the future. See
337 Moose::Manual::Delta for details. (hdp, jhannah, rbuels, Sartak,
340 * Moose::Error::Croak
341 * Moose::Error::Confess
342 - Clarify documentation on how to use different error-throwing
343 modules. (Curtis Jewell)
346 - Correct POD for builder to point to Recipe8, not 9. (gphat)
349 - When a nonexistent sub name is passed to as_is, with_caller, or
350 with_meta, throw a warning and skip the exporting, rather than
351 installing a broken sub. (doy)
354 - Moose now warns if you call C<make_immutable> for a class with mutable
357 0.89 Thu Aug 13, 2009
358 * Moose::Manual::Attributes
359 - Clarify "is", include discussion of "bare". (Sartak)
361 * Moose::Meta::Role::Method::Conflicting
362 * Moose::Meta::Role::Application::ToClass
363 - For the first set of roles involved in a conflict, report all
364 unresolved method conflicts, not just the first method. Fixes #47210
365 reported by Ovid. (Sartak)
367 * Moose::Meta::TypeConstraint
368 - Add assert_valid method to use a TypeConstraint for assertion (rjbs)
371 - Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
373 - Allow specifying role options (alias, excludes, MXRP stuff) in the
374 arrayref passed to "use Moose -traits" (doy)
377 - Add functions meta_class_alias and meta_attribute_alias for creating
378 aliases for class and attribute metaclasses and metatraits. (doy)
380 * Moose::Meta::Attribute
381 * Moose::Meta::Method::Accessor
382 - A trigger now receives the old value as a second argument, if the
383 attribute had one. (Dave Rolsky)
385 * Moose::Meta::Method::Constructor
386 - Fix a bug with $obj->new when $obj has stringify overloading.
387 Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
388 - However, we will probably deprecate $obj->new, so please don't start
389 using it for new code!
391 * Moose::Meta::Role::Application
392 * Moose::Meta::Role::Application::RoleSummation
393 - Rename alias and excludes to -alias and -excludes (but keep the old
394 names for now, for backcompat) (doy)
396 0.88 Fri Jul 24, 2009
397 * Moose::Manual::Contributing
398 - Re-write the Moose::Manual::Contributing document to reflect
399 the new layout and methods of work for the Git repository. All
400 work now should be done in topic branches and reviewed by a
401 core committer before being applied to master. All releases
402 are done by a cabal member and merged from master to
403 stable. This plan was devised by Yuval, blame him. (perigrin)
406 - Create metaclass attributes for the different role application
409 * Moose::Util::MetaRole
410 - Allow applying roles to a meta role's role application
413 * Moose::Meta::Attribute
414 - Add weak_ref to allowed options for "has '+foo'" (mst)
416 * Moose::Meta::Method::Accessor
417 - No longer uses inline_slot_access in accessors, to support
418 non-lvalue-based meta instances. (sorear)
421 * Moose::Meta::Method::Delegation
422 - Once again allow class names as well as objects for
423 delegation. This was changed in 0.86.
426 * Moose::Meta::Class::Immutable::Trait
427 - Fixes to work with the latest Class::MOP.
429 * Moose::Meta::Method::Delegation
430 - Delegation now dies with a more useful error message if the
431 attribute's accessor returns something defined but
434 0.85 Fri, Jun 26, 2009
435 * Moose::Meta::Attribute
436 - The warning for 'no associated methods' is now split out into
437 the _check_associated_methods method, so that extensions can
438 safely call 'after install_accessors => ...'. This fixes a
439 warning from MooseX::AttributeHelpers. (hdp)
441 0.84 Fri, Jun 26, 2009
443 - has now sets definition_context for attributes defined in
446 * Moose::Meta::Attribute
447 - When adding an attribute to a metaclass, if the attribute has
448 no associated methods, it will give a deprecation
450 - Methods generated by delegation were not being added to
451 associated_methods. (hdp)
452 - Attribute accessors (reader, writer, accessor, predicate,
453 clearer) now warn if they overwrite an existing method. (doy)
454 - Attribute constructors now warn very noisily about unknown (or
455 misspelled) arguments
457 * Moose::Util::TypeConstraints
458 - Deprecated the totally useless Role type name, which just
459 checked if $object->can('does'). Note that this is _not_ the
460 same as a type created by calling role_type('RoleName').
462 * Moose::Util::TypeConstraints
463 * Moose::Meta::TypeConstraint::DuckType
464 - Reify duck type from a regular subtype into an actual class
466 - Document this because Sartak did all my work for me
469 * Moose::Meta::Attribute
470 - Allow Moose::Meta::TypeConstraint::DuckType in handles, since
471 it is just a list of methods (Sartak)
474 - The get_*_method_modifiers methods would die if the role had
475 no modifiers of the given type (Robert Buels).
477 0.83 Tue, Jun 23, 2009
479 - Fix _construct_instance not setting the special __MOP__ object
480 key in instances of anon classes. (doy)
482 0.82 Sun, Jun 21, 2009
483 * Moose::Manual::Types
484 - Mention MooseX::Types early to avoid users falling down the
485 string parsing rathole (mst)
487 * Moose::Manual::MooseX
488 - Add warnings about class-level extensions and mention considering
489 using plain objects instead
491 0.81 Sun, Jun 7, 2009
492 * Bumped our Class::MOP prereq to the latest version (0.85), since
495 0.80 Sat, Jun 6, 2009
497 - Add FAQ about the coercion change from 0.76 because it came up
498 three times today (perigrin)
499 - Win doy $10 dollars because Sartak didn't think anybody
500 would document this fast enough (perigrin)
502 * Moose::Meta::Method::Destructor
503 - Inline a DESTROY method even if there are no DEMOLISH methods
504 to prevent unnecessary introspection in
505 Moose::Object::DEMOLISHALL
508 - A role's required methods are now represented by
509 Moose::Meta::Role::Method::Required objects. Conflicts are now
510 represented by Moose::Meta::Role::Method::Conflicting
511 objects. The benefit for end-users in that unresolved
512 conflicts generate different, more instructive, errors,
513 resolving Ovid's #44895. (Sartak)
516 - Improve the error message of "extends" as suggested by Adam
517 Kennedy and confound (Sartak)
518 - Link to Moose::Manual::Roles from Moose::Role as we now have
519 excellent documentation (Adam Kennedy)
522 - Update test suite for subname change in Class::MOP
524 - Add TODO test for infinite recursion in Moose::Meta::Class
527 0.79 Wed, May 13, 2009
529 - More fixes for Win32 problems. Reported by Robert Krimen.
532 - The DEMOLISHALL method could still blow up in some cases
533 during global destruction. This method has been made more
534 resilient in the face of global destruction's random garbage
538 - If you "also" a module that isn't loaded, the error message
539 now acknowledges that (Sartak)
542 - When your ->meta method does not return a Moose::Meta::Class,
543 the error message gave the wrong output (Sartak)
545 0.78 Tue, May 12, 2009
546 * Moose::Cookbook::FAQ and Moose::Cookbook::WTF
547 - Merged these documents into what is now Moose::Manual::FAQ
550 - Moved to Moose::Manual::Unsweetened
552 * Moose::Cookbook::Basics::Recipes 9-12
553 - Renamed to be 8-11, since recipe 8 did not exist
556 - Make Moose::Exporter import strict and warnings into packages
560 - Fix DEMOLISHALL sometimes not being able to find DEMOLISH
561 methods during global destruction (doy)
564 * Moose::Meta::Role::Application::ToClass
565 - Track the Role::Application objects created during class-role
569 - Fix metaclass incompatibility errors when extending a vanilla perl
570 class which isa Moose class with a metaclass role applied (t0m)
573 - Add a role-combination hook, _role_for_combination, for the
574 benefit of MooseX::Role::Parameterized (Sartak)
577 - Some tests were failing on Win32 because they explicit checked
578 warning output for newlines. Reported by Nickolay Platonov.
580 0.77 Sat, May 2, 2009
582 - Add explicit use of Devel::GlobalDestruction and Sub::Name
586 - Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
587 or not we are currently in global destruction (doy)
588 - Add explicit use of Devel::GlobalDestruction and Sub::Name
591 * Moose::Cookbook::FAQ
592 - Reworked much of the existing content to be more useful to
593 modern Moose hackers (Sartak)
596 - Depend on Class::MOP 0.83 instead of 0.82_01.
598 0.76 Mon, April 27, 2009
599 * Moose::Meta::TypeConstraint
600 - Do not run coercions in coerce() if the value already passes the type
603 * Moose::Meta::TypeConstraint::Class
604 - In validation error messages, specifically say that the value is not
605 an instance of the class. This should alleviate some frustrating
606 forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
608 * Moose::Meta::Role::Application::ToClass
609 - Revert the class-overrides-role warning in favor of a solution outside
610 of the Moose core (Sartak)
613 - Make Test::Output optional again, since it's only used in a few files
616 0.75_01 Thu, April 23, 2009
617 * Moose::Meta::Role::Application::ToClass
618 - Moose now warns about each class overriding methods from roles it
622 - Warnings tests have standardized on Test::Output which is now an
623 unconditionally dependency (Sartak)
626 - Changes to immutabilization to work with Class::MOP 0.82_01+.
628 0.75 Mon, April 20, 2009
631 - Move validation of not inheriting from roles from Moose::extends to
632 Moose::Meta::Class::superclasses (doy)
635 - add ensure_all_roles() function to encapsulate the common "apply this
636 role unless the object already does it" pattern (hdp)
639 - Users can now select a different metaclass with the "-metaclass"
640 option to import, for classes and roles (Sartak)
643 - Make method_metaclass an attr so that it can accept a metarole
646 0.74 Tue, April 7, 2009
648 * Moose::Meta::Method::Destructor
649 - Include stack traces in the deprecation warnings.
653 - Removed the long-deprecated _apply_all_roles method.
655 * Moose::Meta::TypeConstraint
656 - Removed the long-deprecated union method.
659 0.73_02 Mon, April 6, 2009
660 * More deprecations and renamings
661 - Moose::Meta::Method::Constructor
662 - initialize_body => _initialize_body (this is always called
663 when an object is constructed)
666 - The DEMOLISHALL method could throw an exception during global
667 destruction, meaning that your class's DEMOLISH methods would
668 not be properly called. Reported by t0m.
670 * Moose::Meta::Method::Destructor
671 - Destructor inlining was totally broken by the change to the
672 is_needed method in 0.72_01. Now there is a test for this
673 feature, and it works again.
676 - Bold the word 'not' in the POD for find_meta (t0m)
678 0.73_01 Sun, April 5, 2009
680 - Call user_class->meta in fewer places, with the eventual goal
681 of allowing the user to rename or exclude ->meta
682 altogether. Instead uses Class::MOP::class_of. (Sartak)
684 * Moose::Meta::Method::Accessor
685 - If an attribute had a lazy default, and that value did not
686 pass the attribute's type constraint, it did not get the
687 message from the type constraint, instead using a generic
688 message. Test provided by perigrin.
690 * Moose::Util::TypeConstraints
691 - Add duck_type keyword. It's sugar over making sure an object
692 can() a list of methods. This is easier than jrockway's
693 suggestion to fork all of CPAN. (perigrin)
694 - add tests and documentation (perigrin)
697 - Document the fact that init_meta() returns the target class's
698 metaclass object. (hdp)
700 * Moose::Cookbook::Extending::Recipe1
701 * Moose::Cookbook::Extending::Recipe2
702 * Moose::Cookbook::Extending::Recipe3
703 * Moose::Cookbook::Extending::Recipe4
704 - Make init_meta() examples explicitly return the metaclass and
705 point out this fact. (hdp)
707 * Moose::Cookbook::Basics::Recipe12
708 - A new recipe, creating a custom meta-method class.
710 * Moose::Cookbook::Meta::Recipe6
711 - A new recipe, creating a custom meta-method class.
714 * Moose::Meta::Method::Constructor
715 - Attribute triggers no longer receive the meta-attribute object
716 as an argument in any circumstance. Previously, triggers
717 called during instance construction were passed the
718 meta-attribute, but triggers called by normal accessors were
719 not. Fixes RT#44429, reported by Mark Swayne. (hdp)
721 * Moose::Manual::Attributes
722 - Remove references to triggers receving the meta-attribute object as an
725 * Moose::Cookbook::FAQ
726 - Remove recommendation for deprecated Moose::Policy and
727 Moose::Policy::FollowPBP; recommend MooseX::FollowPBP
730 * Many methods have been renamed with a leading underscore, and a
731 few have been deprecated entirely. The methods with a leading
732 underscore are consider "internals only". People writing
733 subclasses or extensions to Moose should feel free to override
734 them, but they are not for "public" use.
737 - check_metaclass_compatibility => _check_metaclass_compatibility
739 - Moose::Meta::Method::Accessor
740 - initialize_body => _initialize_body (this is always called
741 when an object is constructed)
742 - /(generate_.*_method(?:_inline)?)/ => '_' . $1
744 - Moose::Meta::Method::Constructor
745 - initialize_body => _initialize_body (this is always called
746 when an object is constructed)
747 - /(generate_constructor_method(?:_inline)?)/ => '_' . $1
748 - attributes => _attributes (now inherited from parent)
749 - meta_instance => _meta_instance (now inherited from parent)
752 - alias_method is deprecated. Use add_method
754 0.73 Fri, March 29, 2009
755 * No changes from 0.72_01.
757 0.72_01 Thu, March 26, 2009
759 - Almost every module has complete API documentation. A few
760 methods (and even whole classes) have been intentionally
761 excluded pending some rethinking of their APIs.
763 * Moose::Util::TypeConstraints
764 - Calling subtype with a name as the only argument is now an
765 exception. If you want an anonymous subtype do:
767 my $subtype = subtype as 'Foo';
769 * Moose::Cookbook::Meta::Recipe7
770 - A new recipe, creating a custom meta-instance class.
772 * Moose::Cookbook::Basics::Recipe5
773 - Fix various typos and mistakes. Includes a patch from Radu
776 * Moose::Cookbook::Basics::Recipe9
777 - Link to this recipe from Moose.pm's builder blurb
780 - When wrapping a function with a prototype, Moose::Exporter now
781 makes sure the wrapped function still has the same
782 prototype. (Daisuke Maki)
784 * Moose::Meta::Attribute
785 - Allow a subclass to set lazy_build for an inherited
789 - Explicitly depend on Data::OptList. We already had this dependency
790 via Sub::Exporter, but since we're using it directly we're
791 better off with it listed. (Sartak)
793 * Moose::Meta::Method::Constructor
794 - Make it easier to subclass the inlining behaviour. (Ash
797 * Moose::Manual::Delta
798 - Details significant changes in the history of Moose, along
799 with recommended workarounds.
801 * Moose::Manual::Contributing
802 - Contributor's guide to Moose.
804 * Moose::Meta::Method::Constructor
805 - The long-deprecated intialize_body method has been removed
806 (yes, spelled like that).
808 * Moose::Meta::Method::Destructor
809 - This is_needed method is now always a class method.
812 - Changes to the internals of how make_immutable works to match
813 changes in latest Class::MOP.
815 0.72 Mon, February 23, 2009
817 * Moose::Meta::Method::Constructor
818 - A mutable class accepted Foo->new(undef) without complaint,
819 while an immutable class would blow up with an unhelpful
820 error. Now, in both cases we throw a helpful error
821 instead. Reported by doy.
823 0.71_01 Sun, February 22, 2009
825 - Hopefully fixed some POD errors in a few recipes that caused
826 them to display weird on search.cpan.org.
828 * Moose::Util::TypeConstraints
829 - Calling type or subtype without the sugar helpers (as, where,
830 message) is now deprecated.
831 - The subtype function tried hard to guess what you meant, but
832 often got it wrong. For example:
834 my $subtype = subtype as 'ArrayRef[Object]';
836 This caused an error in the past, but now works as you'd
840 - Make sure Moose.pm is loaded before calling
841 Moose->throw_error. This wasn't normally an issue, but could
842 bite you in weird cases.
844 0.71 Thu, February 19, 2009
845 * Moose::Cookbook::Basics::Recipe11
846 - A new recipe which demonstrates the use of BUILDARGS and
849 * Moose::Cookbook::Roles::Recipe3
850 - A new recipe, applying a role to an object instance. (Dave
854 - Allow overriding specific keywords from "also" packages. (doy)
857 - Replace hardcoded cookbook tests with Test::Inline to ensure
858 the tests match the actual code in the recipes. (Dave Rolsky)
861 - Working on the above turned up a number of little bugs in the
862 recipe code. (Dave Rolsky)
864 * Moose::Util::TypeConstraints::Optimized
865 - Just use Class::MOP for the optimized ClassName check. (Dave
868 0.70 Sat, February 14, 2009
869 * Moose::Util::TypeConstraints
870 - Added the RoleName type (stevan)
871 - added tests for this (stevan)
873 * Moose::Cookbook::Basics::Recipe3
874 - Updated the before qw[left right] sub to be a little more
875 defensive about what it accepts (stevan)
876 - added more tests to t/000_recipies/basics/003_binary_tree.t
880 - We now always call DEMOLISHALL, even if a class does not
881 define DEMOLISH. This makes sure that method modifiers on
882 DEMOLISHALL work as expected. (doy)
883 - added tests for this (EvanCarroll)
885 * Moose::Util::MetaRole
886 - Accept roles for the wrapped_method_metaclass (rafl)
887 - added tests for this (rafl)
889 * Moose::Meta::Attribute
890 - We no longer pass the meta-attribute object as a final
891 argument to triggers. This actually changed for inlined code a
892 while back, but the non-inlined version and the docs were
896 - Some tests tried to use Test::Warn 0.10, which had bugs. Now
897 they require 0.11. (Dave Rolsky)
900 - Lots of small changes to the manual, cookbook, and
901 elsewhere. These were based on feedback from various
902 users, too many to list here. (Dave Rolsky)
904 0.69 Thu, February 12, 2009
906 - Make some keyword errors use throw_error instead of croak
907 since Moose::Exporter wraps keywords now (Sartak)
910 - Revised every recipe for style and clarity. Also moved some
911 documentation out of cookbook recipes and into Moose::Manual
912 pages. This work was funded as part of the Moose docs grant
913 from TPF. (Dave Rolsky)
915 * Moose::Meta::Method::Delegation
916 - If the attribute doing the delegation was not populated, the
917 error message did not specify the attribute name
920 0.68 Wed, February 4, 2009
922 - Many spelling, typo, and formatting fixes by daxim.
924 * Moose::Manual::Attributes
925 - The NAME section in the POD used "Attribute" so search.cpan
926 didn't resolve links from other documents properly.
928 * Moose::Meta::Method::Overriden
929 - Now properly spelled as Overridden. Thanks to daxim for
932 0.67 Tue, February 3, 2009
934 - Lots of little typo fixes and a few clarifications. Several
935 pages didn't have proper titles, and so weren't actually
936 visible on search.cpan.org. Thanks to hanekomu for a variety
937 of fixes and formatting improvements.
939 0.66 Tue, February 3, 2009
941 - This is a brand new, extensive manual for Moose. This aims to
942 provide a complete introduction to all of Moose's
943 features. This work was funded as part of the Moose docs grant
944 from TPF. (Dave Rolsky)
946 * Moose::Meta::Attribute
947 - Added a delegation_metaclass method to replace a hard-coded
948 use of Moose::Meta::Method::Delegation. (Dave Rolsky)
950 * Moose::Util::TypeConstraints
951 - If you created a subtype and passed a parent that Moose didn't
952 know about, it simply ignored the parent. Now it automatically
953 creates the parent as a class type. This may not be what you
954 want, but is less broken than before. (Dave Rolsky)
956 * Moose::Util::TypeConstraints
957 - This module tried throw errors by calling Moose->throw_error,
958 but it did not ensure that Moose was loaded first. This could
959 cause very unhelpful errors when it tried to throw an error
960 before Moose was loaded. (Dave Rolsky)
962 * Moose::Util::TypeConstraints
963 - You could declare a name with subtype such as "Foo!Bar" that
964 would be allowed, but if you used it in a parameterized type
965 such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
966 vetting on names created via the sugar functions, so that they
967 can only contain alphanumerics, ":", and ".". (Dave Rolsky)
969 0.65 Thu, January 22, 2008
970 * Moose and Moose::Meta::Method::Overridden
971 - If an overridden method called super(), and then the
972 superclass's method (not overridden) _also_ called super(),
973 Moose went into an endless recursion loop. Test provided by
974 Chris Prather. (Dave Rolsky)
976 * Moose::Meta::TypeConstraint
977 - All methods are now documented. (gphat)
979 * t/100_bugs/011_DEMOLISH_eats_exceptions.t
980 - Fixed some bogus failures that occurred because we tried to
981 validate filesystem paths in a very ad-hoc and
982 not-quite-correct way. (Dave Rolsky)
984 * Moose::Util::TypeConstraints
985 - Added maybe_type to exports. See docs for details. (rjbs)
988 - Added Moose::Util::TypeConstraints to the SEE ALSO
992 - Methods created via an attribute can now fulfill a "requires"
993 declaration for a role. (nothingmuch)
995 * Moose::Meta::Method::*
996 - Stack traces from inlined code will now report its line and
997 file as being in your class, as opposed to in Moose
1000 0.64 Wed, December 31, 2008
1001 * Moose::Meta::Method::Accessor
1002 - Always inline predicate and clearer methods (Sartak)
1004 * Moose::Meta::Attribute
1005 - Support for parameterized traits (Sartak)
1006 - verify_against_type_constraint method to avoid duplication
1007 and enhance extensibility (Sartak)
1009 * Moose::Meta::Class
1010 - Tests (but no support yet) for parameterized traits (Sartak)
1013 - Require Class::MOP 0.75+, which has the side effect of making
1014 sure we work on Win32. (Dave Rolsky)
1016 0.63 Mon, December 8, 2008
1017 * Moose::Unsweetened
1018 - Some small grammar tweaks and bug fixes in non-Moose example
1021 0.62_02 Fri, December 5, 2008
1022 * Moose::Meta::Role::Application::ToClass
1023 - When a class does not provide all of a role's required
1024 methods, the error thrown now mentions all of the missing
1025 methods, as opposed to just the first one found. Requested by
1026 Curtis Poe (RT #41119). (Dave Rolsky)
1028 * Moose::Meta::Method::Constructor
1029 - Moose will no longer inline a constructor for your class
1030 unless it inherits its constructor from Moose::Object, and
1031 will warn when it doesn't inline. If you want to force
1032 inlining anyway, pass "replace_constructor => 1" to
1033 make_immutable. Addresses RT #40968, reported by Jon
1034 Swartz. (Dave Rolsky)
1035 - The quoting of default values could be broken if the default
1036 contained a single quote ('). Now we use quotemeta to escape
1037 anything potentially dangerous in the defaults. (Dave Rolsky)
1039 0.62_01 Wed, December 3, 2008
1041 - use the method->execute API for BUILDALL
1042 and DEMOLISHALL (Sartak)
1044 * Moose::Util::TypeConstraints
1045 - We now make all the type constraint meta classes immutable
1046 before creating the default types provided by Moose. This
1047 should make loading Moose a little faster. (Dave Rolsky)
1049 0.62 Wed November 26, 2008
1050 * Moose::Meta::Role::Application::ToClass
1051 Moose::Meta::Role::Application::ToRole
1052 - fixed issues where excluding and aliasing the
1053 same methods for a single role did not work
1054 right (worked just fine with multiple
1056 - added test for this (stevan)
1058 * Moose::Meta::Role::Application::RoleSummation
1059 - fixed the error message when trying to compose
1060 a role with a role it excludes (Sartak)
1063 - Catch another case where recursion caused the value
1064 of $CALLER to be stamped on (t0m)
1065 - added test for this (t0m)
1068 - Remove the make_immutable keyword, which has been
1069 deprecated since April. It breaks metaclasses that
1070 use Moose without no Moose (Sartak)
1072 * Moose::Meta::Attribute
1073 - Removing an attribute from a class now also removes delegation
1074 (handles) methods installed for that attribute (t0m)
1075 - added test for this (t0m)
1077 * Moose::Meta::Method::Constructor
1078 - An attribute with a default that looked like a number (but was
1079 really a string) would accidentally be treated as a number
1080 when the constructor was made immutable (perigrin)
1081 - added test for this (perigrin)
1084 - create method for constructing a role
1085 dynamically (Sartak)
1086 - added test for this (Sartak)
1087 - anonymous roles! (Sartak)
1088 - added test for this (Sartak)
1091 - more consistent error messages (Sartak)
1093 * Moose::Cookbook::Roles::Recipe1
1094 - attempt to explain why a role that just requires
1095 methods is useful (Sartak)
1097 0.61 Fri November 7, 2008
1098 * Moose::Meta::Attribute
1099 - When passing a role to handles, it will be loaded if necessary
1102 * Moose::Meta::Class
1103 - Method objects returned by get_method (and other methods)
1104 Could end up being returned without an associated_metaclass
1105 attribute. Removing get_method_map, which is provided by
1106 Class::MOP::Class, fixed this. The Moose version did nothing
1107 different from its parent except introduce a bug. (Dave Rolsky)
1108 - added tests for this (jdv79)
1111 - Added a $VERSION to all .pm files which didn't have one. Fixes
1112 RT #40049, reported by Adam Kennedy. (Dave Rolsky)
1114 * Moose::Cookbook::Basics::Recipe4
1115 * Moose::Cookbook::Basics::Recipe6
1116 - These files had spaces on the first line of the SYNOPSIS, as
1117 opposed to a totally empty line. According to RT #40432, this
1118 confuses POD parsers. (Dave Rolsky)
1120 0.60 Fri October 24, 2008
1122 - Passing "-traits" when loading Moose caused the Moose.pm
1123 exports to be broken. Reported by t0m. (Dave Rolsky)
1124 - Tests for this bug. (t0m)
1127 - Change resolve_metaclass alias to use the new
1128 load_first_existing_class function. This makes it a lot
1129 simpler, and also around 5 times faster. (t0m)
1130 - Add caching to resolve_metaclass_alias, which gives an order
1131 of magnitude speedup to things which repeatedly call the
1132 Moose::Meta::Attribute->does method, notably MooseX::Storage
1135 * Moose::Util::TypeConstraint
1136 - Put back the changes for parameterized constraints that
1137 shouldn't have been removed in 0.59. We still cannot parse
1138 them, but MooseX modules can create them in some other
1139 way. See the 0.58 changes for more details. (jnapiorkowski)
1140 - Changed the way subtypes are created so that the job is
1141 delegated to a type constraint parent. This clears up some
1142 hardcoded checking and should allow correct subtypes of
1143 Moose::Meta::Type::Constraint. Don't rely on this new API too
1144 much (create_child_type) because it may go away in the
1145 future. (jnapiorkowski)
1147 * Moose::Meta::TypeConstraint::Union
1148 - Type constraint names are sorted as strings, not numbers.
1151 * Moose::Meta::TypeConstraint::Parameterizable
1152 - New parameterize method. This can be used as a factory method
1153 to make a new type constraint with a given parameterized
1154 type. (jnapiorkowski)
1155 - added tests (jnapiorkowski)
1157 0.59 Tue October 14, 2008
1159 - Add abridged documentation for builder/default/initializer/
1160 predicate, and link to more details sections in
1161 Class::MOP::Attribute. (t0m)
1163 * Moose::Util::TypeConstraints
1164 - removed prototypes from all but the &-based stuff (mst)
1166 * Moose::Util::TypeConstraints
1167 - Creating a anonymous subtype with both a constraint and a
1168 message failed with a very unhelpful error, but should just
1169 work. Reported by t0m. (Dave Rolsky)
1172 - Some tests that used Test::Warn if it was available failed
1173 with older versions of Test::Warn. Reported by Fayland. (Dave
1175 - Test firing behavior of triggers in relation to builder/default/
1177 - Test behavior of equals/is_a_type_of/is_a_subtype_of for all
1178 kinds of supported type. (t0m)
1180 * Moose::Meta::Class
1181 - In create(), do not pass "roles" option to the superclass
1182 - added related test that creates an anon metaclass with
1183 a required attribute
1185 * Moose::Meta::TypeConstraint::Class
1186 * Moose::Meta::TypeConstraint::Role
1187 - Unify behavior of equals/is_a_type_of/is_a_subtype_of with
1188 other types (as per change in 0.55_02). (t0m)
1190 * Moose::Meta::TypeConstraint::Registry
1191 - Fix warning when dealing with unknown type names (t0m)
1193 * Moose::Util::TypeConstraints
1194 - Reverted changes from 0.58 related to handle parameterized
1195 types. This caused random failures on BSD and Win32 systems,
1196 apparently related to the regex engine. This means that Moose
1197 can no longer parse structured type constraints like
1198 ArrayRef[Int,Int] or HashRef[name=>Str]. This will be
1199 supported in a slightly different way via MooseX::Types some
1200 time in the future. (Dave Rolsky)
1202 0.58 Sat September 20, 2008
1203 !! This release has an incompatible change regarding !!
1204 !! how roles add methods to a class !!
1206 * Roles and role application
1207 ! Roles now add methods by calling add_method, not
1208 alias_method. They make sure to always provide a method
1209 object, which will be cloned internally. This means that it is
1210 now possible to track the source of a method provided by a
1211 role, and even follow its history through intermediate roles.
1213 This means that methods added by a role now show up when
1214 looking at a class's method list/map. (Dave Rolsky)
1217 - From this release on, we'll try to maintain a list of
1218 conflicting modules, and warn you if you have one
1219 installed. For example, this release conflicts with ...
1220 - MooseX::Singleton <= 0.11
1221 - MooseX::Params::Validate <= 0.05
1224 In general, we try to not break backwards compatibility for
1225 most Moose users, but MooseX modules and other code which
1226 extends Moose's metaclasses is often affected by very small
1227 changes in the Moose internals.
1229 * Moose::Meta::Method::Delegation
1230 * Moose::Meta::Attribute
1231 - Delegation methods now have their own method class. (Dave
1234 * Moose::Meta::TypeConstraint::Parameterizable
1235 - Added a new method 'parameterize' which is basically a factory
1236 for the containing constraint. This makes it easier to create
1237 new types of parameterized constraints. (jnapiorkowski)
1239 * Moose::Meta::TypeConstraint::Union
1240 - Changed the way Union types canonicalize their names to follow
1241 the normalized TC naming rules, which means we strip all
1242 whitespace. (jnapiorkowski)
1244 * Moose::Util::TypeConstraints
1245 - Parameter and Union args are now sorted, this makes Int|Str
1246 the same constraint as Str|Int. (jnapiorkowski)
1247 - Changes to the way Union types are parsed to more correctly
1248 stringify their names. (jnapiorkowski)
1249 - When creating a parameterized type, we now use the new
1250 parameterize method. (jnapiorkowski)
1251 - Incoming type constraint strings are now normalized to remove
1252 all whitespace differences. (jnapiorkowski)
1253 - Changed the way we parse type constraint strings so that we now
1254 match TC[Int,Int,...] and TC[name=>Str] as parameterized type
1255 constraints. This lays the foundation for more flexible type
1256 constraint implementations.
1258 * Tests and docs for all the above. (jnapiorkowski)
1262 - Moose::Exporter will no longer remove a subroutine that the
1263 exporting package re-exports. Moose re-exports the
1264 Carp::confess function, among others. The reasoning is that we
1265 cannot know whether you have also explicitly imported those
1266 functions for your own use, so we err on the safe side and
1267 always keep them. (Dave Rolsky)
1268 - added tests for this (rafl)
1270 * Moose::Meta::Class
1271 - Changes to how we fix metaclass compatibility that are much
1272 too complicated to go into. The summary is that Moose is much
1273 less likely to complain about metaclass incompatibility
1274 now. In particular, if two metaclasses differ because
1275 Moose::Util::MetaRole was used on the two corresponding
1276 classes, then the difference in roles is reconciled for the
1277 subclass's metaclass. (Dave Rolsky)
1278 - Squashed an warning in _process_attribute (thepler)
1281 - throw exceptions (sooner) for invalid attribute names (thepler)
1282 - added tests for this (thepler)
1284 * Moose::Util::MetaRole
1285 - If you explicitly set a constructor or destructor class for a
1286 metaclass object, and then applied roles to the metaclass,
1287 that explicitly set class would be lost and replaced with the
1290 * Moose::Meta::Class
1291 * Moose::Meta::Attribute
1292 * Moose::Meta::Method
1295 * Moose::Error::Default
1296 * Moose::Error::Croak
1297 * Moose::Error::Confess
1298 - All instances of confess() changed to use overridable
1299 C<throw_error> method. This method ultimately calls a class
1300 constructor, and you can change the class being called. In
1301 addition, errors now pass more information than just a string.
1302 The default C<error_class> behaves like C<Carp::confess>, so
1303 the behavior is not visibly different for end users.
1305 0.57 Wed September 3, 2008
1307 - A new bit of doc intended to introduce folks familiar with
1308 "standard" Perl 5 OO to Moose concepts. (Dave Rolsky)
1310 * Moose::Unsweetened
1311 - Shows examples of two classes, each done first with and then
1312 without Moose. This makes a nice parallel to
1313 Moose::Intro. (Dave Rolsky)
1315 * Moose::Util::TypeConstraints
1316 - Fixed a bug in find_or_parse_type_constraint so that it
1317 accepts a Moose::Meta::TypeConstraint object as the parent
1318 type, not just a name (jnapiorkowski)
1319 - added tests (jnapiorkowski)
1322 - If Sub::Name was not present, unimporting failed to actually
1323 remove some sugar subs, causing test failures (Dave Rolsky)
1325 0.56 Mon September 1, 2008
1326 For those not following the series of dev releases, there are
1327 several major changes in this release of Moose.
1328 ! Moose::init_meta should now be called as a method. See the
1331 - Major performance improvements by nothingmuch.
1333 - New modules for extension writers, Moose::Exporter and
1334 Moose::Util::MetaRole by Dave Rolsky.
1336 - Lots of doc improvements and additions, especially in the
1339 - Various bug fixes.
1341 * Removed all references to the experimental-but-no-longer-needed
1342 Moose::Meta::Role::Application::ToMetaclassInstance.
1344 * Require Class::MOP 0.65.
1346 0.55_04 Sat August 30, 2008
1347 * Moose::Util::MetaRole
1348 * Moose::Cookbook::Extending::Recipe2
1349 - This simplifies the application of roles to any meta class, as
1350 well as the base object class. Reimplemented metaclass traits
1351 using this module. (Dave Rolsky)
1353 * Moose::Cookbook::Extending::Recipe1
1354 - This a new recipe, an overview of various ways to write Moose
1355 extensions (Dave Rolsky)
1357 * Moose::Cookbook::Extending::Recipe3
1358 * Moose::Cookbook::Extending::Recipe4
1359 - These used to be Extending::Recipe1 and Extending::Recipe2,
1362 0.55_03 Fri August 29, 2008
1363 * No changes from 0.55_02 except increasing the Class::MOP
1364 dependency to 0.64_07.
1366 0.55_02 Fri August 29, 2008
1367 * Makefile.PL and Moose.pm
1368 - explicitly require Perl 5.8.0+ (Dave Rolsky)
1370 * Moose::Util::TypeConstraints
1371 - Fix warnings from find_type_constraint if the type is not
1374 * Moose::Meta::TypeConstraint
1375 - Predicate methods (equals/is_a_type_of/is_subtype_of) now
1376 return false if the type you specify cannot be found in the
1377 type registry, rather than throwing an unhelpful and
1378 coincidental exception. (t0m).
1379 - added docs & test for this (t0m)
1381 * Moose::Meta::TypeConstraint::Registry
1382 - add_type_constraint now throws an exception if a parameter is
1384 - added docs & test for this (t0m)
1386 * Moose::Cookbook::FAQ
1387 - Added a faq entry on the difference between "role" and "trait"
1391 - Fixed a bug that caused role composition to not see a required
1392 method when that method was provided by another role being
1393 composed at the same time. (Dave Rolsky)
1394 - test and bug finding (tokuhirom)
1396 0.55_01 Wed August 20, 2008
1398 !! Calling Moose::init_meta as a function is now !!
1399 !! deprecated. Please see the Moose.pm docs for details. !!
1401 * Moose::Meta::Method::Constructor
1402 - Fix inlined constructor so that values produced by default
1403 or builder methods are coerced as required. (t0m)
1404 - added test for this (t0m)
1406 * Moose::Meta::Attribute
1407 - A lazy attribute with a default or builder did not attempt to
1408 coerce the default value. The immutable code _did_
1410 - added test for this (t0m)
1413 - This is a new helper module for writing "Moose-alike"
1414 modules. This should make the lives of MooseX module authors
1415 much easier. (Dave Rolsky)
1418 * Moose::Cookbook::Meta::Recipe5
1419 - Implemented metaclass traits (and wrote a recipe for it):
1421 use Moose -traits => 'Foo'
1423 This should make writing small Moose extensions a little
1424 easier (Dave Rolsky)
1426 * Moose::Cookbook::Basics::Recipe1
1427 - Removed any examples of direct hashref access, and applied an
1428 editorial axe to reduce verbosity. (Dave Rolsky)
1430 * Moose::Cookbook::Basics::Recipe1
1431 - Also applied an editorial axe here. (Dave Rolsky)
1434 * Moose::Cookbook::Extending::Recipe1
1435 * Moose::Cookbook::Extending::Recipe2
1436 - Rewrote extending and embedding moose documentation and
1437 recipes to use Moose::Exporter (Dave Rolsky)
1441 - These two modules now warn when you load them from the main
1442 package "main" package, because we will not export sugar to
1443 main. Previously it just did nothing. (Dave Rolsky)
1446 - Now provide an init_meta method just like Moose.pm, and you
1447 can call this to provide an alternate role metaclass. (Dave
1448 Rolsky and nothingmuch)
1449 - get_method_map now respects the package cache flag (nothingmuch)
1452 - Two new methods - add_method and wrap_method_body
1456 - Optimizations including allowing constructors to accept hash
1457 refs, making many more classes immutable, and making
1458 constructors immutable. (nothingmuch)
1460 0.55 Sun August 3, 2008
1461 * Moose::Meta::Attribute
1462 - breaking down the way 'handles' methods are
1463 created so that the process can be more easily
1464 overridden by subclasses (stevan)
1466 * Moose::Meta::TypeConstraint
1467 - fixing what is passed into a ->message with
1468 the type constraints (RT #37569)
1469 - added tests for this (Charles Alderman)
1471 * Moose::Util::TypeConstraints
1472 - fix coerce to accept anon types like subtype can (mst)
1475 - reorganized the recipes into sections - Basics, Roles, Meta,
1476 Extending - and wrote abstracts for each section (Dave Rolsky)
1478 * Moose::Cookbook::Basics::Recipe10
1479 - A new recipe that demonstrates operator overloading
1480 in combination with Moose. (bluefeet)
1482 * Moose::Cookbook::Meta::Recipe1
1483 - an introduction to what meta is and why you'd want to make
1484 your own metaclass extensions (Dave Rolsky)
1486 * Moose::Cookbook::Meta::Recipe4
1487 - a very simple metaclass example (Dave Rolsky)
1489 * Moose::Cookbook::Extending::Recipe1
1490 - how to write a Moose-alike module to use your own object base
1493 * Moose::Cookbook::Extending::Recipe2
1494 - how to write modules with an API just like C<Moose.pm> (Dave
1498 - Tons of fixes, both syntactical and grammatical (Dave
1499 Rolsky, Paul Fenwick)
1501 0.54 Thurs. July 3, 2008
1502 ... this is not my day today ...
1504 * Moose::Meta::Attribute
1505 - fixed legal_options_for_inheritance such that
1506 clone_and_inherit options still works for
1507 Class::MOP::Attribute objects and therefore
1508 does not break MooseX::AttributeHelpers
1511 0.53 Thurs. July 3, 2008
1512 * Whoops, I guess I should run 'make manifest' before
1513 actually releasing the module. No actual changes
1514 in this release, except the fact that it includes
1515 the changes that I didn't include in the last
1518 0.52 Thurs. July 3, 2008
1520 - added "FEATURE REQUESTS" section to the Moose docs
1521 to properly direct people (stevan) (RT #34333)
1522 - making 'extends' croak if it is passed a Role since
1523 this is not ever something you want to do
1524 (fixed by stevan, found by obra)
1525 - added tests for this (stevan)
1528 - adding support for DOES (as in UNIVERSAL::DOES)
1530 - added test for this
1532 * Moose::Meta::Attribute
1533 - added legal_options_for_inheritance (wreis)
1534 - added tests for this (wreis)
1536 * Moose::Cookbook::Snacks::*
1537 - removed some of the unfinished snacks that should
1538 not have been released yet. Added some more examples
1539 to the 'Keywords' snack. (stevan)
1541 * Moose::Cookbook::Style
1542 - added general Moose "style guide" of sorts to the
1543 cookbook (nothingmuch) (RT #34335)
1546 - added more BUILDARGS tests (stevan)
1548 0.51 Thurs. Jun 26, 2008
1550 - add unimport so "no Moose::Role" actually does
1553 * Moose::Meta::Role::Application::ToRole
1554 - when RoleA did RoleB, and RoleA aliased a method from RoleB in
1555 order to provide its own implementation, that method still got
1556 added to the list of required methods for consumers of
1557 RoleB. Now an aliased method is only added to the list of
1558 required methods if the role doing the aliasing does not
1559 provide its own implementation. See Recipe 11 for an example
1560 of all this. (Dave Rolsky)
1561 - added tests for this
1563 * Moose::Meta::Method::Constructor
1564 - when a single argument that wasn't a hashref was provided to
1565 an immutabilized constructor, the error message was very
1566 unhelpful, as opposed to the non-immutable error. Reported by
1568 - added test for this (Dave Rolsky)
1570 * Moose::Meta::Attribute
1571 - added support for meta_attr->does("ShortAlias") (sartak)
1572 - added tests for this (sartak)
1573 - moved the bulk of the `handles` handling to the new
1574 install_delegation method (Stevan)
1577 - Added BUILDARGS, a new step in new()
1579 * Moose::Meta::Role::Application::RoleSummation
1580 - fix typos no one ever sees (sartak)
1582 * Moose::Util::TypeConstraints
1583 * Moose::Meta::TypeConstraint
1584 * Moose::Meta::TypeCoercion
1585 - Attempt to work around the ??{ } vs. threads issue
1587 - Some null_constraint optimizations
1589 0.50 Thurs. Jun 11, 2008
1590 - Fixed a version number issue by bumping all modules
1593 0.49 Thurs. Jun 11, 2008
1594 !! This version now approx. 20-25% !!
1595 !! faster with new Class::MOP 0.59 !!
1597 * Moose::Meta::Attribute
1598 - fixed how the is => (ro|rw) works with
1599 custom defined reader, writer and accessor
1601 - added docs for this (TODO).
1602 - added tests for this (Thanks to Penfold)
1603 - added the custom attribute alias for regular
1604 Moose attributes which is "Moose"
1605 - fix builder and default both being used
1610 Moose::Meta::Attribute
1612 Moose::Meta::Role::Composite
1613 Moose::Util::TypeConstraints
1614 - switched usage of reftype to ref because
1618 - changing add_package_symbol to use the new
1622 - fixed how DEMOLISHALL is called so that it
1623 can be overrided in subclasses (thanks to Sartak)
1624 - added test for this (thanks to Sartak)
1626 * Moose::Util::TypeConstraints
1627 - move the ClassName type check code to
1628 Class::MOP::is_class_loaded (thanks to Sartak)
1630 * Moose::Cookbook::Recipe11
1631 - add tests for this (thanks to tokuhirom)
1633 0.48 Thurs. May 29, 2008
1634 (early morning release engineering)--
1636 - fixing the version in Moose::Meta::Method::Destructor
1637 which was causing the indexer to choke
1639 0.47 Thurs. May 29, 2008
1640 (late night release engineering)--
1642 - fixing the version is META.yml, no functional
1643 changes in this release
1645 0.46 Wed. May 28, 2008
1646 !! This version now approx. 20-25% !!
1647 !! faster with new Class::MOP 0.57 !!
1649 * Moose::Meta::Class
1650 - some optimizations of the &initialize method
1651 since it is called so often by &meta
1653 * Moose::Meta::Class
1655 - now use the get_all_package_symbols from the
1656 updated Class::MOP, test suite is now 10 seconds
1659 * Moose::Meta::Method::Destructor
1660 - is_needed can now also be called as a class
1661 method for immutablization to check if the
1662 destructor object even needs to be created
1665 * Moose::Meta::Method::Destructor
1666 Moose::Meta::Method::Constructor
1667 - added more descriptive error message to help
1668 keep people from wasting time tracking an error
1669 that is easily fixed by upgrading.
1671 0.45 Saturday, May 24, 2008
1673 - Because of work in Class::MOP 0.57, all
1674 XS based functionality is now optional
1675 and a Pure Perl version is supplied
1676 - the CLASS_MOP_NO_XS environment variable
1677 can now be used to force non-XS versions
1679 - several of the packages have been tweaked
1680 to take care of this, mostly we added
1681 support for the package_name and name
1682 variables in all the Method metaclasses
1683 - before/around/after method modifiers now
1684 support regexp matching of names
1685 (thanks to Takatoshi Kitano)
1686 - tests added for this
1687 - NOTE: this only works for classes, it
1688 is currently not supported in roles,
1689 but, ... patches welcome
1690 - All usage of Carp::confess have been replaced
1691 by Carp::croak in the "keyword" functions since
1692 the stack trace is usually not helpful
1695 - All usage of Carp::confess have been replaced
1696 by Carp::croak in the "keyword" functions since
1697 the stack trace is usually not helpful
1698 - The 'has' keyword for roles now accepts the
1699 same array ref form that Moose.pm does
1700 (has [qw/foo bar/] => (is => 'rw', ...))
1701 - added test for this
1703 * Moose::Meta::Attribute
1704 - trigger on a ro-attribute is no longer an
1705 error, as it's useful to trigger off of the
1708 * Moose::Meta::Class
1709 - added same 'add_package_symbol' fix as in
1713 - does_role now handles non-Moose classes
1715 - added tests for this
1716 - added the 'add_method_modifier' function
1717 (thanks to Takatoshi Kitano)
1719 * Moose::Util::TypeConstraints
1720 - subtypes of parameterizable types now are
1721 themselves parameterizable types
1723 * Moose::Meta::Method::Constructor
1724 - fixed bug where trigger was not being
1725 called by the inlined immutable
1727 - added test for this (thanks to Caelum)
1729 * Moose::Meta::Role::Application::ToInstance
1730 - now uses the metaclass of the instance
1731 (if possible) to create the anon-class
1732 (thanks Jonathan Rockway)
1734 * Moose::Cookbook::Recipe22
1735 - added the meta-attribute trait recipe
1739 - fixed hash-ordering test bug that was
1740 causing occasional cpantester failures
1741 - renamed the t/000_recipe/*.t tests to be
1742 more descriptive (thanks to Sartak)
1744 0.44 Sat. May 10, 2008
1746 - made make_immutable warning cluck to
1747 show where the error is (thanks mst)
1750 - BUILDALL and DEMOLISHALL now call
1751 ->body when looping through the
1752 methods, to avoid the overloaded
1754 - fixed issue where DEMOLISHALL was
1755 eating the $@ values, and so not
1756 working correctly, it still kind of
1757 eats them, but so does vanilla perl
1758 - added tests for this
1760 * Moose::Cookbook::Recipe7
1761 - added new recipe for immutable
1762 functionality (thanks Dave Rolsky)
1764 * Moose::Cookbook::Recipe9
1765 - added new recipe for builder and
1766 lazy_build (thanks Dave Rolsky)
1768 * Moose::Cookbook::Recipe11
1769 - added new recipe for method aliasing
1770 and exclusion with Roles (thanks Dave Rolsky)
1773 - fixed Win32 test failure (thanks spicyjack)
1775 ~ removed Build.PL and Module::Build compat
1776 since Module::Install has done that.
1778 0.43 Wed. April, 30, 2008
1780 drink more coffee before
1781 doing release engineering
1783 - whoops, forgot to do the smolder tests,
1784 and we broke some of the custom meta-attr
1785 modules. This fixes that.
1787 0.42 Mon. April 28, 2008
1788 - some bad tests slipped by, nothing else
1789 changed in this release (cpantesters++)
1791 - upped the Class::MOP dependency to 0.55
1792 since we have tests which need the C3
1795 0.41 Mon. April 28, 2008
1796 ~~ numerous documentation updates ~~
1798 - Changed all usage of die to Carp::croak for better
1799 error reporting (initial patch by Tod Hagan)
1801 ** IMPORTANT NOTE **
1802 - the make_immutable keyword is now deprecated, don't
1803 use it in any new code and please fix your old code
1804 as well. There will be 2 releases, and then it will
1810 - refactored the way inner and super work to avoid
1811 any method/@ISA cache penalty (nothingmuch)
1813 * Moose::Meta::Class
1814 - fixing &new_object to make sure trigger gets the
1815 coerced value (spotted by Charles Alderman on the
1817 - added test for this
1819 * Moose::Meta::Method::Constructor
1820 - immutable classes which had non-lazy attributes were calling
1821 the default generating sub twice in the constructor. (bug
1822 found by Jesse Luehrs, fixed by Dave Rolsky)
1823 - added tests for this (Dave Rolsky)
1824 - fix typo in initialize_body method (nothingmuch)
1826 * Moose::Meta::Method::Destructor
1827 - fix typo in initialize_body method (nothingmuch)
1829 * Moose::Meta::Method::Overriden
1830 Moose::Meta::Method::Augmented
1831 - moved the logic for these into their own
1832 classes (nothingmuch)
1834 * Moose::Meta::Attribute
1835 - inherited attributes may now be extended without
1836 restriction on the type ('isa', 'does') (Sartak)
1837 - added tests for this (Sartak)
1838 - when an attribute property is malformed (such as lazy without
1839 a default), give the name of the attribute in the error
1841 - added the &applied_traits and &has_applied_traits methods
1842 to allow introspection of traits
1843 - added tests for this
1844 - moved 'trait' and 'metaclass' argument handling to here from
1846 - clone_and_inherit_options now handles 'trait' and 'metaclass' (has
1847 '+foo' syntax) (nothingmuch)
1848 - added tests for this (t0m)
1851 - localize $@ inside DEMOLISHALL to avoid it
1852 eating $@ (found by Ernesto)
1853 - added test for this (thanks to Ernesto)
1855 * Moose::Util::TypeConstraints
1856 - &find_type_constraint now DWIMs when given an
1857 type constraint object or name (nothingmuch)
1858 - &find_or_create_type_constraint superseded with a number of more
1860 - find_or_create_{isa,does}_type_constraint
1861 - find_or_parse_type_constraint
1863 * Moose::Meta::TypeConstraint
1864 Moose::Meta::TypeConstraint::Class
1865 Moose::Meta::TypeConstraint::Role
1866 Moose::Meta::TypeConstraint::Enum
1867 Moose::Meta::TypeConstraint::Union
1868 Moose::Meta::TypeConstraint::Parameterized
1869 - added the &equals method for comparing two type
1870 constraints (nothingmuch)
1871 - added tests for this (nothingmuch)
1873 * Moose::Meta::TypeConstraint
1874 - add the &parents method, which is just an alias to &parent.
1875 Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
1877 * Moose::Meta::TypeConstraint::Class
1878 - added the class attribute for introspection purposes
1880 - added tests for this
1882 * Moose::Meta::TypeConstraint::Enum
1883 Moose::Meta::TypeConstraint::Role
1884 - broke these out into their own classes (nothingmuch)
1886 * Moose::Cookbook::Recipe*
1887 - fixed references to test file locations in the POD
1888 and updated up some text for new Moose features
1892 - Added &resolve_metaclass_alias, a helper function for finding an actual
1893 class for a short name (e.g. in the traits list)
1895 0.40 Fri. March 14, 2008
1896 - I hate Pod::Coverage
1898 0.39 Fri. March 14, 2008
1900 - documenting the use of '+name' with attributes
1901 that come from recently composed roles. It makes
1902 sense, people are using it, and so why not just
1903 officially support it.
1904 - fixing the 'extends' keyword so that it will not
1905 trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
1908 - added the perl -Moose=+Class::Name feature to allow
1909 monkeypatching of classes in one liners
1912 - fixing the 'apply_all_roles' keyword so that it will not
1913 trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
1915 * Moose::Meta::Class
1916 - added ->create method which now supports roles (thanks to jrockway)
1917 - added tests for this
1918 - added ->create_anon_class which now supports roles and caching of
1919 the results (thanks to jrockway)
1920 - added tests for this
1921 - made ->does_role a little more forgiving when it is
1922 checking a Class::MOP era metaclasses.
1924 * Moose::Meta::Role::Application::ToInstance
1925 - it is now possible to pass extra params to be used when
1926 a role is applied to an the instance (rebless_params)
1927 - added tests for this
1929 * Moose::Util::TypeConstraints
1930 - class_type now accepts an optional second argument for a
1931 custom message. POD anotated accordingly (groditi)
1932 - added tests for this
1933 - it is now possible to make anon-enums by passing 'enum' an
1934 ARRAY ref instead of the $name => @values. Everything else
1936 - added tests for this
1939 - making test for using '+name' on attributes consumed
1940 from a role, it works and makes sense too.
1942 * Moose::Meta::Attribute
1943 - fix handles so that it doesn't return nothing
1944 when the method cannot be found, not sure why
1945 it ever did this originally, this means we now
1946 have slightly better support for AUTOLOADed
1948 - added more delegation tests
1949 - adding ->does method to this so as to better
1950 support traits and their introspection.
1951 - added tests for this
1954 - localizing the Data::Dumper configurations so
1955 that it does not pollute others (RT #33509)
1956 - made ->does a little more forgiving when it is
1957 passed Class::MOP era metaclasses.
1959 0.38 Fri. Feb. 15, 2008
1960 * Moose::Meta::Attribute
1961 - fixed initializer to correctly do
1962 type checking and coercion in the
1964 - added tests for this
1967 - fixed some finicky tests (thanks to konobi)
1969 0.37 Thurs. Feb. 14, 2008
1971 - fixed some details in Moose::init_meta
1972 and its superclass handling (thanks thepler)
1973 - added tests for this (thanks thepler)
1974 - 'has' now dies if you don't pass in name
1976 - added the 'make_immutable' keyword as a shortcut
1979 * Moose::Meta::Class
1980 Moose::Meta::Method::Constructor
1981 Moose::Meta::Attribute
1982 - making (init_arg => undef) work here too
1983 (thanks to nothingmuch)
1985 * Moose::Meta::Attribute
1986 Moose::Meta::Method::Constructor
1987 Moose::Meta::Method::Accessor
1988 - make lazy attributes respect attr initializers (rjbs)
1989 - added tests for this
1991 * Moose::Util::TypeConstraints
1992 Moose::Util::TypeConstraints::OptimizedConstraints
1993 Moose::Meta::TypeConstraints
1994 Moose::Meta::Attribute
1995 Moose::Meta::Method::Constructor
1996 Moose::Meta::Method::Accessor
1997 - making type errors use the
1998 assigned message (thanks to Sartak)
1999 - added tests for this
2001 * Moose::Meta::Method::Destructor
2002 - making sure DESTROY gets inlined properly
2003 with successive DEMOLISH calls (thanks to manito)
2005 * Moose::Meta::Attribute
2006 Moose::Meta::Method::Accessor
2007 - fixed handling of undef with type constraints
2009 - added tests for this
2012 - added &get_all_init_args and &get_all_attribute_values
2013 (thanks to Sartak and nothingmuch)
2015 0.36 Sat. Jan. 26, 2008
2017 Moose::Meta::Attribute
2018 - role type tests now support when roles are
2019 applied to non-Moose classes (found by ash)
2020 - added tests for this (thanks to ash)
2021 - couple extra tests to boost code coverage
2023 * Moose::Meta::Method::Constructor
2024 - improved fix for handling Class::MOP attributes
2025 - added test for this
2027 * Moose::Meta::Class
2028 - handled the add_attribute($attribute_meta_object)
2030 - added test for this
2032 0.35 Tues. Jan. 22, 2008
2033 * Moose::Meta::Method::Constructor
2034 - fix to make sure even Class::MOP attributes
2035 are handled correctly (Thanks to Dave Rolsky)
2036 - added test for this (also Dave Rolsky)
2038 * Moose::Meta::Class
2039 - improved error message on _apply_all_roles,
2040 you should now use Moose::Util::apply_all_roles
2041 and you shouldnt have been using a _ prefixed
2042 method in the first place ;)
2044 0.34 Mon. Jan. 21, 2008
2045 ~~~ more misc. doc. fixes ~~~
2046 ~~ updated copyright dates ~~
2048 Moose is now a postmodern object system :)
2049 - (see the POD for details)
2051 * <<Role System Refactoring>>
2052 - this release contains a major reworking and
2053 cleanup of the role system
2054 - 100% backwards compat.
2055 - Role application now restructured into seperate
2056 classes based on type of applicants
2057 - Role summation (combining of more than one role)
2058 is much cleaner and anon-classes are no longer
2059 used in this process
2060 - new Composite role metaclass
2061 - runtime application of roles to instances
2062 is now more efficient and re-uses generated
2063 classes when applicable
2065 * <<New Role composition features>>
2066 - methods can now be excluded from a given role
2068 - methods can now be aliased to another name (and
2069 still retain the original as well)
2071 * Moose::Util::TypeConstraints::OptimizedConstraints
2072 - added this module (see above)
2074 * Moose::Meta::Class
2075 - fixed the &_process_attribute method to be called
2076 by &add_attribute, so that the API is now correct
2078 * Moose::Meta::Method::Accessor
2079 - fixed bug when passing a list of values to
2080 an accessor would get (incorrectly) ignored.
2081 Thanks to Sartak for finding this ;)
2082 - added tests for this (Sartak again)
2084 * Moose::Meta::Method::Accessor
2085 Moose::Meta::Method::Constructor
2086 Moose::Meta::Attribute
2087 Moose::Meta::TypeConstraint
2088 Moose::Meta::TypeCoercion
2089 - lots of cleanup of such things as:
2091 - type constraint handling
2092 - error handling/messages
2093 (thanks to nothingmuch)
2095 * Moose::Meta::TypeConstraint::Parameterizable
2096 - added this module to support the refactor
2097 in Moose::Meta::TypeConstraint::Parameterized
2099 * Moose::Meta::TypeConstraint::Parameterized
2100 - refactored how these types are handled so they
2101 are more generic and not confined to ArrayRef
2105 - shortened some file names for better VMS support (RT #32381)
2107 0.33 Fri. Dec. 14, 2007
2108 !! Moose now loads 2 x faster !!
2109 !! with new Class::MOP 0.49 !!
2111 ++ new oose.pm module to make command line
2112 Moose-ness easier (see POD docs for more)
2114 * Moose::Meta::Class
2116 - several tweaks to take advantage of the
2117 new method map caching in Class::MOP
2119 * Moose::Meta::TypeConstraint::Parameterized
2120 - allow subtypes of ArrayRef and HashRef to
2121 be used as a container (sartak)
2122 - added tests for this
2123 - basic support for coercion to ArrayRef and
2124 HashRef for containers (sartak)
2125 - added tests for this
2127 * Moose::Meta::TypeCoercion
2128 - coercions will now create subtypes as needed
2129 so you can now add coercions to parameterized
2130 types without having to explictly define them
2131 - added tests for this
2133 * Moose::Meta::Method::Accessor
2134 - allow subclasses to decide whether we need
2135 to copy the value into a new variable (sartak)
2137 0.32 Tues. Dec. 4, 2007
2138 * Moose::Util::TypeConstraints
2139 - fixing how subtype aliases of unions work
2140 they should inherit the parent's coercion
2141 - added tests for this
2142 - you can now define multiple coercions on
2143 a single type at different times instead of
2144 having to do it all in one place
2145 - added tests for this
2147 * Moose::Meta::TypeConstraint
2148 - there is now a default constraint of sub { 1 }
2149 instead of Moose::Util::TypeConstraints setting
2152 * Moose::Meta::TypeCoercion
2153 * Moose::Meta::TypeCoercion::Union
2154 - added the &has_coercion_for_type and
2155 &add_type_coercions methods to support the
2156 new features above (although you cannot add
2157 more type coercions for Union types)
2159 0.31 Mon. Nov. 26, 2007
2160 * Moose::Meta::Attribute
2161 - made the +attr syntax handle extending types with
2162 parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
2163 now works if the original foo is an ArrayRef.
2164 - added tests for this.
2165 - delegation now works even if the attribute does not
2166 have a reader method using the get_read_method_ref
2167 method from Class::MOP::Attribute.
2168 - added tests for this
2169 - added docs for this
2171 * Moose::Util::TypeConstraints
2172 - passing no "additional attribute info" to
2173 &find_or_create_type_constraint will no longer
2174 attempt to create an __ANON__ type for you,
2175 instead it will just return undef.
2176 - added docs for this
2178 0.30 Fri. Nov. 23, 2007
2179 * Moose::Meta::Method::Constructor
2180 -builder related bug in inlined constructor. (groditi)
2182 * Moose::Meta::Method::Accessor
2183 - genereate unnecessary calls to predicates and refactor
2184 code generation for runtime speed (groditi)
2186 * Moose::Util::TypeConstraints
2187 - fix ClassName constraint to introspect symbol table (mst)
2188 - added more tests for this (mst)
2189 - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
2190 with work correctly.
2191 - added tests for this
2194 - adding the link to Recipie 11 (written by Sartak)
2195 - adding test for SYNOPSIS code
2198 - New tests for builder bug. Upon instantiation, if an
2199 attribute had a builder, no value and was not lazy the
2200 builder default was not getting run, oops. (groditi)
2202 0.29 Tues. Nov. 13, 2007
2203 * Moose::Meta::Attribute
2204 - Fix error message on missing builder method (groditi)
2206 * Moose::Meta::Method::Accessor
2207 - Fix error message on missing builder method (groditi)
2210 - Add test to check for the correct error message when
2211 builder method is missing (groditi)
2213 0.28 Tues. Nov. 13, 2007
2214 - 0.27 packaged incorrectly (groditi)
2216 0.27 Tues. Nov. 13, 2007
2217 * Moose::Meta::Attribute
2218 - Added support for the new builder option (groditi)
2219 - Added support for lazy_build option (groditi)
2220 - Changed slot initialization for predicate changes (groditi)
2222 * Moose::Meta::Method::Accessor
2223 - Added support for lazy_build option (groditi)
2224 - Fix inline methods to work with corrected predicate
2227 * Moose::Meta::Method::Constructor
2228 - Added support for lazy_build option (groditi)
2231 - tests for builder and lazy_build (groditi)
2233 * fixing some misc. bits in the docs that
2234 got mentioned on CPAN Forum & perlmonks
2237 - fixed how required methods are handled
2238 when they encounter overriden or modified
2239 methods from a class (thanks to confound).
2240 - added tests for this
2242 * Moose::Util::TypeConstraint
2243 - fixed the type notation parser so that
2244 the | always creates a union and so is
2245 no longer a valid type char (thanks to
2246 konobi, mugwump and #moose for working
2248 - added more tests for this
2250 0.26 Thurs. Sept. 27, 2007
2253 * Parameterized Types
2254 We now support parameterized collection types, such as:
2255 ArrayRef[Int] # array or integers
2256 HashRef[Object] # a hash with object values
2257 They can also be nested:
2258 ArrayRef[HashRef[RegexpRef]] # an array of hashes with regex values
2259 And work with the type unions as well:
2260 ArrayRef[Int | Str] # array of integers of strings
2262 * Better Framework Extendability
2263 Moose.pm is now "extendable" such that it is now much
2264 easier to extend the framework and add your own keywords
2265 and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
2266 section of the Moose.pm docs.
2269 In an effort to begin documenting some of the various
2270 details of Moose as well as some common idioms, we have
2271 created Moose::Cookbook::Snacks as a place to find
2272 small (easily digestable) nuggets of Moose code.
2275 ~ Several doc updates/cleanup thanks to castaway ~
2277 - converted build system to use Module::Install instead of
2278 Module::Build (thanks to jrockway)
2281 - added all the meta classes to the immutable list and
2282 set it to inline the accessors
2283 - fix import to allow Sub::Exporter like { into => }
2284 and { into_level => } (perigrin)
2285 - exposed and documented init_meta() to allow better
2286 embedding and extending of Moose (perigrin)
2289 - complete re-organization of the test suite
2290 - added some new tests as well
2291 - finally re-enabled the Moose::POOP test since
2292 the new version of DBM::Deep now works again
2295 * Moose::Meta::Class
2296 - fixed very odd and very nasty recursion bug with
2298 - added tests for this (eilara)
2300 * Moose::Meta::Attribute
2301 Moose::Meta::Method::Constructor
2302 Moose::Meta::Method::Accessor
2303 - fixed issue with overload::Overloaded getting called
2304 on non-blessed items. (RT #29269)
2305 - added tests for this
2307 * Moose::Meta::Method::Accessor
2308 - fixed issue with generated accessor code making
2309 assumptions about hash based classes (thanks to dexter)
2311 * Moose::Coookbook::Snacks
2312 - these are bits of documentation, not quite as big as
2313 Recipes but which have no clear place in the module docs.
2314 So they are Snacks! (horray for castaway++)
2316 * Moose::Cookbook::Recipe4
2317 - updated it to use the new ArrayRef[MyType] construct
2318 - updated the accompanying test as well
2320 +++ Major Refactor of the Type Constraint system +++
2321 +++ with new features added as well +++
2323 * Moose::Util::TypeConstraint
2324 - no longer uses package variable to keep track of
2325 the type constraints, now uses the an instance of
2326 Moose::Meta::TypeConstraint::Registry to do it
2327 - added more sophisticated type notation parsing
2329 - added tests for this
2331 * Moose::Meta::TypeConstraint
2332 - some minor adjustments to make subclassing easier
2333 - added the package_defined_in attribute so that we
2334 can track where the type constraints are created
2336 * Moose::Meta::TypeConstraint::Union
2337 - this is now been refactored to be a subclass of
2338 Moose::Meta::TypeConstraint
2340 * Moose::Meta::TypeCoercion::Union
2341 - this has been added to service the newly refactored
2342 Moose::Meta::TypeConstraint::Union and is itself
2343 a subclass of Moose::Meta::TypeCoercion
2345 * Moose::Meta::TypeConstraint::Parameterized
2346 - added this module (taken from MooseX::AttributeHelpers)
2347 to help construct nested collection types
2348 - added tests for this
2350 * Moose::Meta::TypeConstraint::Registry
2351 - added this class to keep track of type constraints
2353 0.25 Mon. Aug. 13, 2007
2355 - Documentation update to reference Moose::Util::TypeConstraints
2356 under 'isa' in 'has' for how to define a new type
2357 (thanks to shlomif).
2359 * Moose::Meta::Attribute
2360 - required attributes now will no longer accept undef
2361 from the constructor, even if there is a default and lazy
2362 - added tests for this
2363 - default subroutines must return a value which passes the
2365 - added tests for this
2367 * Moose::Meta::Attribute
2368 * Moose::Meta::Method::Constructor
2369 * Moose::Meta::Method::Accessor
2370 - type-constraint tests now handle overloaded objects correctly
2371 in the error message
2372 - added tests for this (thanks to EvanCarroll)
2374 * Moose::Meta::TypeConstraint::Union
2375 - added (has_)hand_optimized_constraint to this class so that
2376 it behaves as the regular Moose::Meta::TypeConstraint does.
2379 - large refactoring of this code
2380 - added several more tests
2381 - tests for subtle conflict resolition issues
2382 added, but not currently running
2385 * Moose::Cookbook::Recipe7
2386 - added new recipe for augment/inner functionality
2388 - added test for this
2391 - a formal definition of roles (still in progress)
2394 - utilities for easier working with Moose classes
2395 - added tests for these
2398 - This contains Moose specific test functions
2399 - added tests for these
2401 0.24 Tues. July 3, 2007
2402 ~ Some doc updates/cleanup ~
2404 * Moose::Meta::Attribute
2405 - added support for roles to be given as parameters
2406 to the 'handles' option.
2407 - added tests and docs for this
2408 - the has '+foo' attribute form now accepts changes to
2409 the lazy option, and the addition of a handles option
2410 (but not changing the handles option)
2411 - added tests and docs for this
2414 - required methods are now fetched using find_method_by_name
2415 so that required methods can come from superclasses
2416 - adjusted tests for this
2418 0.23 Mon. June 18, 2007
2419 * Moose::Meta::Method::Constructor
2420 - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
2421 * Moose::Meta::Class
2422 - Modify make_immutable to work with the new Class::MOP immutable
2423 mechanism + POD + very basic test (groditi)
2424 * Moose::Meta::Attribute
2425 - Fix handles to use goto() so that caller() comes out properly on
2426 the other side (perigrin)
2428 0.22 Thurs. May 31, 2007
2429 * Moose::Util::TypeConstraints
2430 - fix for prototype undeclared issue when Moose::Util::TypeConstraints
2431 loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
2432 prototypes for functions
2433 - added the ClassName type constraint, this checks for strings
2434 which will respond true to ->isa(UNIVERSAL).
2435 - added tests and docs for this
2436 - subtyping just in name now works correctly by making the
2437 default for where be { 1 }
2438 - added test for this
2440 * Moose::Meta::Method::Accessor
2441 - coerce and lazy now work together correctly, thanks to
2442 merlyn for finding this bug
2443 - tests added for this
2444 - fix reader presedence bug in Moose::Meta::Attribute + tests
2447 - Foo->new(undef) now gets ignored, it is assumed you meant to pass
2448 a HASH-ref and missed. This produces better error messages then
2449 having it die cause undef is not a HASH.
2450 - added tests for this
2452 0.21 Thursday, May 2nd, 2007
2454 - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
2455 - modified unimport to remove super and inner along with the rest
2456 - altered unimport tests to handle this
2459 - altered super export to populate SUPER_SLOT
2461 * Moose::Meta::Class
2462 - altered augment and override modifier application to use *_SLOT
2463 - modified tests for these to unimport one test class each to test
2466 - fixed issue where custom attribute metaclasses
2467 where not handled correctly in roles
2468 - added tests for this
2470 * Moose::Meta::Class
2471 - fixed issue where extending metaclasses with
2472 roles would blow up. Thanks to Aankhen`` for
2473 finding this insidious error, and it's solution.
2475 ~~ lots of spelling and grammer fixes in the docs,
2476 many many thanks to rlb3 and Aankhen for these :)
2478 0.20 Friday, April 6th, 2007
2479 >> I messed up the SKIP logic in one test
2480 so this release is just to fix that.
2483 - 'has' now also accepts an ARRAY ref
2484 to create multiple attrs (see docs)
2485 (thanks to konobi for this)
2486 - added tests and docs
2488 0.19 Thurs. April 5th, 2007
2489 ~~ More documentation updates ~~
2491 * Moose::Util::TypeConstraints
2492 - 'type' now supports messages as well
2493 thanks to phaylon for finding this
2494 - added tests for this
2495 - added &list_all_type_constraints and
2496 &list_all_builtin_type_constraints
2497 functions to facilitate introspection.
2499 * Moose::Meta::Attribute
2500 - fixed regexp 'handles' declarations
2501 to build the list of delegated methods
2502 correctly (and not override important
2503 things like &new) thanks to ashleyb
2505 - added tests and docs for this
2506 - added the 'documentation' attributes
2507 so that you can actually document your
2508 attributes and inspect them through the
2510 - added tests and docs for this
2512 * Moose::Meta::Class
2513 - when loading custom attribute metaclasses
2514 it will first look in for the class in the
2515 Moose::Meta::Attribute::Custom::$name, and
2516 then default to just loading $name.
2517 - added tests and docs for this
2519 * Moose::Meta::TypeConstraint
2520 - type constraints now stringify to their names.
2521 - added test for this
2524 - added tests to assure we work with Module::Refresh
2525 - added stricter test skip logic in the Moose POOP
2526 test, ask Rob Kinyon why.
2527 - *cough* DBM::Deep 1.0 backwards compatibility sucks *cough* ;)
2529 0.18 Sat. March 10, 2007
2530 ~~ Many, many documentation updates ~~
2533 - We now use Class::MOP::load_class to
2535 - added tests to show types and subtypes
2536 working with Declare::Constraints::Simple
2537 and Test::Deep as constraint engines.
2540 !! You must have Class::MOP 0.37_001 !!
2541 !! for this developer release to work !!
2543 This release was primarily adding the immutable
2544 feature to Moose. An immutable class is one which
2545 you promise not to alter. When you set the class
2546 as immutable it will perform various bits of
2547 memoization and inline certain part of the code
2548 (constructors, destructors and accessors). This
2549 minimizes (and in some cases totally eliminates)
2550 one of Moose's biggest performance hits. This
2551 feature is not on by default, and is 100% optional.
2552 It has several configurable bits as well, so you
2553 can pick and choose to your specific needs.
2555 The changes involved in this were fairly wide and
2556 highly specific, but 100% backwards compatible, so
2557 I am not going to enumerate them here. If you are
2558 truely interested in what was changed, please do
2561 0.17 Tues. Nov. 14, 2006
2562 * Moose::Meta::Method::Accessor
2563 - bugfix for read-only accessors which
2564 are have a type constraint and lazy.
2565 Thanks to chansen for finding it.
2567 0.16 Tues. Nov. 14, 2006
2569 There are some speed improvements in this release,
2570 but they are only the begining, so stay tuned.
2573 - BUILDALL and DEMOLISHALL no longer get
2574 called unless they actually need to be.
2575 This gave us a signifigant speed boost
2576 for the cases when there is no BUILD or
2577 DEMOLISH method present.
2579 * Moose::Util::TypeConstraints
2580 * Moose::Meta::TypeConstraint
2581 - added an 'optimize_as' option to the
2582 type constraint, which allows for a
2583 hand optimized version of the type
2584 constraint to be used when possible.
2585 - Any internally created type constraints
2586 now provide an optimized version as well.
2588 0.15 Sun. Nov. 5, 2006
2590 This version of Moose *must* have Class::MOP 0.36 in order
2591 to work correctly. A number of small internal tweaks have
2592 been made in order to be compatible with that release.
2594 * Moose::Util::TypeConstraints
2595 - added &unimport so that you can clean out
2596 your class namespace of these exported
2599 * Moose::Meta::Class
2600 - fixed minor issue which occasionally
2601 comes up during global destruction
2603 - moved Moose::Meta::Method::Overriden into
2607 - moved Moose::Meta::Role::Method into
2610 * Moose::Meta::Attribute
2611 - changed how we do type checks so that
2612 we reduce the overall cost, but still
2615 - moved accessor generation methods to
2616 Moose::Meta::Method::Accessor to
2617 conform to the API changes from
2620 * Moose::Meta::TypeConstraint
2621 - changed how constraints are compiled
2622 so that we do less recursion and more
2623 iteration. This makes the type check
2625 - moved Moose::Meta::TypeConstraint::Union
2628 * Moose::Meta::Method::Accessor
2629 - created this from methods formerly found in
2630 Moose::Meta::Attribute
2632 * Moose::Meta::Role::Method
2633 - moved this from Moose::Meta::Role
2635 * Moose::Meta::Method::Overriden
2636 - moved this from Moose::Meta::Class
2638 * Moose::Meta::TypeConstraint::Union
2639 - moved this from Moose::Meta::TypeConstraint
2641 0.14 Mon. Oct. 9, 2006
2643 * Moose::Meta::Attribute
2644 - fixed lazy attributes which were not getting
2645 checked with the type constraint (thanks ashley)
2646 - added tests for this
2647 - removed the over-enthusiastic DWIMery of the
2648 automatic ArrayRef and HashRef defaults, it
2649 broke predicates in an ugly way.
2650 - removed tests for this
2652 0.13 Sat. Sept. 30, 2006
2654 This version of Moose *must* have Class::MOP 0.35 in order
2655 to work correctly. A number of small internal tweaks have
2656 been made in order to be compatible with that release.
2659 - Removed the use of UNIVERSAL::require to be a better
2660 symbol table citizen and remove a dependency
2661 (thanks Adam Kennedy)
2663 **~~ removed experimental & undocumented feature ~~**
2664 - commented out the 'method' and 'self' keywords, see the
2665 comments for more info.
2668 - added a FAQ and WTF files to document frequently
2669 asked questions and common problems
2671 * Moose::Util::TypeConstraints
2672 - added GlobRef and FileHandle type constraint
2673 - added tests for this
2675 * Moose::Meta::Attribute
2676 - if your attribute 'isa' ArrayRef of HashRef, and you have
2677 not explicitly set a default, then make the default DWIM.
2678 This will also work for subtypes of ArrayRef and HashRef
2680 - you can now auto-deref subtypes of ArrayRef or HashRef too.
2681 - new test added for this (thanks to ashley)
2684 - added basic support for runtime role composition
2685 but this is still *highly experimental*, so feedback
2686 is much appreciated :)
2687 - added tests for this
2689 * Moose::Meta::TypeConstraint
2690 - the type constraint now handles the coercion process
2691 through delegation, this is to support the coercion
2694 * Moose::Meta::TypeConstraint::Union
2695 - it is now possible for coercions to be performed
2697 - added tests for this (thanks to konobi)
2699 * Moose::Meta::TypeCoercion
2700 - properly capturing error when type constraint
2704 - Scalar::Util 1.18 is bad on Win32, so temporarily
2705 only require version 1.17 for Win32 and cygwin.
2706 (thanks Adam Kennedy)
2708 0.12 Sat. Sept. 1, 2006
2710 - Recipe5 (subtypes & coercion) has been written
2713 - fixed "bad meta" error message to be more descriptive
2714 - fixed &unimport to not remove the &inner and &super
2715 keywords because we need to localize them.
2716 - fixed number of spelling/grammer issues, thanks Theory :)
2718 **~~ experimental & undocumented feature ~~**
2719 - added the method and self keywords, they are basically
2720 just sugar, and they may not stay around.
2723 - added &dump method to easily Data::Dumper
2726 * Moose::Meta::TypeConstraint
2727 - added the &is_a_type_of method to check both the current
2728 and the subtype of a method (similar to &isa with classes)
2731 - this is now a subclass of Class::MOP::Module, and no longer
2732 creates the _role_meta ugliness of before.
2733 - fixed tests to reflect this change
2735 0.11 Wed. July 12, 2006
2737 - added an &unimport method to remove all the keywords
2738 that Moose will import, simply add 'no Moose' to the
2739 bottom of your class file.
2742 - fixed some test failures caused by a forgotten test
2745 0.10 Thurs. July 6, 2006
2747 - improved error message when loading modules so
2748 it is less confusing when you load a role.
2749 - added &calculate_all_roles method to
2750 Moose::Meta::Class and Moose::Meta::Role
2753 This module has been tested against Class::MOP 0.30
2754 but it does not yet utilize the optimizations
2755 it makes available. Stay tuned for that ;)
2757 0.09_03 Fri. June 23, 2006
2758 ++ DEVELOPER RELEASE ++
2760 - 'use strict' and 'use warnings' are no longer
2761 needed in Moose classes, Moose itself will
2762 turn them on for you.
2763 - added tests for this
2764 - moved code from exported subs to private methods
2765 in Moose::Meta::Class
2768 - as with Moose, strict and warnings are
2769 automatically turned on for you.
2770 - added tests for this
2773 - now handles an edge case for override errors
2774 - added tests for this
2775 - added some more edge case tests
2777 0.09_02 Tues. May 16, 2006
2778 ++ DEVELOPER RELEASE ++
2780 - added prototypes to the exported subs
2784 - added prototypes to the exported subs
2787 * Moose::Util::TypeConstraints
2788 - cleaned up prototypes for the subs
2791 0.09_01 Fri. May 12, 2006
2792 ++ DEVELOPER RELEASE ++
2793 - This release works in combination with
2794 Class::MOP 0.29_01, it is a developer
2795 release because it uses the a new
2796 instance sub-protocol and a fairly
2797 complete Role implementation. It has
2798 not yet been optimized, so it slower
2799 the the previous CPAN version. This
2800 release also lacks good updated docs,
2801 the official release will have updated docs.
2804 - refactored the keyword exports
2805 - 'with' now checks Role validaity and
2806 accepts more than one Role at a time
2807 - 'extends' makes metaclass adjustments as
2808 needed to ensure metaclass compatibility
2811 - refactored the keyword exports
2812 - 'with' now checks Role validaity and
2813 accepts more than one Role at a time
2815 * Moose::Util::TypeConstraints
2816 - added the 'enum' keyword for simple
2817 string enumerations which can be used as
2819 - see example of usage in t/202_example.t
2822 - more careful checking of params to new()
2825 - much work done on the role composition
2826 - many new tests for conflict detection
2827 and composition edge cases
2828 - not enough documentation, I suggest
2829 looking at the tests
2831 * Moose::Meta::Instance
2832 - added new Instance metaclass to support
2833 the new Class::MOP instance protocol
2835 * Moose::Meta::Class
2836 - some small changes to support the new
2838 - some small additions to support Roles
2840 * Moose::Meta::Attribute
2841 - some improvements to the accessor generation code
2843 - some small changes to support the new
2845 - (still somewhat) experimental delegation support
2846 with the 'handles' option
2847 - added several tests for this
2848 - no docs for this yet
2850 0.05 Thurs. April 27, 2006
2852 - keywords are now exported with Sub::Exporter
2853 thanks to chansen for this commit
2854 - has keyword now takes a 'metaclass' option
2855 to support custom attribute meta-classes
2856 on a per-attribute basis
2857 - added tests for this
2858 - the 'has' keyword not accepts inherited slot
2859 specifications (has '+foo'). This is still an
2860 experimental feature and probably not finished
2861 see t/038_attribute_inherited_slot_specs.t for
2862 more details, or ask about it on #moose
2863 - added tests for this
2866 - keywords are now exported with Sub::Exporter
2868 * Moose::Utils::TypeConstraints
2869 - reorganized the type constraint hierarchy, thanks
2870 to nothingmuch and chansen for his help and advice
2872 - added some tests for this
2873 - keywords are now exported with Sub::Exporter
2874 thanks to chansen for this commit
2876 * Moose::Meta::Class
2877 - due to changes in Class::MOP, we had to change
2878 construct_instance (for the better)
2880 * Moose::Meta::Attribute
2881 - due to changes in Class::MOP, we had to add the
2882 initialize_instance_slot method (it's a good thing)
2884 * Moose::Meta::TypeConstraint
2885 - added type constraint unions
2886 - added tests for this
2887 - added the is_subtype_of predicate method
2888 - added tests for this
2890 0.04 Sun. April 16th, 2006
2892 - Roles can now consume other roles
2893 - added tests for this
2894 - Roles can specify required methods now with
2895 the requires() keyword
2896 - added tests for this
2899 - ripped out much of it's guts ,.. much cleaner now
2900 - added required methods and correct handling of
2901 them in apply() for both classes and roles
2902 - added tests for this
2903 - no longer adds a does() method to consuming classes
2904 it relys on the one in Moose::Object
2905 - added roles attribute and some methods to support
2906 roles consuming roles
2908 * Moose::Meta::Attribute
2909 - added support for triggers on attributes
2910 - added tests for this
2911 - added support for does option on an attribute
2912 - added tests for this
2914 * Moose::Meta::Class
2915 - added support for attribute triggers in the
2917 - added tests for this
2920 - Moose no longer creates a subtype for your class
2921 if a subtype of the same name already exists, this
2922 should DWIM in 99.9999% of all cases
2924 * Moose::Util::TypeConstraints
2925 - fixed bug where incorrect subtype conflicts were
2927 - added test for this
2930 - this class can now be extended with 'use base' if
2931 you need it, it properly loads the metaclass class now
2932 - added test for this
2934 0.03_02 Wed. April 12, 2006
2936 - you must now explictly use Moose::Util::TypeConstraints
2937 it no longer gets exported for you automatically
2940 - new() now accepts hash-refs as well as key/value lists
2941 - added does() method to check for Roles
2942 - added tests for this
2944 * Moose::Meta::Class
2945 - added roles attribute along with the add_role() and
2947 - added tests for this
2950 - now adds a does() method to consuming classes
2951 which tests the class's hierarchy for roles
2952 - added tests for this
2954 0.03_01 Mon. April 10, 2006
2956 - added new Role recipe (no content yet, only code)
2959 - added 'with' keyword for Role support
2960 - added test and docs for this
2961 - fixed subtype quoting bug
2962 - added test for this
2966 - added test and docs
2968 * Moose::Util::TypeConstraints
2969 - added the message keyword to add custom
2970 error messages to type constraints
2973 - the meta role to support Moose::Role
2974 - added tests and docs
2976 * Moose::Meta::Class
2977 - moved a number of things from Moose.pm
2978 to here, they should have been here
2981 * Moose::Meta::Attribute
2982 - moved the attribute option macros here
2983 instead of putting them in Moose.pm
2985 * Moose::Meta::TypeConstraint
2986 - added the message attributes and the
2988 - added tests and docs for this
2990 0.03 Thurs. March 30, 2006
2992 - added the Moose::Cookbook with 5 recipes,
2993 describing all the stuff Moose can do.
2996 - fixed an issue with &extends super class loading
2997 it now captures errors and deals with inline
2998 packages correctly (bug found by mst, solution
3000 - added super/override & inner/augment features
3001 - added tests and docs for these
3004 - BUILDALL now takes a reference of the %params
3005 that are passed to &new, and passes that to
3008 * Moose::Util::TypeConstraints
3009 - Type constraints now survive runtime reloading
3010 - added test for this
3012 * Moose::Meta::Class
3013 - fixed the way attribute defaults are handled
3014 during instance construction (bug found by chansen)
3016 * Moose::Meta::Attribute
3017 - read-only attributes now actually enforce their
3018 read-only-ness (this corrected in Class::MOP as
3021 0.02 Tues. March 21, 2006
3023 - many more tests, fixing some bugs and
3025 - &extends now loads the base module with
3027 - added UNIVERSAL::require to the
3030 - each new Moose class will also create
3031 and register a subtype of Object which
3032 correspond to the new Moose class.
3033 - the 'isa' option in &has now only
3034 accepts strings, and will DWIM in
3037 * Moose::Util::TypeConstraints
3038 - added type coercion features
3039 - added tests for this
3040 - added support for this in attributes
3041 and instance construction
3043 - type construction no longer creates a
3044 function, it registers the type instead.
3045 - added several functions to get the
3049 - BUILDALL and DEMOLISHALL were broken
3050 because of a mis-named hash key, Whoops :)
3052 * Moose::Meta::Attribute
3053 - adding support for coercion in the
3054 autogenerated accessors
3056 * Moose::Meta::Class
3057 - adding support for coercion in the
3058 instance construction
3060 * Moose::Meta::TypeConstraint
3061 * Moose::Meta::TypeCoercion
3062 - type constraints and coercions are now
3063 full fledges meta-objects
3065 0.01 Wed. March 15, 2006
3066 - Moooooooooooooooooose!!!