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