what is done for isa should be done for does, so it was written!
[gitmo/Moose.git] / Changes
CommitLineData
e522431d 1Revision history for Perl extension Moose
2
c2922d69 30.41
004222dc 4 ~~ numerous documentation updates ~~
547dda77 5
6 - Changed all usage of die to Carp::croak for better
7 error reporting (initial patch by Tod Hagan)
004222dc 8
c2922d69 9 ** IMPORTANT NOTE **
10 - the make_immutable keyword is now deprecated, don't
11 use it in any new code and please fix your old code
12 as well. There will be 2 releases, and then it will
13 be removed.
14
51c107ef 15 * Moose::Meta::Method::Constructor
16 - immutable classes which had non-lazy attributes were calling
17 the default generating sub twice in the constructor. (bug
18 found by Jesse Luehrs, fixed by Dave Rolsky)
19 - added tests for this (Dave Rolsky)
20
5e98d2b6 21 * Moose::Meta::Attribute
aed87761 22 - inherited attributes may now be extended without
2ea379cb 23 restriction on the type ('isa', 'does') (Sartak)
cf12a691 24 - added tests for this (Sartak)
547dda77 25 - when an attribute property is malformed (such as lazy without
26 a default), give the name of the attribute in the error
27 message (Sartak)
7c60f730 28
29 * Moose::Object
30 - localize $@ inside DEMOLISHALL to avoid it
31 eating $@ (found by Ernesto)
32 - added test for this (thanks to Ernesto)
cf12a691 33
52338af5 340.40 Fri. March 14, 2008
6e2840b7 35 - I hate Pod::Coverage
36
e0328ed4 370.39 Fri. March 14, 2008
8d62bf6d 38 * Moose
39 - documenting the use of '+name' with attributes
40 that come from recently composed roles. It makes
41 sense, people are using it, and so why not just
42 officially support it.
9c10b5ad 43 - fixing the 'extends' keyword so that it will not
44 trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
94075501 45
1321f087 46 * oose
47 - added the perl -Moose=+Class::Name feature to allow
48 monkeypatching of classes in one liners
49
9c10b5ad 50 * Moose::Util
51 - fixing the 'apply_all_roles' keyword so that it will not
52 trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
8d62bf6d 53
48045612 54 * Moose::Meta::Class
55 - added ->create method which now supports roles (thanks to jrockway)
56 - added tests for this
6d5cbd2b 57 - added ->create_anon_class which now supports roles and caching of
58 the results (thanks to jrockway)
59 - added tests for this
81c3738f 60 - made ->does_role a little more forgiving when it is
61 checking a Class::MOP era metaclasses.
48045612 62
94075501 63 * Moose::Meta::Role::Application::ToInstance
64 - it is now possible to pass extra params to be used when
65 a role is applied to an the instance (rebless_params)
66 - added tests for this
67
9f4334a1 68 * Moose::Util::TypeConstraints
4ab662d6 69 - class_type now accepts an optional second argument for a
70 custom message. POD anotated accordingly (groditi)
71 - added tests for this
9f4334a1 72 - it is now possible to make anon-enums by passing 'enum' an
73 ARRAY ref instead of the $name => @values. Everything else
74 works as before.
75 - added tests for this
76
8d62bf6d 77 * t/
78 - making test for using '+name' on attributes consumed
79 from a role, it works and makes sense too.
80
80d955e4 81 * Moose::Meta::Attribute
82 - fix handles so that it doesn't return nothing
83 when the method cannot be found, not sure why
f4f3e701 84 it ever did this originally, this means we now
85 have slightly better support for AUTOLOADed
86 objects
87 - added more delegation tests
587e457d 88 - adding ->does method to this so as to better
89 support traits and their introspection.
90 - added tests for this
1a386a6c 91
92 * Moose::Object
93 - localizing the Data::Dumper configurations so
94 that it does not pollute others (RT #33509)
9b1aa0c3 95 - made ->does a little more forgiving when it is
96 passed Class::MOP era metaclasses.
80d955e4 97
980.38 Fri. Feb. 15, 2008
c3b81505 99 * Moose::Meta::Attribute
100 - fixed initializer to correctly do
101 type checking and coercion in the
102 callback
103 - added tests for this
104
1a740d8a 105 * t/
106 - fixed some finicky tests (thanks to konobi)
107
80d955e4 1080.37 Thurs. Feb. 14, 2008
688fcdda 109 * Moose
110 - fixed some details in Moose::init_meta
111 and its superclass handling (thanks thepler)
112 - added tests for this (thanks thepler)
a28fe77b 113 - 'has' now dies if you don't pass in name
114 value pairs
2a5e59d0 115 - added the 'make_immutable' keyword as a shortcut
9df136d0 116 to make_immutable
688fcdda 117
118 * Moose::Meta::Class
119 Moose::Meta::Method::Constructor
120 Moose::Meta::Attribute
649b9340 121 - making (init_arg => undef) work here too
122 (thanks to nothingmuch)
be771c43 123
124 * Moose::Meta::Attribute
125 Moose::Meta::Method::Constructor
126 Moose::Meta::Method::Accessor
5fec9b97 127 - make lazy attributes respect attr initializers (rjbs)
be771c43 128 - added tests for this
688fcdda 129
130 * Moose::Util::TypeConstraints
131 Moose::Util::TypeConstraints::OptimizedConstraints
c14746bc 132 Moose::Meta::TypeConstraints
688fcdda 133 Moose::Meta::Attribute
134 Moose::Meta::Method::Constructor
135 Moose::Meta::Method::Accessor
649b9340 136 - making type errors use the
137 assigned message (thanks to Sartak)
138 - added tests for this
139
140 * Moose::Meta::Method::Destructor
141 - making sure DESTROY gets inlined properly
142 with successive DEMOLISH calls (thanks to manito)
688fcdda 143
ab76842e 144 * Moose::Meta::Attribute
145 Moose::Meta::Method::Accessor
146 - fixed handling of undef with type constraints
147 (thanks to Ernesto)
148 - added tests for this
c14746bc 149
150 * Moose::Util
151 - added &get_all_init_args and &get_all_attribute_values
152 (thanks to Sartak and nothingmuch)
ab76842e 153
e472c9a5 1540.36 Sat. Jan. 26, 2008
238b424d 155 * Moose::Role
156 Moose::Meta::Attribute
157 - role type tests now support when roles are
158 applied to non-Moose classes (found by ash)
159 - added tests for this (thanks to ash)
e472c9a5 160 - couple extra tests to boost code coverage
238b424d 161
162 * Moose::Meta::Method::Constructor
163 - improved fix for handling Class::MOP attributes
164 - added test for this
165
166 * Moose::Meta::Class
167 - handled the add_attribute($attribute_meta_object)
168 case correctly
169 - added test for this
170
3285fae9 1710.35 Tues. Jan. 22, 2008
45fd4af3 172 * Moose::Meta::Method::Constructor
173 - fix to make sure even Class::MOP attributes
472b7401 174 are handled correctly (Thanks to Dave Rolsky)
c3b35392 175 - added test for this (also Dave Rolsky)
4498537c 176
177 * Moose::Meta::Class
178 - improved error message on _apply_all_roles,
179 you should now use Moose::Util::apply_all_roles
180 and you shouldnt have been using a _ prefixed
181 method in the first place ;)
45fd4af3 182
fe05ce9c 1830.34 Mon. Jan. 21, 2008
778db3ac 184 ~~~ more misc. doc. fixes ~~~
185 ~~ updated copyright dates ~~
9b28d20b 186
187 Moose is now a postmodern object system :)
8bdc7f13 188 - (see the POD for details)
ccf49e80 189
190 * <<Role System Refactoring>>
191 - this release contains a major reworking and
192 cleanup of the role system
9b28d20b 193 - 100% backwards compat.
194 - Role application now restructured into seperate
195 classes based on type of applicants
196 - Role summation (combining of more than one role)
ccf49e80 197 is much cleaner and anon-classes are no longer
9b28d20b 198 used in this process
ccf49e80 199 - new Composite role metaclass
9b28d20b 200 - runtime application of roles to instances
201 is now more efficient and re-uses generated
202 classes when applicable
ccf49e80 203
9b28d20b 204 * <<New Role composition features>>
ccf49e80 205 - methods can now be excluded from a given role
9b28d20b 206 during composition
ccf49e80 207 - methods can now be aliased to another name (and
208 still retain the original as well)
4734114b 209
210 * Moose::Util::TypeConstraints::OptimizedConstraints
211 - added this module (see above)
212
d7d8a8c7 213 * Moose::Meta::Class
214 - fixed the &_process_attribute method to be called
4734114b 215 by &add_attribute, so that the API is now correct
216
e7c06c1e 217 * Moose::Meta::Method::Accessor
4734114b 218 - fixed bug when passing a list of values to
e7c06c1e 219 an accessor would get (incorrectly) ignored.
220 Thanks to Sartak for finding this ;)
221 - added tests for this (Sartak again)
32dd4a95 222
a4e516f6 223 * Moose::Meta::Method::Accessor
224 Moose::Meta::Method::Constructor
28412c0b 225 Moose::Meta::Attribute
ccf49e80 226 Moose::Meta::TypeConstraint
227 Moose::Meta::TypeCoercion
228 - lots of cleanup of such things as:
28412c0b 229 - generated methods
230 - type constraint handling
ccf49e80 231 - error handling/messages
232 (thanks to nothingmuch)
a4e516f6 233
4734114b 234 * Moose::Meta::TypeConstraint::Parameterizable
235 - added this module to support the refactor
236 in Moose::Meta::TypeConstraint::Parameterized
237
238 * Moose::Meta::TypeConstraint::Parameterized
239 - refactored how these types are handled so they
240 are more generic and not confined to ArrayRef
241 and HashRef only
a4e516f6 242
2de7e794 243 * t/
244 - shortened some file names for better VMS support (RT #32381)
245
25374f01 2460.33 Fri. Dec. 14, 2007
32dd4a95 247 !! Moose now loads 2 x faster !!
248 !! with new Class::MOP 0.49 !!
25374f01 249
f7865ec8 250 ++ new oose.pm module to make command line
25374f01 251 Moose-ness easier (see POD docs for more)
4734114b 252
25374f01 253 * Moose::Meta::Class
254 * Moose::Meta::Role
4734114b 255 - several tweaks to take advantage of the
25374f01 256 new method map caching in Class::MOP
257
39aba5c9 258 * Moose::Meta::TypeConstraint::Parameterized
259 - allow subtypes of ArrayRef and HashRef to
acb8a5db 260 be used as a container (sartak)
4734114b 261 - added tests for this
acb8a5db 262 - basic support for coercion to ArrayRef and
263 HashRef for containers (sartak)
4734114b 264 - added tests for this
265
25374f01 266 * Moose::Meta::TypeCoercion
267 - coercions will now create subtypes as needed
268 so you can now add coercions to parameterized
269 types without having to explictly define them
270 - added tests for this
271
ac211120 272 * Moose::Meta::Method::Accessor
273 - allow subclasses to decide whether we need
274 to copy the value into a new variable (sartak)
39aba5c9 275
dc26a424 2760.32 Tues. Dec. 4, 2007
8de73ff1 277 * Moose::Util::TypeConstraints
278 - fixing how subtype aliases of unions work
279 they should inherit the parent's coercion
280 - added tests for this
4734114b 281 - you can now define multiple coercions on
41e007e4 282 a single type at different times instead of
283 having to do it all in one place
284 - added tests for this
4734114b 285
8de73ff1 286 * Moose::Meta::TypeConstraint
287 - there is now a default constraint of sub { 1 }
288 instead of Moose::Util::TypeConstraints setting
289 this for us
290
4734114b 291 * Moose::Meta::TypeCoercion
292 * Moose::Meta::TypeCoercion::Union
293 - added the &has_coercion_for_type and
294 &add_type_coercions methods to support the
41e007e4 295 new features above (although you cannot add
296 more type coercions for Union types)
297
ffcb48b4 2980.31 Mon. Nov. 26, 2007
f3c4e20e 299 * Moose::Meta::Attribute
4734114b 300 - made the +attr syntax handle extending types with
f3c4e20e 301 parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
302 now works if the original foo is an ArrayRef.
303 - added tests for this.
304 - delegation now works even if the attribute does not
305 have a reader method using the get_read_method_ref
4734114b 306 method from Class::MOP::Attribute.
f3c4e20e 307 - added tests for this
308 - added docs for this
4734114b 309
f3c4e20e 310 * Moose::Util::TypeConstraints
4734114b 311 - passing no "additional attribute info" to
312 &find_or_create_type_constraint will no longer
313 attempt to create an __ANON__ type for you,
f3c4e20e 314 instead it will just return undef.
315 - added docs for this
316
1edfdf1c 3170.30 Fri. Nov. 23, 2007
ca168e89 318 * Moose::Meta::Method::Constructor
319 -builder related bug in inlined constructor. (groditi)
320
3822d5ee 321 * Moose::Meta::Method::Accessor
322 - genereate unnecessary calls to predicates and refactor
323 code generation for runtime speed (groditi)
324
5d776bdf 325 * Moose::Util::TypeConstraints
0e0709ea 326 - fix ClassName constraint to introspect symbol table (mst)
a0f8153d 327 - added more tests for this (mst)
328 - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
329 with work correctly.
330 - added tests for this
5d776bdf 331
1edfdf1c 332 * Moose::Cookbook
333 - adding the link to Recipie 11 (written by Sartak)
334 - adding test for SYNOPSIS code
335
4734114b 336 * t/
ca168e89 337 - New tests for builder bug. Upon instantiation, if an
338 attribute had a builder, no value and was not lazy the
339 builder default was not getting run, oops. (groditi)
340
b97b9655 3410.29 Tues. Nov. 13, 2007
0b26305c 342 * Moose::Meta::Attribute
5d776bdf 343 - Fix error message on missing builder method (groditi)
0b26305c 344
345 * Moose::Meta::Method::Accessor
5d776bdf 346 - Fix error message on missing builder method (groditi)
0b26305c 347
4734114b 348 * t/
5d776bdf 349 - Add test to check for the correct error message when
350 builder method is missing (groditi)
0b26305c 351
98c4c382 3520.28 Tues. Nov. 13, 2007
4734114b 353 - 0.27 packaged incorrectly (groditi)
98c4c382 354
e134cd19 3550.27 Tues. Nov. 13, 2007
26fbace8 356 * Moose::Meta::Attribute
357 - Added support for the new builder option (groditi)
6af1a927 358 - Added support for lazy_build option (groditi)
1ed0b94f 359 - Changed slot initialization for predicate changes (groditi)
26fbace8 360
361 * Moose::Meta::Method::Accessor
6af1a927 362 - Added support for lazy_build option (groditi)
4734114b 363 - Fix inline methods to work with corrected predicate
28669f89 364 behavior (groditi)
26fbace8 365
7a5b07b3 366 * Moose::Meta::Method::Constructor
367 - Added support for lazy_build option (groditi)
368
26fbace8 369 * t/
28669f89 370 - tests for builder and lazy_build (groditi)
26fbace8 371
4734114b 372 * fixing some misc. bits in the docs that
28669f89 373 got mentioned on CPAN Forum & perlmonks
4734114b 374
e7f8d0c2 375 * Moose::Meta::Role
4734114b 376 - fixed how required methods are handled
e7f8d0c2 377 when they encounter overriden or modified
378 methods from a class (thanks to confound).
379 - added tests for this
5af6a16d 380
3796382a 381 * Moose::Util::TypeConstraint
4734114b 382 - fixed the type notation parser so that
383 the | always creates a union and so is
384 no longer a valid type char (thanks to
385 konobi, mugwump and #moose for working
3796382a 386 this one out.)
387 - added more tests for this
388
77a18c28 3890.26 Thurs. Sept. 27, 2007
390 == New Features ==
4734114b 391
77a18c28 392 * Parameterized Types
4734114b 393 We now support parameterized collection types, such as:
77a18c28 394 ArrayRef[Int] # array or integers
395 HashRef[Object] # a hash with object values
396 They can also be nested:
397 ArrayRef[HashRef[RegExpr]] # an array of hashes with regexpr values
398 And work with the type unions as well:
399 ArrayRef[Int | Str] # array of integers of strings
4734114b 400
77a18c28 401 * Better Framework Extendability
4734114b 402 Moose.pm is now "extendable" such that it is now much
403 easier to extend the framework and add your own keywords
77a18c28 404 and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
405 section of the Moose.pm docs.
4734114b 406
77a18c28 407 * Moose Snacks!
4734114b 408 In an effort to begin documenting some of the various
409 details of Moose as well as some common idioms, we have
410 created Moose::Cookbook::Snacks as a place to find
77a18c28 411 small (easily digestable) nuggets of Moose code.
4734114b 412
77a18c28 413 ====
fb697a87 414 ~ Several doc updates/cleanup thanks to castaway ~
4734114b 415
416 - converted build system to use Module::Install instead of
e46f5cc2 417 Module::Build (thanks to jrockway)
fb697a87 418
d67145ed 419 * Moose
4734114b 420 - added all the meta classes to the immutable list and
d67145ed 421 set it to inline the accessors
4734114b 422 - fix import to allow Sub::Exporter like { into => }
e59a5c29 423 and { into_level => } (perigrin)
4734114b 424 - exposed and documented init_meta() to allow better
e59a5c29 425 embedding and extending of Moose (perigrin)
4734114b 426
e59a5c29 427 * t/
428 - complete re-organization of the test suite
4734114b 429 - added some new tests as well
77a18c28 430 - finally re-enabled the Moose::POOP test since
431 the new version of DBM::Deep now works again
432 (thanks rob)
b468a3d3 433
434 * Moose::Meta::Class
4734114b 435 - fixed very odd and very nasty recursion bug with
b468a3d3 436 inner/augment (mst)
437 - added tests for this (eilara)
d67145ed 438
3726f905 439 * Moose::Meta::Attribute
440 Moose::Meta::Method::Constructor
441 Moose::Meta::Method::Accessor
4734114b 442 - fixed issue with overload::Overloaded getting called
f1917f58 443 on non-blessed items. (RT #29269)
3726f905 444 - added tests for this
4734114b 445
3ccdc84a 446 * Moose::Meta::Method::Accessor
4734114b 447 - fixed issue with generated accessor code making
3ccdc84a 448 assumptions about hash based classes (thanks to dexter)
4734114b 449
3726f905 450 * Moose::Coookbook::Snacks
4734114b 451 - these are bits of documentation, not quite as big as
452 Recipes but which have no clear place in the module docs.
3726f905 453 So they are Snacks! (horray for castaway++)
454
07cde929 455 * Moose::Cookbook::Recipe4
456 - updated it to use the new ArrayRef[MyType] construct
457 - updated the accompanying test as well
458
3726f905 459 +++ Major Refactor of the Type Constraint system +++
460 +++ with new features added as well +++
461
22aed3c0 462 * Moose::Util::TypeConstraint
4734114b 463 - no longer uses package variable to keep track of
22aed3c0 464 the type constraints, now uses the an instance of
465 Moose::Meta::TypeConstraint::Registry to do it
f1917f58 466 - added more sophisticated type notation parsing
467 (thanks to mugwump)
468 - added tests for this
22aed3c0 469
d67145ed 470 * Moose::Meta::TypeConstraint
471 - some minor adjustments to make subclassing easier
4734114b 472 - added the package_defined_in attribute so that we
22aed3c0 473 can track where the type constraints are created
4734114b 474
d67145ed 475 * Moose::Meta::TypeConstraint::Union
4734114b 476 - this is now been refactored to be a subclass of
3726f905 477 Moose::Meta::TypeConstraint
4734114b 478
3726f905 479 * Moose::Meta::TypeCoercion::Union
480 - this has been added to service the newly refactored
4734114b 481 Moose::Meta::TypeConstraint::Union and is itself
3726f905 482 a subclass of Moose::Meta::TypeCoercion
4734114b 483
0fbd4b0a 484 * Moose::Meta::TypeConstraint::Parameterized
d67145ed 485 - added this module (taken from MooseX::AttributeHelpers)
486 to help construct nested collection types
487 - added tests for this
4734114b 488
22aed3c0 489 * Moose::Meta::TypeConstraint::Registry
490 - added this class to keep track of type constraints
d67145ed 491
887169d7 4920.25 Mon. Aug. 13, 2007
8eca434b 493 * Moose
4734114b 494 - Documentation update to reference Moose::Util::TypeConstraints
495 under 'isa' in 'has' for how to define a new type
8eca434b 496 (thanks to shlomif).
497
ab859145 498 * Moose::Meta::Attribute
4734114b 499 - required attributes now will no longer accept undef
ab859145 500 from the constructor, even if there is a default and lazy
501 - added tests for this
4734114b 502 - default subroutines must return a value which passes the
7a5ebc40 503 type constraint
504 - added tests for this
4734114b 505
a909a4df 506 * Moose::Meta::Attribute
507 * Moose::Meta::Method::Constructor
4734114b 508 * Moose::Meta::Method::Accessor
a909a4df 509 - type-constraint tests now handle overloaded objects correctly
510 in the error message
4734114b 511 - added tests for this (thanks to EvanCarroll)
ab859145 512
8eca434b 513 * Moose::Meta::TypeConstraint::Union
4734114b 514 - added (has_)hand_optimized_constraint to this class so that
8eca434b 515 it behaves as the regular Moose::Meta::TypeConstraint does.
516
5868294f 517 * Moose::Meta::Role
887169d7 518 - large refactoring of this code
4734114b 519 - added several more tests
520 - tests for subtle conflict resolition issues
7125b244 521 added, but not currently running
522 (thanks to kolibre)
523
4734114b 524 * Moose::Cookbook::Recipe7
525 - added new recipe for augment/inner functionality
887169d7 526 (still in progress)
7125b244 527 - added test for this
5868294f 528
24a8fe99 529 * Moose::Spec::Role
7125b244 530 - a formal definition of roles (still in progress)
24a8fe99 531
9a641848 532 * Moose::Util
887169d7 533 - utilities for easier working with Moose classes
7125b244 534 - added tests for these
9a641848 535
536 * Test::Moose
887169d7 537 - This contains Moose specific test functions
7125b244 538 - added tests for these
9a641848 539
6b4c1bdd 5400.24 Tues. July 3, 2007
541 ~ Some doc updates/cleanup ~
c84f324f 542
543 * Moose::Meta::Attribute
4734114b 544 - added support for roles to be given as parameters
c84f324f 545 to the 'handles' option.
546 - added tests and docs for this
4734114b 547 - the has '+foo' attribute form now accepts changes to
83cc9094 548 the lazy option, and the addition of a handles option
549 (but not changing the handles option)
550 - added tests and docs for this
c84f324f 551
1db8ecc7 552 * Moose::Meta::Role
553 - required methods are now fetched using find_method_by_name
554 so that required methods can come from superclasses
555 - adjusted tests for this
556
81941e9b 5570.23 Mon. June 18, 2007
73b84d2e 558 * Moose::Meta::Method::Constructor
559 - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
ac2dc464 560 * Moose::Meta::Class
561 - Modify make_immutable to work with the new Class::MOP immutable
562 mechanism + POD + very basic test (groditi)
cbe25729 563 * Moose::Meta::Attribute
4734114b 564 - Fix handles to use goto() so that caller() comes out properly on
cbe25729 565 the other side (perigrin)
ac2dc464 566
db53853c 5670.22 Thurs. May 31, 2007
3969267d 568 * Moose::Util::TypeConstraints
4734114b 569 - fix for prototype undeclared issue when Moose::Util::TypeConstraints
db53853c 570 loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
571 prototypes for functions
4734114b 572 - added the ClassName type constraint, this checks for strings
573 which will respond true to ->isa(UNIVERSAL).
9af1d28b 574 - added tests and docs for this
4734114b 575 - subtyping just in name now works correctly by making the
86629f93 576 default for where be { 1 }
4734114b 577 - added test for this
3969267d 578
d7611a4a 579 * Moose::Meta::Method::Accessor
4734114b 580 - coerce and lazy now work together correctly, thanks to
d7611a4a 581 merlyn for finding this bug
582 - tests added for this
df492bba 583 - fix reader presedence bug in Moose::Meta::Attribute + tests
d7611a4a 584
86629f93 585 * Moose::Object
586 - Foo->new(undef) now gets ignored, it is assumed you meant to pass
4734114b 587 a HASH-ref and missed. This produces better error messages then
86629f93 588 having it die cause undef is not a HASH.
589 - added tests for this
590
74a0a945 5910.21 Thursday, May 2nd, 2007
52c7c330 592 * Moose
593 - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
594 - modified unimport to remove super and inner along with the rest
595 - altered unimport tests to handle this
596
597 * Moose::Role
598 - altered super export to populate SUPER_SLOT
599
600 * Moose::Meta::Class
601 - altered augment and override modifier application to use *_SLOT
602 - modified tests for these to unimport one test class each to test
603
492d4d76 604 * Moose::Meta::Role
605 - fixed issue where custom attribute metaclasses
606 where not handled correctly in roles
607 - added tests for this
4734114b 608
5cb193ed 609 * Moose::Meta::Class
4734114b 610 - fixed issue where extending metaclasses with
5cb193ed 611 roles would blow up. Thanks to Aankhen`` for
612 finding this insidious error, and it's solution.
4734114b 613
614 ~~ lots of spelling and grammer fixes in the docs,
0305961b 615 many many thanks to rlb3 and Aankhen for these :)
492d4d76 616
e518dfb4 6170.20 Friday, April 6th, 2007
a60285b3 618 >> I messed up the SKIP logic in one test
619 so this release is just to fix that.
620
93c435b3 621 * Moose
622 - 'has' now also accepts an ARRAY ref
623 to create multiple attrs (see docs)
624 (thanks to konobi for this)
4734114b 625 - added tests and docs
93c435b3 626
cd7eeaf5 6270.19 Thurs. April 5th, 2007
628 ~~ More documentation updates ~~
629
c899258b 630 * Moose::Util::TypeConstraints
c1935ade 631 - 'type' now supports messages as well
ddbdc0cb 632 thanks to phaylon for finding this
c899258b 633 - added tests for this
4734114b 634 - added &list_all_type_constraints and
c1935ade 635 &list_all_builtin_type_constraints
943596a6 636 functions to facilitate introspection.
4734114b 637
d022f632 638 * Moose::Meta::Attribute
4734114b 639 - fixed regexp 'handles' declarations
d022f632 640 to build the list of delegated methods
4734114b 641 correctly (and not override important
642 things like &new) thanks to ashleyb
ddbdc0cb 643 for finding this
644 - added tests and docs for this
c1935ade 645 - added the 'documentation' attributes
4734114b 646 so that you can actually document your
647 attributes and inspect them through the
ddbdc0cb 648 meta-object.
d022f632 649 - added tests and docs for this
650
c1935ade 651 * Moose::Meta::Class
652 - when loading custom attribute metaclasses
4734114b 653 it will first look in for the class in the
654 Moose::Meta::Attribute::Custom::$name, and
c1935ade 655 then default to just loading $name.
656 - added tests and docs for this
657
900466d6 658 * Moose::Meta::TypeConstraint
659 - type constraints now stringify to their names.
660 - added test for this
661
d022f632 662 * misc.
4734114b 663 - added tests to assure we work with Module::Refresh
664 - added stricter test skip logic in the Moose POOP
ddbdc0cb 665 test, ask Rob Kinyon why.
666 - *cough* DBM::Deep 1.0 backwards compatability sucks *cough* ;)
c899258b 667
af5199c6 6680.18 Sat. March 10, 2007
669 ~~ Many, many documentation updates ~~
ddbdc0cb 670
671 * misc.
4734114b 672 - We now use Class::MOP::load_class to
673 load all classes.
674 - added tests to show types and subtypes
ddbdc0cb 675 working with Declare::Constraints::Simple
676 and Test::Deep as constraint engines.
b77fdbed 677
587ae0d2 6780.18_001
d01f1dab 679 !! You must have Class::MOP 0.37_001 !!
680 !! for this developer release to work !!
681
734d1752 682 This release was primarily adding the immutable
4734114b 683 feature to Moose. An immutable class is one which
684 you promise not to alter. When you set the class
685 as immutable it will perform various bits of
734d1752 686 memoization and inline certain part of the code
4734114b 687 (constructors, destructors and accessors). This
734d1752 688 minimizes (and in some cases totally eliminates)
4734114b 689 one of Moose's biggest performance hits. This
734d1752 690 feature is not on by default, and is 100% optional.
4734114b 691 It has several configurable bits as well, so you
734d1752 692 can pick and choose to your specific needs.
4734114b 693
694 The changes involved in this were fairly wide and
695 highly specific, but 100% backwards compatible, so
696 I am not going to enumerate them here. If you are
697 truely interested in what was changed, please do
734d1752 698 a diff :)
587ae0d2 699
7000.17 Tues. Nov. 14, 2006
701 * Moose::Meta::Method::Accessor
4734114b 702 - bugfix for read-only accessors which
587ae0d2 703 are have a type constraint and lazy.
704 Thanks to chansen for finding it.
705
7060.16 Tues. Nov. 14, 2006
707 ++ NOTE ++
4734114b 708 There are some speed improvements in this release,
587ae0d2 709 but they are only the begining, so stay tuned.
4734114b 710
587ae0d2 711 * Moose::Object
4734114b 712 - BUILDALL and DEMOLISHALL no longer get
587ae0d2 713 called unless they actually need to be.
714 This gave us a signifigant speed boost
4734114b 715 for the cases when there is no BUILD or
587ae0d2 716 DEMOLISH method present.
4734114b 717
587ae0d2 718 * Moose::Util::TypeConstraints
719 * Moose::Meta::TypeConstraint
4734114b 720 - added an 'optimize_as' option to the
587ae0d2 721 type constraint, which allows for a
4734114b 722 hand optimized version of the type
587ae0d2 723 constraint to be used when possible.
724 - Any internally created type constraints
725 now provide an optimized version as well.
726
ecb59493 7270.15 Sun. Nov. 5, 2006
946289d1 728 ++ NOTE ++
4734114b 729 This version of Moose *must* have Class::MOP 0.36 in order
730 to work correctly. A number of small internal tweaks have
946289d1 731 been made in order to be compatible with that release.
571dd39f 732
733 * Moose::Util::TypeConstraints
4734114b 734 - added &unimport so that you can clean out
735 your class namespace of these exported
571dd39f 736 keywords
4734114b 737
37ee30c9 738 * Moose::Meta::Class
4734114b 739 - fixed minor issue which occasionally
740 comes up during global destruction
37ee30c9 741 (thanks omega)
4734114b 742 - moved Moose::Meta::Method::Overriden into
946289d1 743 its own file.
4734114b 744
745 * Moose::Meta::Role
746 - moved Moose::Meta::Role::Method into
946289d1 747 its own file.
4734114b 748
43123819 749 * Moose::Meta::Attribute
4734114b 750 - changed how we do type checks so that
751 we reduce the overall cost, but still
7623f774 752 retain correctness.
946289d1 753 *** API CHANGE ***
4734114b 754 - moved accessor generation methods to
755 Moose::Meta::Method::Accessor to
756 conform to the API changes from
946289d1 757 Class::MOP 0.36
4734114b 758
43123819 759 * Moose::Meta::TypeConstraint
760 - changed how constraints are compiled
761 so that we do less recursion and more
4734114b 762 iteration. This makes the type check
43123819 763 faster :)
946289d1 764 - moved Moose::Meta::TypeConstraint::Union
765 into its own file
4734114b 766
946289d1 767 * Moose::Meta::Method::Accessor
4734114b 768 - created this from methods formerly found in
946289d1 769 Moose::Meta::Attribute
4734114b 770
946289d1 771 * Moose::Meta::Role::Method
772 - moved this from Moose::Meta::Role
4734114b 773
946289d1 774 * Moose::Meta::Method::Overriden
775 - moved this from Moose::Meta::Class
4734114b 776
946289d1 777 * Moose::Meta::TypeConstraint::Union
778 - moved this from Moose::Meta::TypeConstraint
37ee30c9 779
3ec7b7a3 7800.14 Mon. Oct. 9, 2006
4fd69d6c 781
782 * Moose::Meta::Attribute
4734114b 783 - fixed lazy attributes which were not getting
4fd69d6c 784 checked with the type constraint (thanks ashley)
785 - added tests for this
4734114b 786 - removed the over-enthusiastic DWIMery of the
787 automatic ArrayRef and HashRef defaults, it
3ec7b7a3 788 broke predicates in an ugly way.
789 - removed tests for this
4fd69d6c 790
c0c41f76 7910.13 Sat. Sept. 30, 2006
093b12c2 792 ++ NOTE ++
4734114b 793 This version of Moose *must* have Class::MOP 0.35 in order
794 to work correctly. A number of small internal tweaks have
093b12c2 795 been made in order to be compatible with that release.
796
3c2bc5e2 797 * Moose
798 - Removed the use of UNIVERSAL::require to be a better
4734114b 799 symbol table citizen and remove a dependency
093b12c2 800 (thanks Adam Kennedy)
3c2bc5e2 801
2a0f3bd3 802 **~~ removed experimental & undocumented feature ~~**
4734114b 803 - commented out the 'method' and 'self' keywords, see the
2a0f3bd3 804 comments for more info.
805
e95c7c42 806 * Moose::Cookbook
4734114b 807 - added a FAQ and WTF files to document frequently
e95c7c42 808 asked questions and common problems
4734114b 809
3f7376b0 810 * Moose::Util::TypeConstraints
0a5bd159 811 - added GlobRef and FileHandle type constraint
3f7376b0 812 - added tests for this
4734114b 813
3f7376b0 814 * Moose::Meta::Attribute
815 - if your attribute 'isa' ArrayRef of HashRef, and you have
816 not explicitly set a default, then make the default DWIM.
4734114b 817 This will also work for subtypes of ArrayRef and HashRef
94b8bbb8 818 as well.
819 - you can now auto-deref subtypes of ArrayRef or HashRef too.
820 - new test added for this (thanks to ashley)
4734114b 821
b805c70c 822 * Moose::Meta::Role
823 - added basic support for runtime role composition
4734114b 824 but this is still *highly experimental*, so feedback
0a5bd159 825 is much appreciated :)
b805c70c 826 - added tests for this
e95c7c42 827
0a5bd159 828 * Moose::Meta::TypeConstraint
829 - the type constraint now handles the coercion process
4734114b 830 through delegation, this is to support the coercion
0a5bd159 831 of unions
4734114b 832
0a5bd159 833 * Moose::Meta::TypeConstraint::Union
4734114b 834 - it is now possible for coercions to be performed
0a5bd159 835 on a type union
836 - added tests for this (thanks to konobi)
837
e95c7c42 838 * Moose::Meta::TypeCoercion
4734114b 839 - properly capturing error when type constraint
e95c7c42 840 is not found
841
3c2bc5e2 842 * Build.PL
843 - Scalar::Util 1.18 is bad on Win32, so temporarily
844 only require version 1.17 for Win32 and cygwin.
4734114b 845 (thanks Adam Kennedy)
3c2bc5e2 846
40e89659 8470.12 Sat. Sept. 1, 2006
2bdd01cd 848 * Moose::Cookbook
849 - Recipe5 (subtypes & coercion) has been written
4734114b 850
2bdd01cd 851 * Moose
4734114b 852 - fixed "bad meta" error message to be more descriptive
853 - fixed &unimport to not remove the &inner and &super
3279ab4a 854 keywords because we need to localize them.
68efb014 855 - fixed number of spelling/grammer issues, thanks Theory :)
4734114b 856
0558683c 857 **~~ experimental & undocumented feature ~~**
4734114b 858 - added the method and self keywords, they are basically
68efb014 859 just sugar, and they may not stay around.
4734114b 860
f742dfef 861 * Moose::Object
4734114b 862 - added &dump method to easily Data::Dumper
68efb014 863 an object
4734114b 864
b26e162e 865 * Moose::Meta::TypeConstraint
866 - added the &is_a_type_of method to check both the current
867 and the subtype of a method (similar to &isa with classes)
f008ac1f 868
68efb014 869 * Moose::Meta::Role
870 - this is now a subclass of Class::MOP::Module, and no longer
4734114b 871 creates the _role_meta ugliness of before.
68efb014 872 - fixed tests to reflect this change
4734114b 873
8c835eba 8740.11 Wed. July 12, 2006
31f8ec72 875 * Moose
876 - added an &unimport method to remove all the keywords
4734114b 877 that Moose will import, simply add 'no Moose' to the
878 bottom of your class file.
879
31f8ec72 880 * t/
4734114b 881 - fixed some test failures caused by a forgotten test
31f8ec72 882 dependency.
883
864cd714 8840.10 Thurs. July 6, 2006
01a8e221 885 * Moose
886 - improved error message when loading modules so
887 it is less confusing when you load a role.
4734114b 888 - added &calculate_all_roles method to
2b14ac61 889 Moose::Meta::Class and Moose::Meta::Role
4734114b 890
2b14ac61 891 NOTE:
892 This module has been tested against Class::MOP 0.30
4734114b 893 but it does not yet utilize the optimizations
2b14ac61 894 it makes available. Stay tuned for that ;)
4734114b 895
2b14ac61 8960.09_03 Fri. June 23, 2006
715ea0b7 897 ++ DEVELOPER RELEASE ++
4276ccb4 898 * Moose
899 - 'use strict' and 'use warnings' are no longer
4734114b 900 needed in Moose classes, Moose itself will
4276ccb4 901 turn them on for you.
902 - added tests for this
1341f10c 903 - moved code from exported subs to private methods
904 in Moose::Meta::Class
4734114b 905
4276ccb4 906 * Moose::Role
4734114b 907 - as with Moose, strict and warnings are
4276ccb4 908 automatically turned on for you.
4734114b 909 - added tests for this
910
e39d707f 911 * Moose::Meta::Role
912 - now handles an edge case for override errors
913 - added tests for this
b7f2d25b 914 - added some more edge case tests
1341f10c 915
43d599e5 9160.09_02 Tues. May 16, 2006
715ea0b7 917 ++ DEVELOPER RELEASE ++
2c0cbef7 918 * Moose
919 - added prototypes to the exported subs
43d599e5 920 - updated docs
4734114b 921
2c0cbef7 922 * Moose::Role
4734114b 923 - added prototypes to the exported subs
43d599e5 924 - updated docs
4734114b 925
2c0cbef7 926 * Moose::Util::TypeConstraints
4734114b 927 - cleaned up prototypes for the subs
928 - updated docs
2c0cbef7 929
72c4f6d1 9300.09_01 Fri. May 12, 2006
931 ++ DEVELOPER RELEASE ++
4734114b 932 - This release works in combination with
933 Class::MOP 0.29_01, it is a developer
934 release because it uses the a new
72c4f6d1 935 instance sub-protocol and a fairly
4734114b 936 complete Role implementation. It has
72c4f6d1 937 not yet been optimized, so it slower
4734114b 938 the the previous CPAN version. This
939 release also lacks good updated docs,
72c4f6d1 940 the official release will have updated docs.
941
4734114b 942 * Moose
98aae381 943 - refactored the keyword exports
4734114b 944 - 'with' now checks Role validaity and
db1ab48d 945 accepts more than one Role at a time
4734114b 946 - 'extends' makes metaclass adjustments as
98aae381 947 needed to ensure metaclass compatability
4734114b 948
72c4f6d1 949 * Moose::Role
950 - refactored the keyword exports
4734114b 951 - 'with' now checks Role validaity and
72c4f6d1 952 accepts more than one Role at a time
4734114b 953
98aae381 954 * Moose::Util::TypeConstraints
4734114b 955 - added the 'enum' keyword for simple
956 string enumerations which can be used as
98aae381 957 type constraints
db1ab48d 958 - see example of usage in t/202_example.t
4734114b 959
98aae381 960 * Moose::Object
961 - more careful checking of params to new()
4734114b 962
72c4f6d1 963 * Moose::Meta::Role
964 - much work done on the role composition
4734114b 965 - many new tests for conflict detection
72c4f6d1 966 and composition edge cases
4734114b 967 - not enough documentation, I suggest
968 looking at the tests
969
98aae381 970 * Moose::Meta::Instance
4734114b 971 - added new Instance metaclass to support
98aae381 972 the new Class::MOP instance protocol
4734114b 973
98aae381 974 * Moose::Meta::Class
4734114b 975 - some small changes to support the new
98aae381 976 instance protocol
72c4f6d1 977 - some small additions to support Roles
4734114b 978
98aae381 979 * Moose::Meta::Attribute
980 - some improvements to the accessor generation code
981 by nothingmuch
4734114b 982 - some small changes to support the new
98aae381 983 instance protocol
4734114b 984 - (still somewhat) experimental delegation support
98aae381 985 with the 'handles' option
986 - added several tests for this
db1ab48d 987 - no docs for this yet
98aae381 988
35c8b8f2 9890.05 Thurs. April 27, 2006
2d562421 990 * Moose
991 - keywords are now exported with Sub::Exporter
992 thanks to chansen for this commit
4734114b 993 - has keyword now takes a 'metaclass' option
994 to support custom attribute meta-classes
590868a3 995 on a per-attribute basis
4734114b 996 - added tests for this
daea75c9 997 - the 'has' keyword not accepts inherited slot
4734114b 998 specifications (has '+foo'). This is still an
daea75c9 999 experimental feature and probably not finished
4734114b 1000 see t/038_attribute_inherited_slot_specs.t for
daea75c9 1001 more details, or ask about it on #moose
fcb7afc2 1002 - added tests for this
4734114b 1003
2d562421 1004 * Moose::Role
1005 - keywords are now exported with Sub::Exporter
1006
5204cd52 1007 * Moose::Utils::TypeConstraints
cce8198b 1008 - reorganized the type constraint hierarchy, thanks
4734114b 1009 to nothingmuch and chansen for his help and advice
cce8198b 1010 on this
1011 - added some tests for this
7eaef7ad 1012 - keywords are now exported with Sub::Exporter
35c8b8f2 1013 thanks to chansen for this commit
5204cd52 1014
d500266f 1015 * Moose::Meta::Class
1016 - due to changes in Class::MOP, we had to change
1017 construct_instance (for the better)
4734114b 1018
d500266f 1019 * Moose::Meta::Attribute
4734114b 1020 - due to changes in Class::MOP, we had to add the
d500266f 1021 initialize_instance_slot method (it's a good thing)
4734114b 1022
cce8198b 1023 * Moose::Meta::TypeConstraint
4734114b 1024 - added type constraint unions
c07af9d2 1025 - added tests for this
cce8198b 1026 - added the is_subtype_of predicate method
1027 - added tests for this
d500266f 1028
02a0fb52 10290.04 Sun. April 16th, 2006
1331430a 1030 * Moose::Role
1031 - Roles can now consume other roles
1032 - added tests for this
4734114b 1033 - Roles can specify required methods now with
1331430a 1034 the requires() keyword
1035 - added tests for this
1036
bdabd620 1037 * Moose::Meta::Role
1038 - ripped out much of it's guts ,.. much cleaner now
4734114b 1039 - added required methods and correct handling of
fa1be058 1040 them in apply() for both classes and roles
1041 - added tests for this
4734114b 1042 - no longer adds a does() method to consuming classes
1331430a 1043 it relys on the one in Moose::Object
4734114b 1044 - added roles attribute and some methods to support
1331430a 1045 roles consuming roles
8c9d74e7 1046
1047 * Moose::Meta::Attribute
1048 - added support for triggers on attributes
1049 - added tests for this
4734114b 1050 - added support for does option on an attribute
02a0fb52 1051 - added tests for this
4734114b 1052
8c9d74e7 1053 * Moose::Meta::Class
4734114b 1054 - added support for attribute triggers in the
8c9d74e7 1055 object construction
1056 - added tests for this
4734114b 1057
256903b6 1058 * Moose
4734114b 1059 - Moose no longer creates a subtype for your class
1060 if a subtype of the same name already exists, this
256903b6 1061 should DWIM in 99.9999% of all cases
4734114b 1062
256903b6 1063 * Moose::Util::TypeConstraints
4734114b 1064 - fixed bug where incorrect subtype conflicts were
256903b6 1065 being reported
8c9d74e7 1066 - added test for this
4734114b 1067
8c9d74e7 1068 * Moose::Object
1069 - this class can now be extended with 'use base' if
1070 you need it, it properly loads the metaclass class now
1071 - added test for this
bdabd620 1072
0677220d 10730.03_02 Wed. April 12, 2006
05d9eaf6 1074 * Moose
1075 - you must now explictly use Moose::Util::TypeConstraints
1076 it no longer gets exported for you automatically
4734114b 1077
05d9eaf6 1078 * Moose::Object
1079 - new() now accepts hash-refs as well as key/value lists
0677220d 1080 - added does() method to check for Roles
1081 - added tests for this
05d9eaf6 1082
0677220d 1083 * Moose::Meta::Class
4734114b 1084 - added roles attribute along with the add_role() and
0677220d 1085 does_role() methods
4734114b 1086 - added tests for this
0677220d 1087
1088 * Moose::Meta::Role
4734114b 1089 - now adds a does() method to consuming classes
0677220d 1090 which tests the class's hierarchy for roles
1091 - added tests for this
1092
10930.03_01 Mon. April 10, 2006
e9ec68d6 1094 * Moose::Cookbook
76d37e5a 1095 - added new Role recipe (no content yet, only code)
4734114b 1096
e9ec68d6 1097 * Moose
1098 - added 'with' keyword for Role support
1099 - added test and docs for this
1100 - fixed subtype quoting bug
4734114b 1101 - added test for this
e9ec68d6 1102
1103 * Moose::Role
1104 - Roles for Moose
1105 - added test and docs
76d37e5a 1106
1107 * Moose::Util::TypeConstraints
1108 - added the message keyword to add custom
4734114b 1109 error messages to type constraints
1110
e9ec68d6 1111 * Moose::Meta::Role
1112 - the meta role to support Moose::Role
1113 - added tests and docs
4734114b 1114
e9ec68d6 1115 * Moose::Meta::Class
4734114b 1116 - moved a number of things from Moose.pm
1117 to here, they should have been here
e9ec68d6 1118 in the first place
1119
1120 * Moose::Meta::Attribute
1121 - moved the attribute option macros here
1122 instead of putting them in Moose.pm
e185c027 1123
76d37e5a 1124 * Moose::Meta::TypeConstraint
4734114b 1125 - added the message attributes and the
76d37e5a 1126 validate method
1127 - added tests and docs for this
1128
0ac928d2 11290.03 Thurs. March 30, 2006
e9bb8a31 1130 * Moose::Cookbook
4734114b 1131 - added the Moose::Cookbook with 5 recipes,
e9bb8a31 1132 describing all the stuff Moose can do.
1133
d7f17ebb 1134 * Moose
1135 - fixed an issue with &extends super class loading
4734114b 1136 it now captures errors and deals with inline
1137 packages correctly (bug found by mst, solution
d7f17ebb 1138 stolen from alias)
159da176 1139 - added super/override & inner/augment features
1140 - added tests and docs for these
4734114b 1141
d7f17ebb 1142 * Moose::Object
4734114b 1143 - BUILDALL now takes a reference of the %params
1144 that are passed to &new, and passes that to
d7f17ebb 1145 each BUILD as well.
4734114b 1146
471c4f09 1147 * Moose::Util::TypeConstraints
1148 - Type constraints now survive runtime reloading
1149 - added test for this
d7f17ebb 1150
8339fae2 1151 * Moose::Meta::Class
4734114b 1152 - fixed the way attribute defaults are handled
8339fae2 1153 during instance construction (bug found by chansen)
1154
d7f17ebb 1155 * Moose::Meta::Attribute
1156 - read-only attributes now actually enforce their
4734114b 1157 read-only-ness (this corrected in Class::MOP as
9deed647 1158 well)
d7f17ebb 1159
076c81ed 11600.02 Tues. March 21, 2006
fc5609d2 1161 * Moose
4734114b 1162 - many more tests, fixing some bugs and
b841b2a3 1163 edge cases
b841b2a3 1164 - &extends now loads the base module with
4734114b 1165 UNIVERSAL::require
1166 - added UNIVERSAL::require to the
b841b2a3 1167 dependencies list
6ba6d68c 1168 ** API CHANGES **
4734114b 1169 - each new Moose class will also create
1170 and register a subtype of Object which
1171 correspond to the new Moose class.
1172 - the 'isa' option in &has now only
1173 accepts strings, and will DWIM in
b841b2a3 1174 almost all cases
4734114b 1175
b841b2a3 1176 * Moose::Util::TypeConstraints
1177 - added type coercion features
1178 - added tests for this
4734114b 1179 - added support for this in attributes
b841b2a3 1180 and instance construction
6ba6d68c 1181 ** API CHANGES **
4734114b 1182 - type construction no longer creates a
b841b2a3 1183 function, it registers the type instead.
4734114b 1184 - added several functions to get the
1185 registered types
6ba6d68c 1186
1187 * Moose::Object
4734114b 1188 - BUILDALL and DEMOLISHALL were broken
6ba6d68c 1189 because of a mis-named hash key, Whoops :)
4734114b 1190
b841b2a3 1191 * Moose::Meta::Attribute
1192 - adding support for coercion in the
1193 autogenerated accessors
4734114b 1194
b841b2a3 1195 * Moose::Meta::Class
1196 - adding support for coercion in the
4734114b 1197 instance construction
6ba6d68c 1198
1199 * Moose::Meta::TypeConstraint
1200 * Moose::Meta::TypeCoercion
4734114b 1201 - type constraints and coercions are now
6ba6d68c 1202 full fledges meta-objects
fc5609d2 1203
e522431d 12040.01 Wed. March 15, 2006
900466d6 1205 - Moooooooooooooooooose!!!