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