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