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