Revert the change that unimported strict & warnings on no Moose(::Role,::Exporter)
[gitmo/Moose.git] / Changes
1 Also see Moose::Manual::Delta for more details of, and workarounds
2 for, noteworthy changes.
3
4   [NEW FEATURES]
5
6   * We no longer unimport strict and warnings when Moose, Moose::Role, or
7     Moose::Exporter are unimported. Doing this was broken if the user
8     explicitly loaded strict and warnings themself, and the results could be
9     generally surprising. We decided that it was best to err on the side of
10     safety and leave these on. Reported by David Wheeler. RT #58310. (Dave
11     Rolsky)
12
13   [BUG FIXES]
14
15   * Accessors will now not be inlined if the instance metaclass isn't
16     inlinable (doy).
17
18 1.08 Tue, Jun 15, 2010
19
20   [ENHANCEMENTS]
21
22   * Refactored a small amount of Moose::Meta::Method::Constructor to allow it
23     to be overridden more easily (doy).
24
25 1.07 Sat, Jun 05, 2010
26
27   [BUG FIXES]
28
29   * Fixed a minor metaclass compatibility fixing bug dealing with immutable
30     classes and non-class metaclass traits (doy, dougdude).
31
32 1.06 Tue, Jun 01, 2010
33
34   [NEW FEATURES]
35
36   * Added '0+' overloading in Moose::Meta::TypeConstraint so that we can
37     more uniformly compare type constraints between 'classic' Moose type
38     constraints and MooseX::Types based type constraints.
39
40 1.05 Thu, May 20, 2010
41
42   [API CHANGES]
43
44   * Packages and modules no longer have methods - this functionality was
45     moved back up into Moose::Meta::Class and Moose::Meta::Role individually
46     (through the Class::MOP::Mixin::HasMethods mixin) (doy).
47
48   * BUILDALL is now called by Moose::Meta::Class::new_object, rather than by
49     Moose::Object::new. (doy)
50
51   [NEW FEATURES]
52
53   * strict and warnings are now unimported when Moose, Moose::Role, or
54     Moose::Exporter are unimported. (doy, Adam Kennedy)
55
56   * Added a 'consumers' method to Moose::Meta::Role for finding all
57     classes/roles which consume the given role. (doy)
58
59   [BUG FIXES]
60
61   * Fix has '+attr' in Roles to explode immediately, rather than when the role
62     is applied to a class (t0m).
63
64   * Fix type constraint validation messages to not include the string 'failed'
65     twice in the same sentence (Florian Ragwitz).
66
67   * New type constraints will default to being unequal, rather than equal
68     (rjbs).
69
70   * The tests no longer check for perl's behavior of clobbering $@, which has
71     been fixed in perl-5.13.1 (Florian Ragwitz).
72
73   * Metaclass compatibility fixing has been completely rewritten, and should
74     be much more robust. (doy)
75
76 1.04 Thu, May 20, 2010
77
78   * This release was broken and has been deleted from CPAN shortly after its
79     upload.
80
81 1.03 Thu, May 06, 2010
82
83   [NEW FEATURES]
84
85   * Allow specifying required versions when setting superclasses or applying
86     roles (Florian Ragwitz).
87
88 1.02 Sat, May 01, 2010
89
90   [BUG FIXES]
91
92   * Stop the natatime method provided by the native Array trait from returning
93     an exhausted iterator when being called with a callback. (Florian Ragwitz)
94
95   * Make Moose::Meta::TypeConstraint::Class correctly reject RegexpRefs.
96     (Florian Ragwitz)
97
98   * Calling is_subtype_of on a Moose::Meta::TypeConstraint::Class with itself or
99     the class the TC represents as an argument incorrectly returned true. This
100     behavior is correct for is_type_of, not is_subtype_of. (Guillermo Roditi)
101
102   * Use File::Temp for temp files created during tests. Previously, files were
103     written to the t/ dir, which could cause problems of the user running the
104     tests did not have write access to that directory.. (Chris Weyl, Ævar
105     Arnfjörð Bjarmason)
106
107   * Pass role arguments along when applying roles to instances. (doy, lsm)
108
109 1.01 Fri, Mar 26, 2010
110
111   [NEW FEATURES]
112
113   * The handles option now also accepts a role type constraint in addition to a
114     plain role name. (Florian Ragwitz)
115
116   [OTHER]
117
118   * Record the Sartak/doy debt properly in Changes (perigrin)
119
120 1.00 Tue, Mar 25, 2010
121
122   [BUG FIXES]
123
124   * Moose::Meta::Attribute::Native::Trait::Code no longer creates reader
125     methods by default. (Florian Ragwitz)
126
127   [DOCUMENTATION]
128
129   * Improve various parts of the documentation and fix many typos.
130     (Dave Rolsky, Mateu Hunter, Graham Knop, Robin V, Jay Hannah, Jesse Luehrs)
131
132   [OTHER]
133
134   * Paid the $10 debt to doy from 0.80 Sat, Jun 6, 2009 (Sartak)
135
136 0.99 Mon, Mar 8, 2010
137
138   [NEW FEATURES]
139
140   * New method find_type_for in Moose::Meta::TypeConstraint::Union, for finding
141     which member of the union a given value validates for. (Cory Watson)
142
143   [BUG FIXES]
144
145   * DEMOLISH methods in mutable subclasses of immutable classes are now called
146     properly (Chia-liang Kao, Jesse Luehrs)
147
148   [NEW DOCUMENTATION]
149
150   * Added Moose::Manual::Support that defines the support, compatiblity, and
151     release policies for Moose. (Chris Prather)
152
153 0.98 Wed, Feb 10, 2010
154
155   [BUG FIXES]
156
157   * An internals change in 0.97 broke role application to an instance in some
158     cases. The bug occurred when two different roles were applied to different
159     instances of the same class. (Rafael Kitover)
160
161
162 0.97 Tue, Feb 9, 2010
163
164   [BUG FIXES]
165
166   * Calling ->reinitialize on a cached anonymous class effectively uncached
167     the metaclass object, causing the metaclass to go out of scope
168     unexpectedly. This could easily happen at a distance by applying a
169     metarole to an anonymous class. (Dave Rolsky).
170
171 0.96 Sat, Feb 6, 2010
172
173   [NEW FEATURES]
174
175   * ScalarRef is now a parameterized type. You can now specify a type
176     constraint for whatever the reference points to. (Closes RT#50857)
177     (Michael G. Schwern, Florian Ragwitz)
178
179   [BUG FIXES]
180
181   * ScalarRef now accepts references to other references. (Closes RT#50934)
182     (Michael G. Schwern)
183
184 0.95 Thu, Feb 4, 2010
185
186   [NEW FEATURES]
187
188   * Moose::Meta::Attribute::Native::Trait::Code now provides execute_method as
189     a delegation option. This allows the code reference to be called as a
190     method on the object. (Florian Ragwitz)
191
192   [ENHANCEMENTS]
193
194   * Moose::Object::does no longer checks the entire inheritance tree, since
195     Moose::Meta::Class::does_role already does this. (doy)
196
197   * Moose::Util::add_method_modifier (and subsequently the sugar functions
198     Moose::before, Moose::after, and Moose::around) can now accept arrayrefs,
199     with the same behavior as lists. Types other than arrayref and regexp
200     result in an error.  (Dylan Hardison)
201
202 0.94 Mon, Jan 18, 2010
203
204   [API CHANGES]
205
206   * Please see the changes listed for 0.93_01 and Moose::Manual::Delta.
207
208   [ENHANCEMENTS]
209
210   * Improved support for anonymous roles by changing various APIs to take
211     Moose::Meta::Role objects as well as role names. This included
212
213   - Moose::Meta::Class->does_role
214   - Moose::Meta::Role->does_role
215   - Moose::Util::does_role
216   - Moose::Util::apply_all_roles
217   - Moose::Util::ensure_all_roles
218   - Moose::Util::search_class_by_role
219
220   Requested by Shawn Moore. Addresses RT #51143 (and then some). (Dave Rolsky)
221
222   [BUG FIXES]
223
224   * Fix handling of non-alphanumeric attributes names like '@foo'. This should
225     work as long as the accessor method names are explicitly set to valid Perl
226     method names. Reported by Doug Treder. RT #53731. (Dave Rolsky)
227
228
229 0.93_03 Tue, Jan 5, 2010
230
231   [BUG FIXES]
232
233   * Portability fixes to our XS code so we compile with 5.8.8 and Visual
234     C++. Fixes RT #53391. Reported by Taro Nishino. (rafl)
235
236
237 0.93_02 Tue, Jan 5, 2010
238
239  [BUG FIXES]
240
241   * Depend on Class::MOP 0.97_01 so we can get useful results from CPAN
242     testers. (Dave Rolsky)
243
244
245 0.93_01 Mon, Jan 4, 2010
246
247   [API CHANGES]
248
249   See Moose::Manual::Delta for more details on backwards compatiblity issues.
250
251   * Role attributes are now objects of the Moose::Meta::Role::Attribute
252     class. (Dave Rolsky).
253
254   * There were major changes to how metaroles are applied. We now distinguish
255     between metaroles for classes vs those for roles. See the
256     Moose::Util::MetaRole docs for details. (Dave Rolsky)
257
258   * The old MetaRole API has been deprecated, but will continue to
259     work. However, if you are applying an attribute metaclass role, this may
260     break because of the fact that roles now have an attribute metaclass
261     too. (Dave Rolsky)
262
263   * Moose::Util::MetaRole::apply_metaclass_roles is now called
264     apply_metaroles. The old name is deprecated. Dave Rolsky>
265
266   * The unimport subs created by Moose::Exporter now clean up re-exported
267     functions like blessed and confess, unless the caller imported them from
268     somewhere else too. See Moose::Manua::Delta for backcompat details. (rafl)
269
270   [ENHANCEMENTS AND BUG FIXES]
271
272   * Changed the Str constraint to accept magic lvalue strings like one gets from
273     substr et al, again. (sorear)
274
275   * Sped up the type constraint parsing regex. (Sam Vilain)
276
277   * The Moose::Cookbook::Extending::Recipe2 recipe was broken. Fix suggested by
278     jrey.
279
280   * Added Moose::Util::TypeConstraints exports when using oose.pm to allow
281     easier testing of TypeConstraints from the command line. (perigrin)
282
283   * Added a with_immutable test function to Test::Moose, to run a block of tests
284     with and without certain classes being immutable. (doy)
285
286   * We now use Module::Install extensions explicitly to avoid confusing errors
287     if they're not installed. We use Module::Install::AuthorRequires to stop
288     test extraction and general failures if you don't have the author side
289     dependencies installed.
290
291   * Fixed a grammar error in Moose::Cookbook::Basics::Recipe4. rt.cpan.org
292     #51791. (Amir E. Aharoni)
293
294
295 0.93 Thu, Nov 19, 2009
296     * Moose::Object
297       - Calling $object->new() is no longer deprecated, and no longer
298         warns. (doy)
299
300     * Moose::Meta::Role
301       - The get_attribute_map method is now deprecated. (Dave Rolsky)
302
303     * Moose::Meta::Method::Delegation
304       - Preserve variable aliasing in @_ for delegated methods, so that
305         altering @_ affects the passed value. (doy)
306
307     * Moose::Util::TypeConstraints
308       - Allow array refs for non-anonymous form of enum and duck_type, not
309         just anonymous. The non-arrayref forms may be removed in the
310         future. (doy)
311       - Changed Str constraint to not accept globs (*STDIN or *FOO). (chansen)
312       - Properly document Int being a subtype of Str. (doy)
313
314     * Moose::Exporter
315       - Moose::Exporter using modules can now export their functions to the
316         main package. This applied to Moose and Moose::Role, among
317         others. (nothingmuch)
318
319     * Moose::Meta::Attribute
320       - Don't remove attribute accessors we never installed, during
321         remove_accessors. (doy)
322
323     * Moose::Meta::Attribute::Native::Trait::Array
324       - Don't bypass prototype checking when calling List::Util::first, to
325         avoid a segfault when it is called with a non-code argument. (doy)
326
327     * Moose::Meta::Attribute::Native::Trait::Code
328       - Fix passing arguments to code execute helpers. (doy)
329
330 0.92 Tue, Sep 22, 2009
331     * Moose::Util::TypeConstraints
332       - added the match_on_type operator (Stevan)
333         - added tests and docs for this (Stevan)
334
335     * Moose::Meta::Class
336       - Metaclass compat fixing should already happen recursively, there's no
337         need to explicitly walk up the inheritance tree. (doy)
338
339     * Moose::Meta::Attribute
340       - Add tests for set_raw_value and get_raw_value. (nothingmuch)
341
342 0.91 Thu, Sep 17, 2009
343     * Moose::Object
344       - Don't import any functions, in order to avoid polluting our namespace
345         with things that can look like methods (blessed, try, etc)
346         (nothingmuch)
347
348     * Moose::Meta::Method::Constructor
349       - The generated code needs to called Scalar::Util::blessed by its
350         fully-qualified name or else Perl can interpret the call to blessed as
351         an indirect method call. This broke Search::GIN, which in turn broke
352         KiokuDB. (nothingmuch)
353
354 0.90 Tue, Sep 15, 2009
355     * Moose::Meta::Attribute::Native::Trait::Counter
356     * Moose::Meta::Attribute::Native::Trait::String
357       - For these two traits, an attribute which did not explicitly provide
358         methods to handles magically ended up delegating *all* the helper
359         methods. This has been removed. You must be explicit in your handles
360         declaration for all Native Traits. (Dave Rolsky)
361
362     * Moose::Object
363       - DEMOLISHALL behavior has changed. If any DEMOLISH method dies, we make
364         sure to rethrow its error message. However, we also localize $@ before
365         this so that if all the DEMOLISH methods success, the value of $@ will
366         be preserved. (nothingmuch and Dave Rolsky)
367       - We now also localize $? during object destruction. (nothingmuch and
368         Dave Rolsky)
369       - The handling of DEMOLISH methods was broken for immutablized classes,
370         which were not receiving the value of
371         Devel::GlobalDestruction::in_global_destruction.
372       - These two fixes address some of RT #48271, reported by Zefram.
373       - This is all now documented in Moose::Manual::Construction.
374       - Calling $object->new() is now deprecated. A warning will be
375         issued. (perigrin)
376
377     * Moose::Meta::Role
378       - Added more hooks to customize how roles are applied. The role
379         summation class, used to create composite roles, can now be changed
380         and/or have meta-roles applied to it. (rafl)
381       - The get_method_list method no longer explicitly excludes the "meta"
382         method. This was a hack that has been replaced by better hacks. (Dave
383         Rolsky)
384
385     * Moose::Meta::Method::Delegation
386       - fixed delegated methods to make sure that any modifiers attached to
387         the accessor being delegated on will be called (Stevan)
388         - added tests for this (Stevan)
389
390     * Moose::Meta::Class
391       - Moose no longer warns when a class that is being made immutable has
392         mutable ancestors. While in theory this is a good thing to warn about,
393         we found so many exceptions to this that doing this properly became
394         quite problematic.
395
396 0.89_02 Thu, Sep 10, 2009
397     * Moose::Meta::Attribute::Native
398       - Fix Hash, which still had 'empty' instead of 'is_empty'. (hdp)
399
400     * Moose::Meta::Attribute::Native::Trait::Array
401       - Added a number of functions from List::Util and List::MoreUtils,
402         including reduce, shuffle, uniq, and natatime. (doy)
403
404     * Moose::Exporter
405       - This module will now generate an init_meta method for your exporting
406         class if you pass it options for
407         Moose::Util::MetaRole::apply_metaclass_roles or
408         apply_base_class_roles. This eliminates a lot of repetitive
409         boilerplate for typical MooseX modules. (doy).
410       - Documented the with_meta feature, which is a replacement for
411         with_caller. This feature was added by josh a while ago.
412       - The with_caller feature is now deprecated, but will not issue a
413         warning yet. (Dave Rolsky)
414       - If you try to wrap/export a subroutine which doesn't actually exist,
415         Moose::Exporter will warn you about this. (doy)
416
417     * Moose::Meta::Role::Application::ToRole
418       - When a role aliased a method from another role, it was only getting
419         the new (aliased) name, not the original name. This differed from what
420         happens when a class aliases a role's methods. If you _only_ want the
421         aliased name, make sure to also exclue the original name. (Dave
422         Rolsky)
423
424 0.89_01 Wed Sep 2, 2009
425     * Moose::Meta::Attribute
426       - Added the currying syntax for delegation from AttributeHelpers to the
427         existing delegation API. (hdp)
428
429     * Moose::Meta::Attribute::Native
430       - We have merged the functionality of MooseX::AttributeHelpers into the
431         Moose core with some API tweaks. You can continue to use
432         MooseX::AttributeHelpers, but it will not be maintained except
433         (perhaps) for critical bug fixes in the future. See
434         Moose::Manual::Delta for details. (hdp, jhannah, rbuels, Sartak,
435         perigrin, doy)
436
437     * Moose::Error::Croak
438     * Moose::Error::Confess
439       - Clarify documentation on how to use different error-throwing
440         modules. (Curtis Jewell)
441
442     * Moose
443       - Correct POD for builder to point to Recipe8, not 9. (gphat)
444
445     * Moose::Exporter
446       - When a nonexistent sub name is passed to as_is, with_caller, or
447         with_meta, throw a warning and skip the exporting, rather than
448         installing a broken sub. (doy)
449
450     * Moose::Meta::Class
451       - Moose now warns if you call C<make_immutable> for a class with mutable
452         ancestors. (doy)
453
454 0.89 Thu Aug 13, 2009
455     * Moose::Manual::Attributes
456       - Clarify "is", include discussion of "bare". (Sartak)
457
458     * Moose::Meta::Role::Method::Conflicting
459     * Moose::Meta::Role::Application::ToClass
460       - For the first set of roles involved in a conflict, report all
461         unresolved method conflicts, not just the first method. Fixes #47210
462         reported by Ovid. (Sartak)
463
464     * Moose::Meta::TypeConstraint
465       - Add assert_valid method to use a TypeConstraint for assertion (rjbs)
466
467     * Moose::Exporter
468       - Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
469         does. (doy)
470       - Allow specifying role options (alias, excludes, MXRP stuff) in the
471         arrayref passed to "use Moose -traits" (doy)
472
473     * Moose::Util
474       - Add functions meta_class_alias and meta_attribute_alias for creating
475         aliases for class and attribute metaclasses and metatraits. (doy)
476
477     * Moose::Meta::Attribute
478     * Moose::Meta::Method::Accessor
479       - A trigger now receives the old value as a second argument, if the
480         attribute had one. (Dave Rolsky)
481
482     * Moose::Meta::Method::Constructor
483       - Fix a bug with $obj->new when $obj has stringify overloading.
484         Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
485         - However, we will probably deprecate $obj->new, so please don't start
486           using it for new code!
487
488     * Moose::Meta::Role::Application
489     * Moose::Meta::Role::Application::RoleSummation
490       - Rename alias and excludes to -alias and -excludes (but keep the old
491         names for now, for backcompat) (doy)
492
493 0.88 Fri Jul 24, 2009
494     * Moose::Manual::Contributing
495       - Re-write the Moose::Manual::Contributing document to reflect
496         the new layout and methods of work for the Git repository. All
497         work now should be done in topic branches and reviewed by a
498         core committer before being applied to master. All releases
499         are done by a cabal member and merged from master to
500         stable. This plan was devised by Yuval, blame him. (perigrin)
501
502     * Moose::Meta::Role
503       - Create metaclass attributes for the different role application
504         classes.  (rafl)
505
506     * Moose::Util::MetaRole
507       - Allow applying roles to a meta role's role application
508         classes. (rafl)
509
510     * Moose::Meta::Attribute
511       - Add weak_ref to allowed options for "has '+foo'" (mst)
512
513     * Moose::Meta::Method::Accessor
514       - No longer uses inline_slot_access in accessors, to support
515         non-lvalue-based meta instances. (sorear)
516
517 0.87 Tue Jul 7, 2009
518     * Moose::Meta::Method::Delegation
519       - Once again allow class names as well as objects for
520         delegation. This was changed in 0.86.
521
522 0.86 Fri Jul 3, 2009
523     * Moose::Meta::Class::Immutable::Trait
524       - Fixes to work with the latest Class::MOP.
525
526     * Moose::Meta::Method::Delegation
527       - Delegation now dies with a more useful error message if the
528         attribute's accessor returns something defined but
529         unblessed. (hdp)
530
531 0.85 Fri, Jun 26, 2009
532     * Moose::Meta::Attribute
533       - The warning for 'no associated methods' is now split out into
534         the _check_associated_methods method, so that extensions can
535         safely call 'after install_accessors => ...'. This fixes a
536         warning from MooseX::AttributeHelpers. (hdp)
537
538 0.84 Fri, Jun 26, 2009
539     * Moose::Role
540       - has now sets definition_context for attributes defined in
541         roles. (doy)
542
543     * Moose::Meta::Attribute
544       - When adding an attribute to a metaclass, if the attribute has
545         no associated methods, it will give a deprecation
546         warning. (hdp)
547       - Methods generated by delegation were not being added to
548         associated_methods. (hdp)
549       - Attribute accessors (reader, writer, accessor, predicate,
550         clearer) now warn if they overwrite an existing method. (doy)
551       - Attribute constructors now warn very noisily about unknown (or
552         misspelled) arguments
553
554     * Moose::Util::TypeConstraints
555       - Deprecated the totally useless Role type name, which just
556         checked if $object->can('does'). Note that this is _not_ the
557         same as a type created by calling role_type('RoleName').
558
559     * Moose::Util::TypeConstraints
560     * Moose::Meta::TypeConstraint::DuckType
561       - Reify duck type from a regular subtype into an actual class
562         (Sartak)
563         - Document this because Sartak did all my work for me
564           (perigrin)
565
566     * Moose::Meta::Attribute
567       - Allow Moose::Meta::TypeConstraint::DuckType in handles, since
568         it is just a list of methods (Sartak)
569
570     * Moose::Meta::Role
571       - The get_*_method_modifiers methods would die if the role had
572         no modifiers of the given type (Robert Buels).
573
574 0.83 Tue, Jun 23, 2009
575     * Moose::Meta::Class
576       - Fix _construct_instance not setting the special __MOP__ object
577         key in instances of anon classes. (doy)
578
579 0.82 Sun, Jun 21, 2009
580     * Moose::Manual::Types
581       - Mention MooseX::Types early to avoid users falling down the
582         string parsing rathole (mst)
583
584     * Moose::Manual::MooseX
585       - Add warnings about class-level extensions and mention considering
586         using plain objects instead
587
588 0.81 Sun, Jun 7, 2009
589     * Bumped our Class::MOP prereq to the latest version (0.85), since
590       that's what we need.
591
592 0.80 Sat, Jun 6, 2009
593     * Moose::Manual::FAQ
594       - Add FAQ about the coercion change from 0.76 because it came up
595         three times today (perigrin)
596         - Win doy $10 dollars because Sartak didn't think anybody
597           would document this fast enough (perigrin)
598
599     * Moose::Meta::Method::Destructor
600       - Inline a DESTROY method even if there are no DEMOLISH methods
601         to prevent unnecessary introspection in
602         Moose::Object::DEMOLISHALL
603
604     * Moose::*
605       - A role's required methods are now represented by
606         Moose::Meta::Role::Method::Required objects. Conflicts are now
607         represented by Moose::Meta::Role::Method::Conflicting
608         objects. The benefit for end-users in that unresolved
609         conflicts generate different, more instructive, errors,
610         resolving Ovid's #44895. (Sartak)
611
612     * Moose::Role
613       - Improve the error message of "extends" as suggested by Adam
614         Kennedy and confound (Sartak)
615       - Link to Moose::Manual::Roles from Moose::Role as we now have
616         excellent documentation (Adam Kennedy)
617
618     * Tests
619       - Update test suite for subname change in Class::MOP
620         (nothingmuch)
621       - Add TODO test for infinite recursion in Moose::Meta::Class
622         (groditi)
623
624 0.79 Wed, May 13, 2009
625     * Tests
626       - More fixes for Win32 problems. Reported by Robert Krimen.
627
628     * Moose::Object
629       - The DEMOLISHALL method could still blow up in some cases
630         during global destruction. This method has been made more
631         resilient in the face of global destruction's random garbage
632         collection order.
633
634     * Moose::Exporter
635       - If you "also" a module that isn't loaded, the error message
636         now acknowledges that (Sartak)
637
638     * Moose
639       - When your ->meta method does not return a Moose::Meta::Class,
640         the error message gave the wrong output (Sartak)
641
642 0.78 Tue, May 12, 2009
643     * Moose::Cookbook::FAQ and Moose::Cookbook::WTF
644       - Merged these documents into what is now Moose::Manual::FAQ
645
646     * Moose::Unsweetened
647       - Moved to Moose::Manual::Unsweetened
648
649     * Moose::Cookbook::Basics::Recipes 9-12
650       - Renamed to be 8-11, since recipe 8 did not exist
651
652     * Moose::Exporter
653       - Make Moose::Exporter import strict and warnings into packages
654         that use it (doy)
655
656     * Moose::Object
657       - Fix DEMOLISHALL sometimes not being able to find DEMOLISH
658         methods during global destruction (doy)
659
660     * Moose::Meta::Class
661     * Moose::Meta::Role::Application::ToClass
662       - Track the Role::Application objects created during class-role
663         consumption (Sartak)
664
665     * Moose::Meta::Class
666       - Fix metaclass incompatibility errors when extending a vanilla perl
667         class which isa Moose class with a metaclass role applied (t0m)
668
669     * Moose::Meta::Role
670       - Add a role-combination hook, _role_for_combination, for the
671         benefit of MooseX::Role::Parameterized (Sartak)
672
673     * Tests
674       - Some tests were failing on Win32 because they explicit checked
675         warning output for newlines. Reported by Nickolay Platonov.
676
677 0.77 Sat, May 2, 2009
678     * Moose::Meta::Role
679       - Add explicit use of Devel::GlobalDestruction and Sub::Name
680         (perigrin)
681
682     * Moose::Object
683       - Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
684         or not we are currently in global destruction (doy)
685       - Add explicit use of Devel::GlobalDestruction and Sub::Name
686         (perigrin)
687
688     * Moose::Cookbook::FAQ
689       - Reworked much of the existing content to be more useful to
690         modern Moose hackers (Sartak)
691
692     * Makefile.PL
693       - Depend on Class::MOP 0.83 instead of 0.82_01.
694
695 0.76 Mon, April 27, 2009
696     * Moose::Meta::TypeConstraint
697       - Do not run coercions in coerce() if the value already passes the type
698         constraint (hdp)
699
700     * Moose::Meta::TypeConstraint::Class
701       - In validation error messages, specifically say that the value is not
702         an instance of the class. This should alleviate some frustrating
703         forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
704
705     * Moose::Meta::Role::Application::ToClass
706       - Revert the class-overrides-role warning in favor of a solution outside
707         of the Moose core (Sartak)
708
709     * Tests
710       - Make Test::Output optional again, since it's only used in a few files
711         (Sartak)
712
713 0.75_01 Thu, April 23, 2009
714     * Moose::Meta::Role::Application::ToClass
715       - Moose now warns about each class overriding methods from roles it
716         consumes (Sartak)
717
718     * Tests
719       - Warnings tests have standardized on Test::Output which is now an
720         unconditionally dependency (Sartak)
721
722     * Moose::Meta::Class
723       - Changes to immutabilization to work with Class::MOP 0.82_01+.
724
725 0.75 Mon, April 20, 2009
726     * Moose
727     * Moose::Meta::Class
728       - Move validation of not inheriting from roles from Moose::extends to
729         Moose::Meta::Class::superclasses (doy)
730
731     * Moose::Util
732       - add ensure_all_roles() function to encapsulate the common "apply this
733         role unless the object already does it" pattern (hdp)
734
735     * Moose::Exporter
736       - Users can now select a different metaclass with the "-metaclass"
737         option to import, for classes and roles (Sartak)
738
739     * Moose::Meta::Role
740       - Make method_metaclass an attr so that it can accept a metarole
741         application.  (jdv)
742
743 0.74 Tue, April 7, 2009
744     * Moose::Meta::Role
745     * Moose::Meta::Method::Destructor
746       - Include stack traces in the deprecation warnings.
747         (Florian Ragwitz)
748
749     * Moose::Meta::Class
750       - Removed the long-deprecated _apply_all_roles method.
751
752     * Moose::Meta::TypeConstraint
753       - Removed the long-deprecated union method.
754
755
756 0.73_02 Mon, April 6, 2009
757     * More deprecations and renamings
758       - Moose::Meta::Method::Constructor
759         - initialize_body => _initialize_body (this is always called
760           when an object is constructed)
761
762     * Moose::Object
763       - The DEMOLISHALL method could throw an exception during global
764         destruction, meaning that your class's DEMOLISH methods would
765         not be properly called. Reported by t0m.
766
767     * Moose::Meta::Method::Destructor
768       - Destructor inlining was totally broken by the change to the
769         is_needed method in 0.72_01. Now there is a test for this
770         feature, and it works again.
771
772     * Moose::Util
773       - Bold the word 'not' in the POD for find_meta (t0m)
774
775 0.73_01 Sun, April 5, 2009
776     * Moose::*
777       - Call user_class->meta in fewer places, with the eventual goal
778         of allowing the user to rename or exclude ->meta
779         altogether. Instead uses Class::MOP::class_of. (Sartak)
780
781     * Moose::Meta::Method::Accessor
782       - If an attribute had a lazy default, and that value did not
783         pass the attribute's type constraint, it did not get the
784         message from the type constraint, instead using a generic
785         message. Test provided by perigrin.
786
787     * Moose::Util::TypeConstraints
788       - Add duck_type keyword. It's sugar over making sure an object
789         can() a list of methods. This is easier than jrockway's
790         suggestion to fork all of CPAN. (perigrin)
791         - add tests and documentation (perigrin)
792
793     * Moose
794       - Document the fact that init_meta() returns the target class's
795         metaclass object. (hdp)
796
797     * Moose::Cookbook::Extending::Recipe1
798     * Moose::Cookbook::Extending::Recipe2
799     * Moose::Cookbook::Extending::Recipe3
800     * Moose::Cookbook::Extending::Recipe4
801       - Make init_meta() examples explicitly return the metaclass and
802         point out this fact. (hdp)
803
804     * Moose::Cookbook::Basics::Recipe12
805       - A new recipe, creating a custom meta-method class.
806
807     * Moose::Cookbook::Meta::Recipe6
808       - A new recipe, creating a custom meta-method class.
809
810     * Moose::Meta::Class
811     * Moose::Meta::Method::Constructor
812       - Attribute triggers no longer receive the meta-attribute object
813         as an argument in any circumstance. Previously, triggers
814         called during instance construction were passed the
815         meta-attribute, but triggers called by normal accessors were
816         not. Fixes RT#44429, reported by Mark Swayne. (hdp)
817
818     * Moose::Manual::Attributes
819       - Remove references to triggers receving the meta-attribute object as an
820         argument. (hdp)
821
822     * Moose::Cookbook::FAQ
823       - Remove recommendation for deprecated Moose::Policy and
824         Moose::Policy::FollowPBP; recommend MooseX::FollowPBP
825         instead. (hdp)
826
827     * Many methods have been renamed with a leading underscore, and a
828       few have been deprecated entirely. The methods with a leading
829       underscore are consider "internals only". People writing
830       subclasses or extensions to Moose should feel free to override
831       them, but they are not for "public" use.
832
833       - Moose::Meta::Class
834         - check_metaclass_compatibility => _check_metaclass_compatibility
835
836       - Moose::Meta::Method::Accessor
837         - initialize_body => _initialize_body (this is always called
838           when an object is constructed)
839         - /(generate_.*_method(?:_inline)?)/ => '_' . $1
840
841       - Moose::Meta::Method::Constructor
842         - initialize_body => _initialize_body (this is always called
843           when an object is constructed)
844         - /(generate_constructor_method(?:_inline)?)/ => '_' . $1
845         - attributes => _attributes (now inherited from parent)
846         - meta_instance => _meta_instance (now inherited from parent)
847
848       - Moose::Meta::Role
849         - alias_method is deprecated. Use add_method
850
851 0.73 Fri, March 29, 2009
852     * No changes from 0.72_01.
853
854 0.72_01 Thu, March 26, 2009
855     * Everything
856       - Almost every module has complete API documentation. A few
857         methods (and even whole classes) have been intentionally
858         excluded pending some rethinking of their APIs.
859
860     * Moose::Util::TypeConstraints
861       - Calling subtype with a name as the only argument is now an
862         exception. If you want an anonymous subtype do:
863
864          my $subtype = subtype as 'Foo';
865
866     * Moose::Cookbook::Meta::Recipe7
867       - A new recipe, creating a custom meta-instance class.
868
869     * Moose::Cookbook::Basics::Recipe5
870       - Fix various typos and mistakes. Includes a patch from Radu
871         Greab.
872
873     * Moose::Cookbook::Basics::Recipe9
874       - Link to this recipe from Moose.pm's builder blurb
875
876     * Moose::Exporter
877       - When wrapping a function with a prototype, Moose::Exporter now
878         makes sure the wrapped function still has the same
879         prototype. (Daisuke Maki)
880
881     * Moose::Meta::Attribute
882       - Allow a subclass to set lazy_build for an inherited
883         attribute. (hdp)
884
885     * Makefile.PL
886       - Explicitly depend on Data::OptList. We already had this dependency
887         via Sub::Exporter, but since we're using it directly we're
888         better off with it listed. (Sartak)
889
890     * Moose::Meta::Method::Constructor
891       - Make it easier to subclass the inlining behaviour. (Ash
892         Berlin)
893
894     * Moose::Manual::Delta
895       - Details significant changes in the history of Moose, along
896         with recommended workarounds.
897
898     * Moose::Manual::Contributing
899       - Contributor's guide to Moose.
900
901     * Moose::Meta::Method::Constructor
902       - The long-deprecated intialize_body method has been removed
903         (yes, spelled like that).
904
905     * Moose::Meta::Method::Destructor
906       - This is_needed method is now always a class method.
907
908     * Moose::Meta::Class
909       - Changes to the internals of how make_immutable works to match
910         changes in latest Class::MOP.
911
912 0.72 Mon, February 23, 2009
913     * Moose::Object
914     * Moose::Meta::Method::Constructor
915       - A mutable class accepted Foo->new(undef) without complaint,
916         while an immutable class would blow up with an unhelpful
917         error. Now, in both cases we throw a helpful error
918         instead. Reported by doy.
919
920 0.71_01 Sun, February 22, 2009
921     * Moose::Cookbook
922       - Hopefully fixed some POD errors in a few recipes that caused
923         them to display weird on search.cpan.org.
924
925     * Moose::Util::TypeConstraints
926       - Calling type or subtype without the sugar helpers (as, where,
927         message) is now deprecated.
928       - The subtype function tried hard to guess what you meant, but
929         often got it wrong. For example:
930
931          my $subtype = subtype as 'ArrayRef[Object]';
932
933         This caused an error in the past, but now works as you'd
934         expect.
935
936     * Everywhere
937       - Make sure Moose.pm is loaded before calling
938         Moose->throw_error. This wasn't normally an issue, but could
939         bite you in weird cases.
940
941 0.71 Thu, February 19, 2009
942     * Moose::Cookbook::Basics::Recipe11
943       - A new recipe which demonstrates the use of BUILDARGS and
944         BUILD. (Dave Rolsky)
945
946     * Moose::Cookbook::Roles::Recipe3
947       - A new recipe, applying a role to an object instance. (Dave
948         Rolsky)
949
950     * Moose::Exporter
951       - Allow overriding specific keywords from "also" packages. (doy)
952
953     * Tests
954       - Replace hardcoded cookbook tests with Test::Inline to ensure
955         the tests match the actual code in the recipes. (Dave Rolsky)
956
957     * Moose::Cookbook
958       - Working on the above turned up a number of little bugs in the
959         recipe code. (Dave Rolsky)
960
961     * Moose::Util::TypeConstraints::Optimized
962       - Just use Class::MOP for the optimized ClassName check. (Dave
963         Rolsky)
964
965 0.70 Sat, February 14, 2009
966     * Moose::Util::TypeConstraints
967       - Added the RoleName type (stevan)
968         - added tests for this (stevan)
969
970     * Moose::Cookbook::Basics::Recipe3
971       - Updated the before qw[left right] sub to be a little more
972         defensive about what it accepts (stevan)
973         - added more tests to t/000_recipies/basics/003_binary_tree.t
974           (stevan)
975
976     * Moose::Object
977       - We now always call DEMOLISHALL, even if a class does not
978         define DEMOLISH. This makes sure that method modifiers on
979         DEMOLISHALL work as expected. (doy)
980         - added tests for this (EvanCarroll)
981
982     * Moose::Util::MetaRole
983       - Accept roles for the wrapped_method_metaclass (rafl)
984         - added tests for this (rafl)
985
986     * Moose::Meta::Attribute
987       - We no longer pass the meta-attribute object as a final
988         argument to triggers. This actually changed for inlined code a
989         while back, but the non-inlined version and the docs were
990         still out of date.
991
992     * Tests
993       - Some tests tried to use Test::Warn 0.10, which had bugs. Now
994         they require 0.11. (Dave Rolsky)
995
996     * Documentation
997       - Lots of small changes to the manual, cookbook, and
998         elsewhere. These were based on feedback from various
999         users, too many to list here. (Dave Rolsky)
1000
1001 0.69 Thu, February 12, 2009
1002     * Moose
1003       - Make some keyword errors use throw_error instead of croak
1004         since Moose::Exporter wraps keywords now (Sartak)
1005
1006     * Moose::Cookbook::*
1007       - Revised every recipe for style and clarity. Also moved some
1008         documentation out of cookbook recipes and into Moose::Manual
1009         pages. This work was funded as part of the Moose docs grant
1010         from TPF. (Dave Rolsky)
1011
1012     * Moose::Meta::Method::Delegation
1013       - If the attribute doing the delegation was not populated, the
1014         error message did not specify the attribute name
1015         properly. (doy)
1016
1017 0.68 Wed, February 4, 2009
1018     * POD
1019       - Many spelling, typo, and formatting fixes by daxim.
1020
1021     * Moose::Manual::Attributes
1022       - The NAME section in the POD used "Attribute" so search.cpan
1023         didn't resolve links from other documents properly.
1024
1025     * Moose::Meta::Method::Overriden
1026       - Now properly spelled as Overridden. Thanks to daxim for
1027         noticing this.
1028
1029 0.67 Tue, February 3, 2009
1030     * Moose::Manual::*
1031       - Lots of little typo fixes and a few clarifications. Several
1032         pages didn't have proper titles, and so weren't actually
1033         visible on search.cpan.org. Thanks to hanekomu for a variety
1034         of fixes and formatting improvements.
1035
1036 0.66 Tue, February 3, 2009
1037     * Moose::Manual
1038       - This is a brand new, extensive manual for Moose. This aims to
1039         provide a complete introduction to all of Moose's
1040         features. This work was funded as part of the Moose docs grant
1041         from TPF. (Dave Rolsky)
1042
1043     * Moose::Meta::Attribute
1044       - Added a delegation_metaclass method to replace a hard-coded
1045         use of Moose::Meta::Method::Delegation. (Dave Rolsky)
1046
1047     * Moose::Util::TypeConstraints
1048       - If you created a subtype and passed a parent that Moose didn't
1049         know about, it simply ignored the parent. Now it automatically
1050         creates the parent as a class type. This may not be what you
1051         want, but is less broken than before. (Dave Rolsky)
1052
1053     * Moose::Util::TypeConstraints
1054       - This module tried throw errors by calling Moose->throw_error,
1055         but it did not ensure that Moose was loaded first. This could
1056         cause very unhelpful errors when it tried to throw an error
1057         before Moose was loaded. (Dave Rolsky)
1058
1059     * Moose::Util::TypeConstraints
1060       - You could declare a name with subtype such as "Foo!Bar" that
1061         would be allowed, but if you used it in a parameterized type
1062         such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
1063         vetting on names created via the sugar functions, so that they
1064         can only contain alphanumerics, ":", and ".". (Dave Rolsky)
1065
1066 0.65 Thu, January 22, 2008
1067     * Moose and Moose::Meta::Method::Overridden
1068       - If an overridden method called super(), and then the
1069         superclass's method (not overridden) _also_ called super(),
1070         Moose went into an endless recursion loop. Test provided by
1071         Chris Prather. (Dave Rolsky)
1072
1073     * Moose::Meta::TypeConstraint
1074       - All methods are now documented. (gphat)
1075
1076     * t/100_bugs/011_DEMOLISH_eats_exceptions.t
1077       - Fixed some bogus failures that occurred because we tried to
1078         validate filesystem paths in a very ad-hoc and
1079         not-quite-correct way. (Dave Rolsky)
1080
1081     * Moose::Util::TypeConstraints
1082       - Added maybe_type to exports. See docs for details. (rjbs)
1083
1084     * Moose
1085       - Added Moose::Util::TypeConstraints to the SEE ALSO
1086         section. (pjf)
1087
1088     * Moose::Role
1089       - Methods created via an attribute can now fulfill a "requires"
1090         declaration for a role. (nothingmuch)
1091
1092     * Moose::Meta::Method::*
1093       - Stack traces from inlined code will now report its line and
1094         file as being in your class, as opposed to in Moose
1095         guts. (nothingmuch).
1096
1097 0.64 Wed, December 31, 2008
1098     * Moose::Meta::Method::Accessor
1099       - Always inline predicate and clearer methods (Sartak)
1100
1101     * Moose::Meta::Attribute
1102       - Support for parameterized traits (Sartak)
1103       - verify_against_type_constraint method to avoid duplication
1104         and enhance extensibility (Sartak)
1105
1106     * Moose::Meta::Class
1107       - Tests (but no support yet) for parameterized traits (Sartak)
1108
1109     * Moose
1110       - Require Class::MOP 0.75+, which has the side effect of making
1111         sure we work on Win32. (Dave Rolsky)
1112
1113 0.63 Mon, December 8, 2008
1114     * Moose::Unsweetened
1115       - Some small grammar tweaks and bug fixes in non-Moose example
1116         code. (Dave Rolsky)
1117
1118 0.62_02 Fri, December 5, 2008
1119     * Moose::Meta::Role::Application::ToClass
1120       - When a class does not provide all of a role's required
1121         methods, the error thrown now mentions all of the missing
1122         methods, as opposed to just the first one found. Requested by
1123         Curtis Poe (RT #41119). (Dave Rolsky)
1124
1125     * Moose::Meta::Method::Constructor
1126       - Moose will no longer inline a constructor for your class
1127         unless it inherits its constructor from Moose::Object, and
1128         will warn when it doesn't inline. If you want to force
1129         inlining anyway, pass "replace_constructor => 1" to
1130         make_immutable. Addresses RT #40968, reported by Jon
1131         Swartz. (Dave Rolsky)
1132       - The quoting of default values could be broken if the default
1133         contained a single quote ('). Now we use quotemeta to escape
1134         anything potentially dangerous in the defaults. (Dave Rolsky)
1135
1136 0.62_01 Wed, December 3, 2008
1137     * Moose::Object
1138       - use the method->execute API for BUILDALL
1139         and DEMOLISHALL (Sartak)
1140
1141     * Moose::Util::TypeConstraints
1142       - We now make all the type constraint meta classes immutable
1143         before creating the default types provided by Moose. This
1144         should make loading Moose a little faster. (Dave Rolsky)
1145
1146 0.62 Wed November 26, 2008
1147     * Moose::Meta::Role::Application::ToClass
1148       Moose::Meta::Role::Application::ToRole
1149       - fixed issues where excluding and aliasing the
1150         same methods for a single role did not work
1151         right (worked just fine with multiple
1152         roles) (stevan)
1153         - added test for this (stevan)
1154
1155     * Moose::Meta::Role::Application::RoleSummation
1156       - fixed the error message when trying to compose
1157         a role with a role it excludes (Sartak)
1158
1159     * Moose::Exporter
1160       - Catch another case where recursion caused the value
1161         of $CALLER to be stamped on (t0m)
1162         - added test for this (t0m)
1163
1164     * Moose
1165       - Remove the make_immutable keyword, which has been
1166         deprecated since April. It breaks metaclasses that
1167         use Moose without no Moose (Sartak)
1168
1169     * Moose::Meta::Attribute
1170       - Removing an attribute from a class now also removes delegation
1171         (handles) methods installed for that attribute (t0m)
1172         - added test for this (t0m)
1173
1174     * Moose::Meta::Method::Constructor
1175       - An attribute with a default that looked like a number (but was
1176         really a string) would accidentally be treated as a number
1177         when the constructor was made immutable (perigrin)
1178         - added test for this (perigrin)
1179
1180     * Moose::Meta::Role
1181       - create method for constructing a role
1182         dynamically (Sartak)
1183         - added test for this (Sartak)
1184       - anonymous roles! (Sartak)
1185         - added test for this (Sartak)
1186
1187     * Moose::Role
1188       - more consistent error messages (Sartak)
1189
1190     * Moose::Cookbook::Roles::Recipe1
1191       - attempt to explain why a role that just requires
1192         methods is useful (Sartak)
1193
1194 0.61 Fri November 7, 2008
1195     * Moose::Meta::Attribute
1196       - When passing a role to handles, it will be loaded if necessary
1197         (perigrin)
1198
1199     * Moose::Meta::Class
1200       - Method objects returned by get_method (and other methods)
1201         Could end up being returned without an associated_metaclass
1202         attribute. Removing get_method_map, which is provided by
1203         Class::MOP::Class, fixed this. The Moose version did nothing
1204         different from its parent except introduce a bug. (Dave Rolsky)
1205         - added tests for this (jdv79)
1206
1207     * Various
1208       - Added a $VERSION to all .pm files which didn't have one. Fixes
1209         RT #40049, reported by Adam Kennedy. (Dave Rolsky)
1210
1211     * Moose::Cookbook::Basics::Recipe4
1212     * Moose::Cookbook::Basics::Recipe6
1213       - These files had spaces on the first line of the SYNOPSIS, as
1214         opposed to a totally empty line. According to RT #40432, this
1215         confuses POD parsers. (Dave Rolsky)
1216
1217 0.60 Fri October 24, 2008
1218     * Moose::Exporter
1219       - Passing "-traits" when loading Moose caused the Moose.pm
1220         exports to be broken. Reported by t0m. (Dave Rolsky)
1221         - Tests for this bug. (t0m)
1222
1223     * Moose::Util
1224       - Change resolve_metaclass alias to use the new
1225         load_first_existing_class function. This makes it a lot
1226         simpler, and also around 5 times faster. (t0m)
1227       - Add caching to resolve_metaclass_alias, which gives an order
1228         of magnitude speedup to things which repeatedly call the
1229         Moose::Meta::Attribute->does method, notably MooseX::Storage
1230         (t0m)
1231
1232     * Moose::Util::TypeConstraint
1233       - Put back the changes for parameterized constraints that
1234         shouldn't have been removed in 0.59. We still cannot parse
1235         them, but MooseX modules can create them in some other
1236         way. See the 0.58 changes for more details. (jnapiorkowski)
1237       - Changed the way subtypes are created so that the job is
1238         delegated to a type constraint parent. This clears up some
1239         hardcoded checking and should allow correct subtypes of
1240         Moose::Meta::Type::Constraint. Don't rely on this new API too
1241         much (create_child_type) because it may go away in the
1242         future. (jnapiorkowski)
1243
1244     * Moose::Meta::TypeConstraint::Union
1245       - Type constraint names are sorted as strings, not numbers.
1246         (jnapiorkowski)
1247
1248     * Moose::Meta::TypeConstraint::Parameterizable
1249       - New parameterize method. This can be used as a factory method
1250         to make a new type constraint with a given parameterized
1251         type. (jnapiorkowski)
1252         - added tests (jnapiorkowski)
1253
1254 0.59 Tue October 14, 2008
1255     * Moose
1256       - Add abridged documentation for builder/default/initializer/
1257         predicate, and link to more details sections in
1258         Class::MOP::Attribute. (t0m)
1259
1260     * Moose::Util::TypeConstraints
1261       - removed prototypes from all but the &-based stuff (mst)
1262
1263     * Moose::Util::TypeConstraints
1264       - Creating a anonymous subtype with both a constraint and a
1265         message failed with a very unhelpful error, but should just
1266         work. Reported by t0m. (Dave Rolsky)
1267
1268     * Tests
1269       - Some tests that used Test::Warn if it was available failed
1270         with older versions of Test::Warn. Reported by Fayland. (Dave
1271         Rolsky)
1272       - Test firing behavior of triggers in relation to builder/default/
1273         lazy_build. (t0m)
1274       - Test behavior of equals/is_a_type_of/is_a_subtype_of for all
1275         kinds of supported type. (t0m)
1276
1277     * Moose::Meta::Class
1278       - In create(), do not pass "roles" option to the superclass
1279         - added related test that creates an anon metaclass with
1280           a required attribute
1281
1282     * Moose::Meta::TypeConstraint::Class
1283     * Moose::Meta::TypeConstraint::Role
1284       - Unify behavior of equals/is_a_type_of/is_a_subtype_of with
1285         other types (as per change in 0.55_02). (t0m)
1286
1287     * Moose::Meta::TypeConstraint::Registry
1288       - Fix warning when dealing with unknown type names (t0m)
1289
1290     * Moose::Util::TypeConstraints
1291       - Reverted changes from 0.58 related to handle parameterized
1292         types. This caused random failures on BSD and Win32 systems,
1293         apparently related to the regex engine. This means that Moose
1294         can no longer parse structured type constraints like
1295         ArrayRef[Int,Int] or HashRef[name=>Str]. This will be
1296         supported in a slightly different way via MooseX::Types some
1297         time in the future. (Dave Rolsky)
1298
1299 0.58 Sat September 20, 2008
1300     !! This release has an incompatible change regarding !!
1301     !! how roles add methods to a class !!
1302
1303     * Roles and role application
1304       ! Roles now add methods by calling add_method, not
1305         alias_method. They make sure to always provide a method
1306         object, which will be cloned internally. This means that it is
1307         now possible to track the source of a method provided by a
1308         role, and even follow its history through intermediate roles.
1309
1310         This means that methods added by a role now show up when
1311         looking at a class's method list/map. (Dave Rolsky)
1312
1313     * Makefile.PL
1314       - From this release on, we'll try to maintain a list of
1315         conflicting modules, and warn you if you have one
1316         installed. For example, this release conflicts with ...
1317         - MooseX::Singleton        <= 0.11
1318         - MooseX::Params::Validate <= 0.05
1319         - Fey::ORM                 <= 0.10
1320
1321         In general, we try to not break backwards compatibility for
1322         most Moose users, but MooseX modules and other code which
1323         extends Moose's metaclasses is often affected by very small
1324         changes in the Moose internals.
1325
1326     * Moose::Meta::Method::Delegation
1327     * Moose::Meta::Attribute
1328       - Delegation methods now have their own method class. (Dave
1329         Rolsky)
1330
1331     * Moose::Meta::TypeConstraint::Parameterizable
1332       - Added a new method 'parameterize' which is basically a factory
1333         for the containing constraint. This makes it easier to create
1334         new types of parameterized constraints. (jnapiorkowski)
1335
1336     * Moose::Meta::TypeConstraint::Union
1337       - Changed the way Union types canonicalize their names to follow
1338         the normalized TC naming rules, which means we strip all
1339         whitespace. (jnapiorkowski)
1340
1341     * Moose::Util::TypeConstraints
1342       - Parameter and Union args are now sorted, this makes Int|Str
1343         the same constraint as Str|Int. (jnapiorkowski)
1344       - Changes to the way Union types are parsed to more correctly
1345         stringify their names. (jnapiorkowski)
1346       - When creating a parameterized type, we now use the new
1347         parameterize method. (jnapiorkowski)
1348       - Incoming type constraint strings are now normalized to remove
1349         all whitespace differences. (jnapiorkowski)
1350       - Changed the way we parse type constraint strings so that we now
1351         match TC[Int,Int,...] and TC[name=>Str] as parameterized type
1352         constraints. This lays the foundation for more flexible type
1353         constraint implementations.
1354
1355     * Tests and docs for all the above. (jnapiorkowski)
1356
1357     * Moose::Exporter
1358     * Moose
1359       - Moose::Exporter will no longer remove a subroutine that the
1360         exporting package re-exports. Moose re-exports the
1361         Carp::confess function, among others. The reasoning is that we
1362         cannot know whether you have also explicitly imported those
1363         functions for your own use, so we err on the safe side and
1364         always keep them. (Dave Rolsky)
1365         - added tests for this (rafl)
1366
1367     * Moose::Meta::Class
1368       - Changes to how we fix metaclass compatibility that are much
1369         too complicated to go into. The summary is that Moose is much
1370         less likely to complain about metaclass incompatibility
1371         now. In particular, if two metaclasses differ because
1372         Moose::Util::MetaRole was used on the two corresponding
1373         classes, then the difference in roles is reconciled for the
1374         subclass's metaclass. (Dave Rolsky)
1375       - Squashed an warning in _process_attribute (thepler)
1376
1377     * Moose::Meta::Role
1378       - throw exceptions (sooner) for invalid attribute names (thepler)
1379         - added tests for this (thepler)
1380
1381     * Moose::Util::MetaRole
1382       - If you explicitly set a constructor or destructor class for a
1383         metaclass object, and then applied roles to the metaclass,
1384         that explicitly set class would be lost and replaced with the
1385         default.
1386
1387     * Moose::Meta::Class
1388     * Moose::Meta::Attribute
1389     * Moose::Meta::Method
1390     * Moose
1391     * Moose::Object
1392     * Moose::Error::Default
1393     * Moose::Error::Croak
1394     * Moose::Error::Confess
1395       - All instances of confess() changed to use overridable
1396         C<throw_error> method. This method ultimately calls a class
1397         constructor, and you can change the class being called. In
1398         addition, errors now pass more information than just a string.
1399         The default C<error_class> behaves like C<Carp::confess>, so
1400         the behavior is not visibly different for end users.
1401
1402 0.57 Wed September 3, 2008
1403     * Moose::Intro
1404       - A new bit of doc intended to introduce folks familiar with
1405         "standard" Perl 5 OO to Moose concepts. (Dave Rolsky)
1406
1407     * Moose::Unsweetened
1408       - Shows examples of two classes, each done first with and then
1409         without Moose. This makes a nice parallel to
1410         Moose::Intro. (Dave Rolsky)
1411
1412     * Moose::Util::TypeConstraints
1413       - Fixed a bug in find_or_parse_type_constraint so that it
1414         accepts a Moose::Meta::TypeConstraint object as the parent
1415         type, not just a name (jnapiorkowski)
1416         - added tests (jnapiorkowski)
1417
1418     * Moose::Exporter
1419       - If Sub::Name was not present, unimporting failed to actually
1420         remove some sugar subs, causing test failures (Dave Rolsky)
1421
1422 0.56 Mon September 1, 2008
1423     For those not following the series of dev releases, there are
1424     several major changes in this release of Moose.
1425       ! Moose::init_meta should now be called as a method. See the
1426         docs for details.
1427
1428       - Major performance improvements by nothingmuch.
1429
1430       - New modules for extension writers, Moose::Exporter and
1431         Moose::Util::MetaRole by Dave Rolsky.
1432
1433       - Lots of doc improvements and additions, especially in the
1434         cookbook sections.
1435
1436       - Various bug fixes.
1437
1438     * Removed all references to the experimental-but-no-longer-needed
1439       Moose::Meta::Role::Application::ToMetaclassInstance.
1440
1441     * Require Class::MOP 0.65.
1442
1443 0.55_04 Sat August 30, 2008
1444     * Moose::Util::MetaRole
1445     * Moose::Cookbook::Extending::Recipe2
1446       - This simplifies the application of roles to any meta class, as
1447         well as the base object class. Reimplemented metaclass traits
1448         using this module. (Dave Rolsky)
1449
1450     * Moose::Cookbook::Extending::Recipe1
1451       - This a new recipe, an overview of various ways to write Moose
1452         extensions (Dave Rolsky)
1453
1454     * Moose::Cookbook::Extending::Recipe3
1455     * Moose::Cookbook::Extending::Recipe4
1456       - These used to be Extending::Recipe1 and Extending::Recipe2,
1457         respectively.
1458
1459 0.55_03 Fri August 29, 2008
1460     * No changes from 0.55_02 except increasing the Class::MOP
1461       dependency to 0.64_07.
1462
1463 0.55_02 Fri August 29, 2008
1464     * Makefile.PL and Moose.pm
1465       - explicitly require Perl 5.8.0+ (Dave Rolsky)
1466
1467     * Moose::Util::TypeConstraints
1468       - Fix warnings from find_type_constraint if the type is not
1469         found (t0m).
1470
1471     * Moose::Meta::TypeConstraint
1472       - Predicate methods (equals/is_a_type_of/is_subtype_of) now
1473         return false if the type you specify cannot be found in the
1474         type registry, rather than throwing an unhelpful and
1475         coincidental exception. (t0m).
1476         - added docs & test for this (t0m)
1477
1478     * Moose::Meta::TypeConstraint::Registry
1479       - add_type_constraint now throws an exception if a parameter is
1480         not supplied (t0m).
1481         - added docs & test for this (t0m)
1482
1483     * Moose::Cookbook::FAQ
1484       - Added a faq entry on the difference between "role" and "trait"
1485         (t0m)
1486
1487     * Moose::Meta::Role
1488       - Fixed a bug that caused role composition to not see a required
1489         method when that method was provided by another role being
1490         composed at the same time. (Dave Rolsky)
1491         - test and bug finding (tokuhirom)
1492
1493 0.55_01 Wed August 20, 2008
1494
1495     !! Calling Moose::init_meta as a function is now         !!
1496     !! deprecated. Please see the Moose.pm docs for details. !!
1497
1498     * Moose::Meta::Method::Constructor
1499       - Fix inlined constructor so that values produced by default
1500         or builder methods are coerced as required. (t0m)
1501         - added test for this (t0m)
1502
1503     * Moose::Meta::Attribute
1504       - A lazy attribute with a default or builder did not attempt to
1505         coerce the default value. The immutable code _did_
1506         coerce. (t0m)
1507         - added test for this (t0m)
1508
1509     * Moose::Exporter
1510       - This is a new helper module for writing "Moose-alike"
1511         modules. This should make the lives of MooseX module authors
1512         much easier. (Dave Rolsky)
1513
1514     * Moose
1515     * Moose::Cookbook::Meta::Recipe5
1516       - Implemented metaclass traits (and wrote a recipe for it):
1517
1518           use Moose -traits => 'Foo'
1519
1520         This should make writing small Moose extensions a little
1521         easier (Dave Rolsky)
1522
1523     * Moose::Cookbook::Basics::Recipe1
1524       - Removed any examples of direct hashref access, and applied an
1525         editorial axe to reduce verbosity. (Dave Rolsky)
1526
1527     * Moose::Cookbook::Basics::Recipe1
1528       - Also applied an editorial axe here. (Dave Rolsky)
1529
1530     * Moose
1531     * Moose::Cookbook::Extending::Recipe1
1532     * Moose::Cookbook::Extending::Recipe2
1533       - Rewrote extending and embedding moose documentation and
1534         recipes to use Moose::Exporter (Dave Rolsky)
1535
1536     * Moose
1537     * Moose::Role
1538       - These two modules now warn when you load them from the main
1539         package "main" package, because we will not export sugar to
1540         main. Previously it just did nothing. (Dave Rolsky)
1541
1542     * Moose::Role
1543       - Now provide an init_meta method just like Moose.pm, and you
1544         can call this to provide an alternate role metaclass. (Dave
1545         Rolsky and nothingmuch)
1546       - get_method_map now respects the package cache flag (nothingmuch)
1547
1548     * Moose::Meta::Role
1549       - Two new methods - add_method and wrap_method_body
1550         (nothingmuch)
1551
1552     * many modules
1553       - Optimizations including allowing constructors to accept hash
1554         refs, making many more classes immutable, and making
1555         constructors immutable. (nothingmuch)
1556
1557 0.55 Sun August 3, 2008
1558     * Moose::Meta::Attribute
1559       - breaking down the way 'handles' methods are
1560         created so that the process can be more easily
1561         overridden by subclasses (stevan)
1562
1563     * Moose::Meta::TypeConstraint
1564       - fixing what is passed into a ->message with
1565         the type constraints (RT #37569)
1566         - added tests for this (Charles Alderman)
1567
1568     * Moose::Util::TypeConstraints
1569       - fix coerce to accept anon types like subtype can (mst)
1570
1571     * Moose::Cookbook
1572       - reorganized the recipes into sections - Basics, Roles, Meta,
1573         Extending - and wrote abstracts for each section (Dave Rolsky)
1574
1575     * Moose::Cookbook::Basics::Recipe10
1576       - A new recipe that demonstrates operator overloading
1577         in combination with Moose. (bluefeet)
1578
1579     * Moose::Cookbook::Meta::Recipe1
1580       - an introduction to what meta is and why you'd want to make
1581         your own metaclass extensions (Dave Rolsky)
1582
1583     * Moose::Cookbook::Meta::Recipe4
1584       - a very simple metaclass example (Dave Rolsky)
1585
1586     * Moose::Cookbook::Extending::Recipe1
1587       - how to write a Moose-alike module to use your own object base
1588         class (Dave Rolsky)
1589
1590     * Moose::Cookbook::Extending::Recipe2
1591       - how to write modules with an API just like C<Moose.pm> (Dave
1592         Rolsky)
1593
1594     * all documentation
1595       - Tons of fixes, both syntactical and grammatical (Dave
1596         Rolsky, Paul Fenwick)
1597
1598 0.54 Thurs. July 3, 2008
1599     ... this is not my day today ...
1600
1601     * Moose::Meta::Attribute
1602       - fixed legal_options_for_inheritance such that
1603         clone_and_inherit options still works for
1604         Class::MOP::Attribute objects and therefore
1605         does not break MooseX::AttributeHelpers
1606         (stevan)
1607
1608 0.53 Thurs. July 3, 2008
1609     * Whoops, I guess I should run 'make manifest' before
1610       actually releasing the module. No actual changes
1611       in this release, except the fact that it includes
1612       the changes that I didn't include in the last
1613       release. (stevan--)
1614
1615 0.52 Thurs. July 3, 2008
1616     * Moose
1617       - added "FEATURE REQUESTS" section to the Moose docs
1618         to properly direct people (stevan) (RT #34333)
1619       - making 'extends' croak if it is passed a Role since
1620         this is not ever something you want to do
1621         (fixed by stevan, found by obra)
1622         - added tests for this (stevan)
1623
1624     * Moose::Object
1625       - adding support for DOES (as in UNIVERSAL::DOES)
1626         (nothingmuch)
1627         - added test for this
1628
1629     * Moose::Meta::Attribute
1630       - added legal_options_for_inheritance (wreis)
1631         - added tests for this (wreis)
1632
1633     * Moose::Cookbook::Snacks::*
1634       - removed some of the unfinished snacks that should
1635         not have been released yet. Added some more examples
1636         to the 'Keywords' snack. (stevan)
1637
1638     * Moose::Cookbook::Style
1639       - added general Moose "style guide" of sorts to the
1640         cookbook (nothingmuch) (RT #34335)
1641
1642     * t/
1643       - added more BUILDARGS tests (stevan)
1644
1645 0.51 Thurs. Jun 26, 2008
1646     * Moose::Role
1647       - add unimport so "no Moose::Role" actually does
1648         something (sartak)
1649
1650     * Moose::Meta::Role::Application::ToRole
1651       - when RoleA did RoleB, and RoleA aliased a method from RoleB in
1652         order to provide its own implementation, that method still got
1653         added to the list of required methods for consumers of
1654         RoleB. Now an aliased method is only added to the list of
1655         required methods if the role doing the aliasing does not
1656         provide its own implementation. See Recipe 11 for an example
1657         of all this. (Dave Rolsky)
1658         - added tests for this
1659
1660     * Moose::Meta::Method::Constructor
1661       - when a single argument that wasn't a hashref was provided to
1662         an immutabilized constructor, the error message was very
1663         unhelpful, as opposed to the non-immutable error. Reported by
1664         dew. (Dave Rolsky)
1665         - added test for this (Dave Rolsky)
1666
1667     * Moose::Meta::Attribute
1668       - added support for meta_attr->does("ShortAlias") (sartak)
1669         - added tests for this (sartak)
1670       - moved the bulk of the `handles` handling to the new
1671         install_delegation method (Stevan)
1672
1673     * Moose::Object
1674       - Added BUILDARGS, a new step in new()
1675
1676     * Moose::Meta::Role::Application::RoleSummation
1677       - fix typos no one ever sees (sartak)
1678
1679     * Moose::Util::TypeConstraints
1680     * Moose::Meta::TypeConstraint
1681     * Moose::Meta::TypeCoercion
1682       - Attempt to work around the ??{ } vs. threads issue
1683         (not yet fixed)
1684       - Some null_constraint optimizations
1685
1686 0.50 Thurs. Jun 11, 2008
1687     - Fixed a version number issue by bumping all modules
1688       to 0.50.
1689
1690 0.49 Thurs. Jun 11, 2008
1691     !! This version now approx. 20-25% !!
1692     !! faster with new Class::MOP 0.59 !!
1693
1694     * Moose::Meta::Attribute
1695       - fixed how the is => (ro|rw) works with
1696         custom defined reader, writer and accessor
1697         options.
1698         - added docs for this (TODO).
1699         - added tests for this (Thanks to Penfold)
1700       - added the custom attribute alias for regular
1701         Moose attributes which is "Moose"
1702       - fix builder and default both being used
1703         (groditi)
1704
1705     * Moose
1706       Moose::Meta::Class
1707       Moose::Meta::Attribute
1708       Moose::Meta::Role
1709       Moose::Meta::Role::Composite
1710       Moose::Util::TypeConstraints
1711       - switched usage of reftype to ref because
1712         it is much faster
1713
1714     * Moose::Meta::Role
1715       - changing add_package_symbol to use the new
1716         HASH ref form
1717
1718     * Moose::Object
1719       - fixed how DEMOLISHALL is called so that it
1720         can be overrided in subclasses (thanks to Sartak)
1721         - added test for this (thanks to Sartak)
1722
1723     * Moose::Util::TypeConstraints
1724       - move the ClassName type check code to
1725         Class::MOP::is_class_loaded (thanks to Sartak)
1726
1727     * Moose::Cookbook::Recipe11
1728       - add tests for this (thanks to tokuhirom)
1729
1730 0.48 Thurs. May 29, 2008
1731     (early morning release engineering)--
1732
1733     - fixing the version in Moose::Meta::Method::Destructor
1734       which was causing the indexer to choke
1735
1736 0.47 Thurs. May 29, 2008
1737     (late night release engineering)--
1738
1739     - fixing the version is META.yml, no functional
1740       changes in this release
1741
1742 0.46 Wed. May 28, 2008
1743     !! This version now approx. 20-25% !!
1744     !! faster with new Class::MOP 0.57 !!
1745
1746     * Moose::Meta::Class
1747       - some optimizations of the &initialize method
1748         since it is called so often by &meta
1749
1750     * Moose::Meta::Class
1751       Moose::Meta::Role
1752       - now use the get_all_package_symbols from the
1753         updated Class::MOP, test suite is now 10 seconds
1754         faster
1755
1756     * Moose::Meta::Method::Destructor
1757       - is_needed can now also be called as a class
1758         method for immutablization to check if the
1759         destructor object even needs to be created
1760         at all
1761
1762     * Moose::Meta::Method::Destructor
1763       Moose::Meta::Method::Constructor
1764       - added more descriptive error message to help
1765         keep people from wasting time tracking an error
1766         that is easily fixed by upgrading.
1767
1768 0.45 Saturday, May 24, 2008
1769     * Moose
1770       - Because of work in Class::MOP 0.57, all
1771         XS based functionality is now optional
1772         and a Pure Perl version is supplied
1773         - the CLASS_MOP_NO_XS environment variable
1774           can now be used to force non-XS versions
1775           to always be used
1776         - several of the packages have been tweaked
1777           to take care of this, mostly we added
1778           support for the package_name and name
1779           variables in all the Method metaclasses
1780       - before/around/after method modifiers now
1781         support regexp matching of names
1782         (thanks to Takatoshi Kitano)
1783         - tests added for this
1784         - NOTE: this only works for classes, it
1785           is currently not supported in roles,
1786           but, ... patches welcome
1787       - All usage of Carp::confess have been replaced
1788         by Carp::croak in the "keyword" functions since
1789         the stack trace is usually not helpful
1790
1791     * Moose::Role
1792       - All usage of Carp::confess have been replaced
1793         by Carp::croak in the "keyword" functions since
1794         the stack trace is usually not helpful
1795       - The 'has' keyword for roles now accepts the
1796         same array ref form that Moose.pm does
1797         (has [qw/foo bar/] => (is => 'rw', ...))
1798         - added test for this
1799
1800     * Moose::Meta::Attribute
1801       - trigger on a ro-attribute is no longer an
1802         error, as it's useful to trigger off of the
1803         constructor
1804
1805     * Moose::Meta::Class
1806       - added same 'add_package_symbol' fix as in
1807         Class::MOP 0.57
1808
1809     * Moose::Util
1810       - does_role now handles non-Moose classes
1811         more gracefully
1812         - added tests for this
1813       - added the 'add_method_modifier' function
1814         (thanks to Takatoshi Kitano)
1815
1816     * Moose::Util::TypeConstraints
1817       - subtypes of parameterizable types now are
1818         themselves parameterizable types
1819
1820     * Moose::Meta::Method::Constructor
1821       - fixed bug where trigger was not being
1822         called by the inlined immutable
1823         constructors
1824         - added test for this (thanks to Caelum)
1825
1826     * Moose::Meta::Role::Application::ToInstance
1827       - now uses the metaclass of the instance
1828         (if possible) to create the anon-class
1829         (thanks Jonathan Rockway)
1830
1831     * Moose::Cookbook::Recipe22
1832       - added the meta-attribute trait recipe
1833         (thanks to Sartak)
1834
1835     * t/
1836       - fixed hash-ordering test bug that was
1837         causing occasional cpantester failures
1838       - renamed the t/000_recipe/*.t tests to be
1839         more descriptive (thanks to Sartak)
1840
1841 0.44 Sat. May 10, 2008
1842     * Moose
1843       - made make_immutable warning cluck to
1844         show where the error is (thanks mst)
1845
1846     * Moose::Object
1847       - BUILDALL and DEMOLISHALL now call
1848         ->body when looping through the
1849         methods, to avoid the overloaded
1850         method call.
1851       - fixed issue where DEMOLISHALL was
1852         eating the $@ values, and so not
1853         working correctly, it still kind of
1854         eats them, but so does vanilla perl
1855         - added tests for this
1856
1857     * Moose::Cookbook::Recipe7
1858       - added new recipe for immutable
1859         functionality (thanks Dave Rolsky)
1860
1861     * Moose::Cookbook::Recipe9
1862       - added new recipe for builder and
1863         lazy_build (thanks Dave Rolsky)
1864
1865     * Moose::Cookbook::Recipe11
1866       - added new recipe for method aliasing
1867         and exclusion with Roles (thanks Dave Rolsky)
1868
1869     * t/
1870       - fixed Win32 test failure (thanks spicyjack)
1871
1872     ~ removed Build.PL and Module::Build compat
1873       since Module::Install has done that.
1874
1875 0.43 Wed. April, 30, 2008
1876     * NOTE TO SELF:
1877         drink more coffee before
1878         doing release engineering
1879
1880     - whoops, forgot to do the smolder tests,
1881       and we broke some of the custom meta-attr
1882       modules. This fixes that.
1883
1884 0.42 Mon. April 28, 2008
1885     - some bad tests slipped by, nothing else
1886       changed in this release (cpantesters++)
1887
1888     - upped the Class::MOP dependency to 0.55
1889       since we have tests which need the C3
1890       support
1891
1892 0.41 Mon. April 28, 2008
1893     ~~ numerous documentation updates ~~
1894
1895     - Changed all usage of die to Carp::croak for better
1896       error reporting (initial patch by Tod Hagan)
1897
1898     ** IMPORTANT NOTE **
1899     - the make_immutable keyword is now deprecated, don't
1900       use it in any new code and please fix your old code
1901       as well. There will be 2 releases, and then it will
1902       be removed.
1903
1904     * Moose
1905       Moose::Role
1906       Moose::Meta::Class
1907       - refactored the way inner and super work to avoid
1908         any method/@ISA cache penalty (nothingmuch)
1909
1910     * Moose::Meta::Class
1911       - fixing &new_object to make sure trigger gets the
1912         coerced value (spotted by Charles Alderman on the
1913         mailing list)
1914         - added test for this
1915
1916     * Moose::Meta::Method::Constructor
1917       - immutable classes which had non-lazy attributes were calling
1918         the default generating sub twice in the constructor. (bug
1919         found by Jesse Luehrs, fixed by Dave Rolsky)
1920         - added tests for this (Dave Rolsky)
1921       - fix typo in initialize_body method (nothingmuch)
1922
1923     * Moose::Meta::Method::Destructor
1924       - fix typo in initialize_body method (nothingmuch)
1925
1926     * Moose::Meta::Method::Overriden
1927       Moose::Meta::Method::Augmented
1928       - moved the logic for these into their own
1929         classes (nothingmuch)
1930
1931     * Moose::Meta::Attribute
1932       - inherited attributes may now be extended without
1933         restriction on the type ('isa', 'does') (Sartak)
1934         - added tests for this (Sartak)
1935       - when an attribute property is malformed (such as lazy without
1936         a default), give the name of the attribute in the error
1937         message (Sartak)
1938       - added the &applied_traits and &has_applied_traits methods
1939         to allow introspection of traits
1940         - added tests for this
1941       - moved 'trait' and 'metaclass' argument handling to here from
1942         Moose::Meta::Class
1943       - clone_and_inherit_options now handles 'trait' and 'metaclass' (has
1944         '+foo' syntax) (nothingmuch)
1945         - added tests for this (t0m)
1946
1947     * Moose::Object
1948       - localize $@ inside DEMOLISHALL to avoid it
1949         eating $@ (found by Ernesto)
1950         - added test for this (thanks to Ernesto)
1951
1952     * Moose::Util::TypeConstraints
1953       - &find_type_constraint now DWIMs when given an
1954         type constraint object or name (nothingmuch)
1955       - &find_or_create_type_constraint superseded with a number of more
1956         specific functions:
1957         - find_or_create_{isa,does}_type_constraint
1958         - find_or_parse_type_constraint
1959
1960     * Moose::Meta::TypeConstraint
1961       Moose::Meta::TypeConstraint::Class
1962       Moose::Meta::TypeConstraint::Role
1963       Moose::Meta::TypeConstraint::Enum
1964       Moose::Meta::TypeConstraint::Union
1965       Moose::Meta::TypeConstraint::Parameterized
1966         - added the &equals method for comparing two type
1967           constraints (nothingmuch)
1968           - added tests for this (nothingmuch)
1969
1970     * Moose::Meta::TypeConstraint
1971       - add the &parents method, which is just an alias to &parent.
1972         Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
1973
1974     * Moose::Meta::TypeConstraint::Class
1975       - added the class attribute for introspection purposes
1976         (nothingmuch)
1977         - added tests for this
1978
1979     * Moose::Meta::TypeConstraint::Enum
1980       Moose::Meta::TypeConstraint::Role
1981       - broke these out into their own classes (nothingmuch)
1982
1983     * Moose::Cookbook::Recipe*
1984       - fixed references to test file locations in the POD
1985         and updated up some text for new Moose features
1986         (Sartak)
1987
1988     * Moose::Util
1989       - Added &resolve_metaclass_alias, a helper function for finding an actual
1990         class for a short name (e.g. in the traits list)
1991
1992 0.40 Fri. March 14, 2008
1993     - I hate Pod::Coverage
1994
1995 0.39 Fri. March 14, 2008
1996     * Moose
1997       - documenting the use of '+name' with attributes
1998         that come from recently composed roles. It makes
1999         sense, people are using it, and so why not just
2000         officially support it.
2001       - fixing the 'extends' keyword so that it will not
2002         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
2003
2004     * oose
2005       - added the perl -Moose=+Class::Name feature to allow
2006         monkeypatching of classes in one liners
2007
2008     * Moose::Util
2009       - fixing the 'apply_all_roles' keyword so that it will not
2010         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
2011
2012     * Moose::Meta::Class
2013       - added ->create method which now supports roles (thanks to jrockway)
2014         - added tests for this
2015       - added ->create_anon_class which now supports roles and caching of
2016         the results (thanks to jrockway)
2017         - added tests for this
2018       - made ->does_role a little more forgiving when it is
2019         checking a Class::MOP era metaclasses.
2020
2021     * Moose::Meta::Role::Application::ToInstance
2022       - it is now possible to pass extra params to be used when
2023         a role is applied to an the instance (rebless_params)
2024         - added tests for this
2025
2026     * Moose::Util::TypeConstraints
2027       - class_type now accepts an optional second argument for a
2028         custom message. POD anotated accordingly (groditi)
2029         - added tests for this
2030       - it is now possible to make anon-enums by passing 'enum' an
2031         ARRAY ref instead of the $name => @values. Everything else
2032         works as before.
2033         - added tests for this
2034
2035     * t/
2036       - making test for using '+name' on attributes consumed
2037         from a role, it works and makes sense too.
2038
2039     * Moose::Meta::Attribute
2040       - fix handles so that it doesn't return nothing
2041         when the method cannot be found, not sure why
2042         it ever did this originally, this means we now
2043         have slightly better support for AUTOLOADed
2044         objects
2045         - added more delegation tests
2046       - adding ->does method to this so as to better
2047         support traits and their introspection.
2048         - added tests for this
2049
2050     * Moose::Object
2051       - localizing the Data::Dumper configurations so
2052         that it does not pollute others (RT #33509)
2053       - made ->does a little more forgiving when it is
2054         passed Class::MOP era metaclasses.
2055
2056 0.38 Fri. Feb. 15, 2008
2057     * Moose::Meta::Attribute
2058       - fixed initializer to correctly do
2059         type checking and coercion in the
2060         callback
2061         - added tests for this
2062
2063     * t/
2064       - fixed some finicky tests (thanks to konobi)
2065
2066 0.37 Thurs. Feb. 14, 2008
2067     * Moose
2068       - fixed some details in Moose::init_meta
2069         and its superclass handling (thanks thepler)
2070         - added tests for this (thanks thepler)
2071       - 'has' now dies if you don't pass in name
2072         value pairs
2073       - added the 'make_immutable' keyword as a shortcut
2074         to make_immutable
2075
2076     * Moose::Meta::Class
2077       Moose::Meta::Method::Constructor
2078       Moose::Meta::Attribute
2079       - making (init_arg => undef) work here too
2080         (thanks to nothingmuch)
2081
2082     * Moose::Meta::Attribute
2083       Moose::Meta::Method::Constructor
2084       Moose::Meta::Method::Accessor
2085       - make lazy attributes respect attr initializers (rjbs)
2086         - added tests for this
2087
2088     * Moose::Util::TypeConstraints
2089       Moose::Util::TypeConstraints::OptimizedConstraints
2090       Moose::Meta::TypeConstraints
2091       Moose::Meta::Attribute
2092       Moose::Meta::Method::Constructor
2093       Moose::Meta::Method::Accessor
2094       - making type errors use the
2095         assigned message (thanks to Sartak)
2096         - added tests for this
2097
2098     * Moose::Meta::Method::Destructor
2099       - making sure DESTROY gets inlined properly
2100         with successive DEMOLISH calls (thanks to manito)
2101
2102     * Moose::Meta::Attribute
2103       Moose::Meta::Method::Accessor
2104       - fixed handling of undef with type constraints
2105         (thanks to Ernesto)
2106         - added tests for this
2107
2108     * Moose::Util
2109       - added &get_all_init_args and &get_all_attribute_values
2110         (thanks to Sartak and nothingmuch)
2111
2112 0.36 Sat. Jan. 26, 2008
2113     * Moose::Role
2114       Moose::Meta::Attribute
2115       - role type tests now support when roles are
2116         applied to non-Moose classes (found by ash)
2117         - added tests for this (thanks to ash)
2118       - couple extra tests to boost code coverage
2119
2120     * Moose::Meta::Method::Constructor
2121       - improved fix for handling Class::MOP attributes
2122         - added test for this
2123
2124     * Moose::Meta::Class
2125       - handled the add_attribute($attribute_meta_object)
2126         case correctly
2127         - added test for this
2128
2129 0.35 Tues. Jan. 22, 2008
2130     * Moose::Meta::Method::Constructor
2131       - fix to make sure even Class::MOP attributes
2132         are handled correctly (Thanks to Dave Rolsky)
2133         - added test for this (also Dave Rolsky)
2134
2135     * Moose::Meta::Class
2136       - improved error message on _apply_all_roles,
2137         you should now use Moose::Util::apply_all_roles
2138         and you shouldnt have been using a _ prefixed
2139         method in the first place ;)
2140
2141 0.34 Mon. Jan. 21, 2008
2142     ~~~ more misc. doc. fixes ~~~
2143     ~~ updated copyright dates ~~
2144
2145     Moose is now a postmodern object system :)
2146       - (see the POD for details)
2147
2148     * <<Role System Refactoring>>
2149     - this release contains a major reworking and
2150       cleanup of the role system
2151       - 100% backwards compat.
2152       - Role application now restructured into seperate
2153         classes based on type of applicants
2154       - Role summation (combining of more than one role)
2155         is much cleaner and anon-classes are no longer
2156         used in this process
2157       - new Composite role metaclass
2158       - runtime application of roles to instances
2159         is now more efficient and re-uses generated
2160         classes when applicable
2161
2162     * <<New Role composition features>>
2163       - methods can now be excluded from a given role
2164         during composition
2165       - methods can now be aliased to another name (and
2166         still retain the original as well)
2167
2168     * Moose::Util::TypeConstraints::OptimizedConstraints
2169       - added this module (see above)
2170
2171     * Moose::Meta::Class
2172       - fixed the &_process_attribute method to be called
2173         by &add_attribute, so that the API is now correct
2174
2175     * Moose::Meta::Method::Accessor
2176       - fixed bug when passing a list of values to
2177         an accessor would get (incorrectly) ignored.
2178         Thanks to Sartak for finding this ;)
2179         - added tests for this (Sartak again)
2180
2181     * Moose::Meta::Method::Accessor
2182       Moose::Meta::Method::Constructor
2183       Moose::Meta::Attribute
2184       Moose::Meta::TypeConstraint
2185       Moose::Meta::TypeCoercion
2186       - lots of cleanup of such things as:
2187         - generated methods
2188         - type constraint handling
2189         - error handling/messages
2190         (thanks to nothingmuch)
2191
2192     * Moose::Meta::TypeConstraint::Parameterizable
2193       - added this module to support the refactor
2194         in Moose::Meta::TypeConstraint::Parameterized
2195
2196     * Moose::Meta::TypeConstraint::Parameterized
2197       - refactored how these types are handled so they
2198         are more generic and not confined to ArrayRef
2199         and HashRef only
2200
2201     * t/
2202       - shortened some file names for better VMS support (RT #32381)
2203
2204 0.33 Fri. Dec. 14, 2007
2205     !! Moose now loads 2 x faster !!
2206     !!  with new Class::MOP 0.49  !!
2207
2208     ++ new oose.pm module to make command line
2209        Moose-ness easier (see POD docs for more)
2210
2211     * Moose::Meta::Class
2212     * Moose::Meta::Role
2213       - several tweaks to take advantage of the
2214         new method map caching in Class::MOP
2215
2216     * Moose::Meta::TypeConstraint::Parameterized
2217       - allow subtypes of ArrayRef and HashRef to
2218         be used as a container (sartak)
2219         - added tests for this
2220       - basic support for coercion to ArrayRef and
2221         HashRef for containers (sartak)
2222         - added tests for this
2223
2224     * Moose::Meta::TypeCoercion
2225       - coercions will now create subtypes as needed
2226         so you can now add coercions to parameterized
2227         types without having to explictly define them
2228         - added tests for this
2229
2230     * Moose::Meta::Method::Accessor
2231       - allow subclasses to decide whether we need
2232         to copy the value into a new variable (sartak)
2233
2234 0.32 Tues. Dec. 4, 2007
2235     * Moose::Util::TypeConstraints
2236       - fixing how subtype aliases of unions work
2237         they should inherit the parent's coercion
2238         - added tests for this
2239       - you can now define multiple coercions on
2240         a single type at different times instead of
2241         having to do it all in one place
2242         - added tests for this
2243
2244     * Moose::Meta::TypeConstraint
2245       - there is now a default constraint of sub { 1 }
2246         instead of Moose::Util::TypeConstraints setting
2247         this for us
2248
2249     * Moose::Meta::TypeCoercion
2250     * Moose::Meta::TypeCoercion::Union
2251       - added the &has_coercion_for_type and
2252         &add_type_coercions methods to support the
2253         new features above (although you cannot add
2254         more type coercions for Union types)
2255
2256 0.31 Mon. Nov. 26, 2007
2257     * Moose::Meta::Attribute
2258       - made the +attr syntax handle extending types with
2259         parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
2260         now works if the original foo is an ArrayRef.
2261         - added tests for this.
2262       - delegation now works even if the attribute does not
2263         have a reader method using the get_read_method_ref
2264         method from Class::MOP::Attribute.
2265         - added tests for this
2266         - added docs for this
2267
2268     * Moose::Util::TypeConstraints
2269       - passing no "additional attribute info" to
2270         &find_or_create_type_constraint will no longer
2271         attempt to create an __ANON__ type for you,
2272         instead it will just return undef.
2273         - added docs for this
2274
2275 0.30 Fri. Nov. 23, 2007
2276     * Moose::Meta::Method::Constructor
2277       -builder related bug in inlined constructor. (groditi)
2278
2279     * Moose::Meta::Method::Accessor
2280       - genereate unnecessary calls to predicates and refactor
2281         code generation for runtime speed (groditi)
2282
2283     * Moose::Util::TypeConstraints
2284       - fix ClassName constraint to introspect symbol table (mst)
2285         - added more tests for this (mst)
2286       - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
2287         with work correctly.
2288         - added tests for this
2289
2290     * Moose::Cookbook
2291       - adding the link to Recipie 11 (written by Sartak)
2292         - adding test for SYNOPSIS code
2293
2294     * t/
2295       - New tests for builder bug. Upon instantiation, if an
2296         attribute had a builder, no value and was not lazy the
2297         builder default was not getting run, oops. (groditi)
2298
2299 0.29 Tues. Nov. 13, 2007
2300     * Moose::Meta::Attribute
2301       - Fix error message on missing builder method (groditi)
2302
2303     * Moose::Meta::Method::Accessor
2304       - Fix error message on missing builder method (groditi)
2305
2306     * t/
2307       - Add test to check for the correct error message when
2308         builder method is missing (groditi)
2309
2310 0.28 Tues. Nov. 13, 2007
2311     - 0.27 packaged incorrectly (groditi)
2312
2313 0.27 Tues. Nov. 13, 2007
2314     * Moose::Meta::Attribute
2315       - Added support for the new builder option (groditi)
2316       - Added support for lazy_build option (groditi)
2317       - Changed slot initialization for predicate changes (groditi)
2318
2319     * Moose::Meta::Method::Accessor
2320       - Added support for lazy_build option (groditi)
2321       - Fix inline methods to work with corrected predicate
2322         behavior (groditi)
2323
2324     * Moose::Meta::Method::Constructor
2325       - Added support for lazy_build option (groditi)
2326
2327     * t/
2328       - tests for builder and lazy_build (groditi)
2329
2330     * fixing some misc. bits in the docs that
2331       got mentioned on CPAN Forum & perlmonks
2332
2333     * Moose::Meta::Role
2334       - fixed how required methods are handled
2335         when they encounter overriden or modified
2336         methods from a class (thanks to confound).
2337         - added tests for this
2338
2339     * Moose::Util::TypeConstraint
2340       - fixed the type notation parser so that
2341         the | always creates a union and so is
2342         no longer a valid type char (thanks to
2343         konobi, mugwump and #moose for working
2344         this one out.)
2345         - added more tests for this
2346
2347 0.26 Thurs. Sept. 27, 2007
2348     == New Features ==
2349
2350     * Parameterized Types
2351       We now support parameterized collection types, such as:
2352           ArrayRef[Int]    # array or integers
2353           HashRef[Object]  # a hash with object values
2354       They can also be nested:
2355           ArrayRef[HashRef[RegexpRef]] # an array of hashes with regex values
2356       And work with the type unions as well:
2357           ArrayRef[Int | Str]  # array of integers of strings
2358
2359     * Better Framework Extendability
2360       Moose.pm is now "extendable" such that it is now much
2361       easier to extend the framework and add your own keywords
2362       and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
2363       section of the Moose.pm docs.
2364
2365     * Moose Snacks!
2366       In an effort to begin documenting some of the various
2367       details of Moose as well as some common idioms, we have
2368       created Moose::Cookbook::Snacks as a place to find
2369       small (easily digestable) nuggets of Moose code.
2370
2371     ====
2372     ~ Several doc updates/cleanup thanks to castaway ~
2373
2374     - converted build system to use Module::Install instead of
2375       Module::Build (thanks to jrockway)
2376
2377     * Moose
2378       - added all the meta classes to the immutable list and
2379         set it to inline the accessors
2380       - fix import to allow Sub::Exporter like { into => }
2381             and { into_level => } (perigrin)
2382       - exposed and documented init_meta() to allow better
2383             embedding and extending of Moose (perigrin)
2384
2385         * t/
2386           - complete re-organization of the test suite
2387           - added some new tests as well
2388           - finally re-enabled the Moose::POOP test since
2389             the new version of DBM::Deep now works again
2390             (thanks rob)
2391
2392     * Moose::Meta::Class
2393       - fixed very odd and very nasty recursion bug with
2394         inner/augment (mst)
2395         - added tests for this (eilara)
2396
2397     * Moose::Meta::Attribute
2398       Moose::Meta::Method::Constructor
2399       Moose::Meta::Method::Accessor
2400       - fixed issue with overload::Overloaded getting called
2401         on non-blessed items. (RT #29269)
2402         - added tests for this
2403
2404     * Moose::Meta::Method::Accessor
2405       - fixed issue with generated accessor code making
2406         assumptions about hash based classes (thanks to dexter)
2407
2408     * Moose::Coookbook::Snacks
2409       - these are bits of documentation, not quite as big as
2410         Recipes but which have no clear place in the module docs.
2411         So they are Snacks! (horray for castaway++)
2412
2413     * Moose::Cookbook::Recipe4
2414       - updated it to use the new ArrayRef[MyType] construct
2415         - updated the accompanying test as well
2416
2417     +++ Major Refactor of the Type Constraint system +++
2418     +++       with new features added as well        +++
2419
2420     * Moose::Util::TypeConstraint
2421       - no longer uses package variable to keep track of
2422         the type constraints, now uses the an instance of
2423         Moose::Meta::TypeConstraint::Registry to do it
2424       - added more sophisticated type notation parsing
2425         (thanks to mugwump)
2426         - added tests for this
2427
2428     * Moose::Meta::TypeConstraint
2429       - some minor adjustments to make subclassing easier
2430       - added the package_defined_in attribute so that we
2431         can track where the type constraints are created
2432
2433     * Moose::Meta::TypeConstraint::Union
2434       - this is now been refactored to be a subclass of
2435         Moose::Meta::TypeConstraint
2436
2437     * Moose::Meta::TypeCoercion::Union
2438       - this has been added to service the newly refactored
2439         Moose::Meta::TypeConstraint::Union and is itself
2440         a subclass of Moose::Meta::TypeCoercion
2441
2442     * Moose::Meta::TypeConstraint::Parameterized
2443       - added this module (taken from MooseX::AttributeHelpers)
2444         to help construct nested collection types
2445         - added tests for this
2446
2447     * Moose::Meta::TypeConstraint::Registry
2448       - added this class to keep track of type constraints
2449
2450 0.25 Mon. Aug. 13, 2007
2451     * Moose
2452       - Documentation update to reference Moose::Util::TypeConstraints
2453         under 'isa' in 'has' for how to define a new type
2454         (thanks to shlomif).
2455
2456     * Moose::Meta::Attribute
2457       - required attributes now will no longer accept undef
2458         from the constructor, even if there is a default and lazy
2459         - added tests for this
2460       - default subroutines must return a value which passes the
2461         type constraint
2462         - added tests for this
2463
2464     * Moose::Meta::Attribute
2465     * Moose::Meta::Method::Constructor
2466     * Moose::Meta::Method::Accessor
2467       - type-constraint tests now handle overloaded objects correctly
2468         in the error message
2469         - added tests for this (thanks to EvanCarroll)
2470
2471     * Moose::Meta::TypeConstraint::Union
2472       - added (has_)hand_optimized_constraint to this class so that
2473         it behaves as the regular Moose::Meta::TypeConstraint does.
2474
2475     * Moose::Meta::Role
2476       - large refactoring of this code
2477       - added several more tests
2478         - tests for subtle conflict resolition issues
2479           added, but not currently running
2480           (thanks to kolibre)
2481
2482     * Moose::Cookbook::Recipe7
2483       - added new recipe for augment/inner functionality
2484         (still in progress)
2485         - added test for this
2486
2487     * Moose::Spec::Role
2488       - a formal definition of roles (still in progress)
2489
2490     * Moose::Util
2491       - utilities for easier working with Moose classes
2492         - added tests for these
2493
2494     * Test::Moose
2495       - This contains Moose specific test functions
2496         - added tests for these
2497
2498 0.24 Tues. July 3, 2007
2499     ~ Some doc updates/cleanup ~
2500
2501     * Moose::Meta::Attribute
2502       - added support for roles to be given as parameters
2503         to the 'handles' option.
2504         - added tests and docs for this
2505       - the has '+foo' attribute form now accepts changes to
2506         the lazy option, and the addition of a handles option
2507         (but not changing the handles option)
2508         - added tests and docs for this
2509
2510     * Moose::Meta::Role
2511       - required methods are now fetched using find_method_by_name
2512         so that required methods can come from superclasses
2513         - adjusted tests for this
2514
2515 0.23 Mon. June 18, 2007
2516     * Moose::Meta::Method::Constructor
2517       - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
2518     * Moose::Meta::Class
2519       - Modify make_immutable to work with the new Class::MOP immutable
2520         mechanism + POD + very basic test (groditi)
2521     * Moose::Meta::Attribute
2522       - Fix handles to use goto() so that caller() comes out properly on
2523         the other side (perigrin)
2524
2525 0.22 Thurs. May 31, 2007
2526     * Moose::Util::TypeConstraints
2527       - fix for prototype undeclared issue when Moose::Util::TypeConstraints
2528         loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
2529         prototypes for functions
2530       - added the ClassName type constraint, this checks for strings
2531         which will respond true to ->isa(UNIVERSAL).
2532         - added tests and docs for this
2533       - subtyping just in name now works correctly by making the
2534         default for where be { 1 }
2535         - added test for this
2536
2537     * Moose::Meta::Method::Accessor
2538       - coerce and lazy now work together correctly, thanks to
2539         merlyn for finding this bug
2540         - tests added for this
2541       - fix reader presedence bug in Moose::Meta::Attribute + tests
2542
2543     * Moose::Object
2544       - Foo->new(undef) now gets ignored, it is assumed you meant to pass
2545         a HASH-ref and missed. This produces better error messages then
2546         having it die cause undef is not a HASH.
2547         - added tests for this
2548
2549 0.21 Thursday, May 2nd, 2007
2550     * Moose
2551       - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
2552       - modified unimport to remove super and inner along with the rest
2553         - altered unimport tests to handle this
2554
2555     * Moose::Role
2556       - altered super export to populate SUPER_SLOT
2557
2558     * Moose::Meta::Class
2559       - altered augment and override modifier application to use *_SLOT
2560         - modified tests for these to unimport one test class each to test
2561
2562     * Moose::Meta::Role
2563       - fixed issue where custom attribute metaclasses
2564         where not handled correctly in roles
2565         - added tests for this
2566
2567     * Moose::Meta::Class
2568       - fixed issue where extending metaclasses with
2569         roles would blow up. Thanks to Aankhen`` for
2570         finding this insidious error, and it's solution.
2571
2572     ~~ lots of spelling and grammer fixes in the docs,
2573        many many thanks to rlb3 and Aankhen for these :)
2574
2575 0.20 Friday, April 6th, 2007
2576     >> I messed up the SKIP logic in one test
2577        so this release is just to fix that.
2578
2579     * Moose
2580       - 'has' now also accepts an ARRAY ref
2581         to create multiple attrs (see docs)
2582         (thanks to konobi for this)
2583          - added tests and docs
2584
2585 0.19 Thurs. April 5th, 2007
2586     ~~ More documentation updates ~~
2587
2588     * Moose::Util::TypeConstraints
2589       - 'type' now supports messages as well
2590         thanks to phaylon for finding this
2591         - added tests for this
2592       - added &list_all_type_constraints and
2593         &list_all_builtin_type_constraints
2594         functions to facilitate introspection.
2595
2596     * Moose::Meta::Attribute
2597       - fixed regexp 'handles' declarations
2598         to build the list of delegated methods
2599         correctly (and not override important
2600         things like &new) thanks to ashleyb
2601         for finding this
2602         - added tests and docs for this
2603       - added the 'documentation' attributes
2604         so that you can actually document your
2605         attributes and inspect them through the
2606         meta-object.
2607         - added tests and docs for this
2608
2609     * Moose::Meta::Class
2610       - when loading custom attribute metaclasses
2611         it will first look in for the class in the
2612         Moose::Meta::Attribute::Custom::$name, and
2613         then default to just loading $name.
2614         - added tests and docs for this
2615
2616     * Moose::Meta::TypeConstraint
2617       - type constraints now stringify to their names.
2618         - added test for this
2619
2620     * misc.
2621       - added tests to assure we work with Module::Refresh
2622       - added stricter test skip logic in the Moose POOP
2623         test, ask Rob Kinyon why.
2624         - *cough* DBM::Deep 1.0 backwards compatibility sucks *cough* ;)
2625
2626 0.18 Sat. March 10, 2007
2627     ~~ Many, many documentation updates ~~
2628
2629     * misc.
2630       - We now use Class::MOP::load_class to
2631         load all classes.
2632       - added tests to show types and subtypes
2633         working with Declare::Constraints::Simple
2634         and Test::Deep as constraint engines.
2635
2636 0.18_001
2637     !! You must have Class::MOP 0.37_001  !!
2638     !! for this developer release to work !!
2639
2640     This release was primarily adding the immutable
2641     feature to Moose. An immutable class is one which
2642     you promise not to alter. When you set the class
2643     as immutable it will perform various bits of
2644     memoization and inline certain part of the code
2645     (constructors, destructors and accessors). This
2646     minimizes (and in some cases totally eliminates)
2647     one of Moose's biggest performance hits. This
2648     feature is not on by default, and is 100% optional.
2649     It has several configurable bits as well, so you
2650     can pick and choose to your specific needs.
2651
2652     The changes involved in this were fairly wide and
2653     highly specific, but 100% backwards compatible, so
2654     I am not going to enumerate them here. If you are
2655     truely interested in what was changed, please do
2656     a diff :)
2657
2658 0.17 Tues. Nov. 14, 2006
2659     * Moose::Meta::Method::Accessor
2660       - bugfix for read-only accessors which
2661         are have a type constraint and lazy.
2662         Thanks to chansen for finding it.
2663
2664 0.16 Tues. Nov. 14, 2006
2665     ++ NOTE ++
2666     There are some speed improvements in this release,
2667     but they are only the begining, so stay tuned.
2668
2669     * Moose::Object
2670       - BUILDALL and DEMOLISHALL no longer get
2671         called unless they actually need to be.
2672         This gave us a signifigant speed boost
2673         for the cases when there is no BUILD or
2674         DEMOLISH method present.
2675
2676     * Moose::Util::TypeConstraints
2677     * Moose::Meta::TypeConstraint
2678       - added an 'optimize_as' option to the
2679         type constraint, which allows for a
2680         hand optimized version of the type
2681         constraint to be used when possible.
2682       - Any internally created type constraints
2683         now provide an optimized version as well.
2684
2685 0.15 Sun. Nov. 5, 2006
2686     ++ NOTE ++
2687     This version of Moose *must* have Class::MOP 0.36 in order
2688     to work correctly. A number of small internal tweaks have
2689     been made in order to be compatible with that release.
2690
2691     * Moose::Util::TypeConstraints
2692       - added &unimport so that you can clean out
2693         your class namespace of these exported
2694         keywords
2695
2696     * Moose::Meta::Class
2697       - fixed minor issue which occasionally
2698         comes up during global destruction
2699         (thanks omega)
2700       - moved Moose::Meta::Method::Overriden into
2701         its own file.
2702
2703     * Moose::Meta::Role
2704       - moved Moose::Meta::Role::Method into
2705         its own file.
2706
2707     * Moose::Meta::Attribute
2708       - changed how we do type checks so that
2709         we reduce the overall cost, but still
2710         retain correctness.
2711        *** API CHANGE ***
2712       - moved accessor generation methods to
2713         Moose::Meta::Method::Accessor to
2714         conform to the API changes from
2715         Class::MOP 0.36
2716
2717     * Moose::Meta::TypeConstraint
2718       - changed how constraints are compiled
2719         so that we do less recursion and more
2720         iteration. This makes the type check
2721         faster :)
2722       - moved Moose::Meta::TypeConstraint::Union
2723         into its own file
2724
2725     * Moose::Meta::Method::Accessor
2726       - created this from methods formerly found in
2727         Moose::Meta::Attribute
2728
2729     * Moose::Meta::Role::Method
2730       - moved this from Moose::Meta::Role
2731
2732     * Moose::Meta::Method::Overriden
2733       - moved this from Moose::Meta::Class
2734
2735     * Moose::Meta::TypeConstraint::Union
2736       - moved this from Moose::Meta::TypeConstraint
2737
2738 0.14 Mon. Oct. 9, 2006
2739
2740     * Moose::Meta::Attribute
2741       - fixed lazy attributes which were not getting
2742         checked with the type constraint (thanks ashley)
2743         - added tests for this
2744       - removed the over-enthusiastic DWIMery of the
2745         automatic ArrayRef and HashRef defaults, it
2746         broke predicates in an ugly way.
2747         - removed tests for this
2748
2749 0.13 Sat. Sept. 30, 2006
2750     ++ NOTE ++
2751     This version of Moose *must* have Class::MOP 0.35 in order
2752     to work correctly. A number of small internal tweaks have
2753     been made in order to be compatible with that release.
2754
2755     * Moose
2756       - Removed the use of UNIVERSAL::require to be a better
2757         symbol table citizen and remove a dependency
2758         (thanks Adam Kennedy)
2759
2760       **~~ removed experimental & undocumented feature ~~**
2761       - commented out the 'method' and 'self' keywords, see the
2762         comments for more info.
2763
2764     * Moose::Cookbook
2765       - added a FAQ and WTF files to document frequently
2766         asked questions and common problems
2767
2768     * Moose::Util::TypeConstraints
2769       - added GlobRef and FileHandle type constraint
2770         - added tests for this
2771
2772     * Moose::Meta::Attribute
2773       - if your attribute 'isa' ArrayRef of HashRef, and you have
2774         not explicitly set a default, then make the default DWIM.
2775         This will also work for subtypes of ArrayRef and HashRef
2776         as well.
2777       - you can now auto-deref subtypes of ArrayRef or HashRef too.
2778         - new test added for this (thanks to ashley)
2779
2780     * Moose::Meta::Role
2781       - added basic support for runtime role composition
2782         but this is still *highly experimental*, so feedback
2783         is much appreciated :)
2784         - added tests for this
2785
2786     * Moose::Meta::TypeConstraint
2787       - the type constraint now handles the coercion process
2788         through delegation, this is to support the coercion
2789         of unions
2790
2791     * Moose::Meta::TypeConstraint::Union
2792       - it is now possible for coercions to be performed
2793         on a type union
2794         - added tests for this (thanks to konobi)
2795
2796     * Moose::Meta::TypeCoercion
2797       - properly capturing error when type constraint
2798         is not found
2799
2800     * Build.PL
2801       - Scalar::Util 1.18 is bad on Win32, so temporarily
2802         only require version 1.17 for Win32 and cygwin.
2803         (thanks Adam Kennedy)
2804
2805 0.12 Sat. Sept. 1, 2006
2806     * Moose::Cookbook
2807       - Recipe5 (subtypes & coercion) has been written
2808
2809     * Moose
2810       - fixed "bad meta" error message to be more descriptive
2811       - fixed &unimport to not remove the &inner and &super
2812         keywords because we need to localize them.
2813       - fixed number of spelling/grammer issues, thanks Theory :)
2814
2815       **~~ experimental & undocumented feature ~~**
2816       - added the method and self keywords, they are basically
2817         just sugar, and they may not stay around.
2818
2819     * Moose::Object
2820       - added &dump method to easily Data::Dumper
2821         an object
2822
2823     * Moose::Meta::TypeConstraint
2824       - added the &is_a_type_of method to check both the current
2825         and the subtype of a method (similar to &isa with classes)
2826
2827     * Moose::Meta::Role
2828       - this is now a subclass of Class::MOP::Module, and no longer
2829         creates the _role_meta ugliness of before.
2830         - fixed tests to reflect this change
2831
2832 0.11 Wed. July 12, 2006
2833     * Moose
2834       - added an &unimport method to remove all the keywords
2835         that Moose will import, simply add 'no Moose' to the
2836         bottom of your class file.
2837
2838     * t/
2839       - fixed some test failures caused by a forgotten test
2840         dependency.
2841
2842 0.10 Thurs. July 6, 2006
2843     * Moose
2844       - improved error message when loading modules so
2845         it is less confusing when you load a role.
2846       - added &calculate_all_roles method to
2847         Moose::Meta::Class and Moose::Meta::Role
2848
2849     NOTE:
2850     This module has been tested against Class::MOP 0.30
2851     but it does not yet utilize the optimizations
2852     it makes available. Stay tuned for that ;)
2853
2854 0.09_03 Fri. June 23, 2006
2855     ++ DEVELOPER RELEASE ++
2856     * Moose
2857       - 'use strict' and 'use warnings' are no longer
2858          needed in Moose classes, Moose itself will
2859          turn them on for you.
2860          - added tests for this
2861       - moved code from exported subs to private methods
2862         in Moose::Meta::Class
2863
2864     * Moose::Role
2865       - as with Moose, strict and warnings are
2866         automatically turned on for you.
2867          - added tests for this
2868
2869     * Moose::Meta::Role
2870       - now handles an edge case for override errors
2871         - added tests for this
2872       - added some more edge case tests
2873
2874 0.09_02 Tues. May 16, 2006
2875     ++ DEVELOPER RELEASE ++
2876     * Moose
2877       - added prototypes to the exported subs
2878       - updated docs
2879
2880     * Moose::Role
2881       - added prototypes to the exported subs
2882       - updated docs
2883
2884     * Moose::Util::TypeConstraints
2885       - cleaned up prototypes for the subs
2886       - updated docs
2887
2888 0.09_01 Fri. May 12, 2006
2889     ++ DEVELOPER RELEASE ++
2890       - This release works in combination with
2891         Class::MOP 0.29_01, it is a developer
2892         release because it uses the a new
2893         instance sub-protocol and a fairly
2894         complete Role implementation. It has
2895         not yet been optimized, so it slower
2896         the the previous CPAN version. This
2897         release also lacks good updated docs,
2898         the official release will have updated docs.
2899
2900     * Moose
2901       - refactored the keyword exports
2902         - 'with' now checks Role validaity and
2903           accepts more than one Role at a time
2904         - 'extends' makes metaclass adjustments as
2905            needed to ensure metaclass compatibility
2906
2907     * Moose::Role
2908       - refactored the keyword exports
2909         - 'with' now checks Role validaity and
2910           accepts more than one Role at a time
2911
2912     * Moose::Util::TypeConstraints
2913       - added the 'enum' keyword for simple
2914         string enumerations which can be used as
2915         type constraints
2916         - see example of usage in t/202_example.t
2917
2918     * Moose::Object
2919       - more careful checking of params to new()
2920
2921     * Moose::Meta::Role
2922       - much work done on the role composition
2923         - many new tests for conflict detection
2924           and composition edge cases
2925         - not enough documentation, I suggest
2926           looking at the tests
2927
2928     * Moose::Meta::Instance
2929       - added new Instance metaclass to support
2930         the new Class::MOP instance protocol
2931
2932     * Moose::Meta::Class
2933       - some small changes to support the new
2934         instance protocol
2935       - some small additions to support Roles
2936
2937     * Moose::Meta::Attribute
2938       - some improvements to the accessor generation code
2939         by nothingmuch
2940       - some small changes to support the new
2941         instance protocol
2942       - (still somewhat) experimental delegation support
2943         with the 'handles' option
2944         - added several tests for this
2945         - no docs for this yet
2946
2947 0.05 Thurs. April 27, 2006
2948     * Moose
2949       - keywords are now exported with Sub::Exporter
2950         thanks to chansen for this commit
2951       - has keyword now takes a 'metaclass' option
2952         to support custom attribute meta-classes
2953         on a per-attribute basis
2954         - added tests for this
2955       - the 'has' keyword not accepts inherited slot
2956         specifications (has '+foo'). This is still an
2957         experimental feature and probably not finished
2958         see t/038_attribute_inherited_slot_specs.t for
2959         more details, or ask about it on #moose
2960         - added tests for this
2961
2962     * Moose::Role
2963       - keywords are now exported with Sub::Exporter
2964
2965     * Moose::Utils::TypeConstraints
2966       - reorganized the type constraint hierarchy, thanks
2967         to nothingmuch and chansen for his help and advice
2968         on this
2969         - added some tests for this
2970       - keywords are now exported with Sub::Exporter
2971         thanks to chansen for this commit
2972
2973     * Moose::Meta::Class
2974       - due to changes in Class::MOP, we had to change
2975         construct_instance (for the better)
2976
2977     * Moose::Meta::Attribute
2978       - due to changes in Class::MOP, we had to add the
2979         initialize_instance_slot method (it's a good thing)
2980
2981     * Moose::Meta::TypeConstraint
2982       - added type constraint unions
2983         - added tests for this
2984       - added the is_subtype_of predicate method
2985         - added tests for this
2986
2987 0.04 Sun. April 16th, 2006
2988     * Moose::Role
2989       - Roles can now consume other roles
2990         - added tests for this
2991       - Roles can specify required methods now with
2992         the requires() keyword
2993         - added tests for this
2994
2995     * Moose::Meta::Role
2996       - ripped out much of it's guts ,.. much cleaner now
2997       - added required methods and correct handling of
2998         them in apply() for both classes and roles
2999         - added tests for this
3000       - no longer adds a does() method to consuming classes
3001         it relys on the one in Moose::Object
3002       - added roles attribute and some methods to support
3003         roles consuming roles
3004
3005     * Moose::Meta::Attribute
3006       - added support for triggers on attributes
3007         - added tests for this
3008       - added support for does option on an attribute
3009         - added tests for this
3010
3011     * Moose::Meta::Class
3012       - added support for attribute triggers in the
3013         object construction
3014         - added tests for this
3015
3016     * Moose
3017       - Moose no longer creates a subtype for your class
3018         if a subtype of the same name already exists, this
3019         should DWIM in 99.9999% of all cases
3020
3021     * Moose::Util::TypeConstraints
3022       - fixed bug where incorrect subtype conflicts were
3023         being reported
3024         - added test for this
3025
3026     * Moose::Object
3027       - this class can now be extended with 'use base' if
3028         you need it, it properly loads the metaclass class now
3029         - added test for this
3030
3031 0.03_02 Wed. April 12, 2006
3032     * Moose
3033       - you must now explictly use Moose::Util::TypeConstraints
3034         it no longer gets exported for you automatically
3035
3036     * Moose::Object
3037       - new() now accepts hash-refs as well as key/value lists
3038       - added does() method to check for Roles
3039         - added tests for this
3040
3041     * Moose::Meta::Class
3042       - added roles attribute along with the add_role() and
3043         does_role() methods
3044         - added tests for this
3045
3046     * Moose::Meta::Role
3047       - now adds a does() method to consuming classes
3048         which tests the class's hierarchy for roles
3049         - added tests for this
3050
3051 0.03_01 Mon. April 10, 2006
3052     * Moose::Cookbook
3053       - added new Role recipe (no content yet, only code)
3054
3055     * Moose
3056       - added 'with' keyword for Role support
3057         - added test and docs for this
3058       - fixed subtype quoting bug
3059         - added test for this
3060
3061     * Moose::Role
3062       - Roles for Moose
3063         - added test and docs
3064
3065     * Moose::Util::TypeConstraints
3066       - added the message keyword to add custom
3067         error messages to type constraints
3068
3069     * Moose::Meta::Role
3070       - the meta role to support Moose::Role
3071         - added tests and docs
3072
3073     * Moose::Meta::Class
3074       - moved a number of things from Moose.pm
3075         to here, they should have been here
3076         in the first place
3077
3078     * Moose::Meta::Attribute
3079       - moved the attribute option macros here
3080         instead of putting them in Moose.pm
3081
3082     * Moose::Meta::TypeConstraint
3083       - added the message attributes and the
3084         validate method
3085         - added tests and docs for this
3086
3087 0.03 Thurs. March 30, 2006
3088     * Moose::Cookbook
3089       - added the Moose::Cookbook with 5 recipes,
3090         describing all the stuff Moose can do.
3091
3092     * Moose
3093       - fixed an issue with &extends super class loading
3094         it now captures errors and deals with inline
3095         packages correctly (bug found by mst, solution
3096         stolen from alias)
3097       - added super/override & inner/augment features
3098         - added tests and docs for these
3099
3100     * Moose::Object
3101       - BUILDALL now takes a reference of the %params
3102         that are passed to &new, and passes that to
3103         each BUILD as well.
3104
3105     * Moose::Util::TypeConstraints
3106       - Type constraints now survive runtime reloading
3107         - added test for this
3108
3109         * Moose::Meta::Class
3110           - fixed the way attribute defaults are handled
3111             during instance construction (bug found by chansen)
3112
3113     * Moose::Meta::Attribute
3114       - read-only attributes now actually enforce their
3115         read-only-ness (this corrected in Class::MOP as
3116         well)
3117
3118 0.02 Tues. March 21, 2006
3119     * Moose
3120       - many more tests, fixing some bugs and
3121         edge cases
3122       - &extends now loads the base module with
3123         UNIVERSAL::require
3124         - added UNIVERSAL::require to the
3125           dependencies list
3126       ** API CHANGES **
3127       - each new Moose class will also create
3128         and register a subtype of Object which
3129         correspond to the new Moose class.
3130       - the 'isa' option in &has now only
3131         accepts strings, and will DWIM in
3132         almost all cases
3133
3134     * Moose::Util::TypeConstraints
3135       - added type coercion features
3136         - added tests for this
3137         - added support for this in attributes
3138           and instance construction
3139       ** API CHANGES **
3140       - type construction no longer creates a
3141         function, it registers the type instead.
3142         - added several functions to get the
3143           registered types
3144
3145     * Moose::Object
3146       - BUILDALL and DEMOLISHALL were broken
3147         because of a mis-named hash key, Whoops :)
3148
3149     * Moose::Meta::Attribute
3150       - adding support for coercion in the
3151         autogenerated accessors
3152
3153     * Moose::Meta::Class
3154       - adding support for coercion in the
3155         instance construction
3156
3157     * Moose::Meta::TypeConstraint
3158     * Moose::Meta::TypeCoercion
3159           - type constraints and coercions are now
3160             full fledges meta-objects
3161
3162 0.01 Wed. March 15, 2006
3163     - Moooooooooooooooooose!!!