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