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