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