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