0.26 (for real)
[gitmo/Moose.git] / Changes
CommitLineData
e522431d 1Revision history for Perl extension Moose
2
77a18c28 30.26 Thurs. Sept. 27, 2007
4 == New Features ==
5
6 * Parameterized Types
7 We now support parameterized collection types, such as:
8 ArrayRef[Int] # array or integers
9 HashRef[Object] # a hash with object values
10 They can also be nested:
11 ArrayRef[HashRef[RegExpr]] # an array of hashes with regexpr values
12 And work with the type unions as well:
13 ArrayRef[Int | Str] # array of integers of strings
14
15 * Better Framework Extendability
16 Moose.pm is now "extendable" such that it is now much
17 easier to extend the framework and add your own keywords
18 and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
19 section of the Moose.pm docs.
20
21 * Moose Snacks!
22 In an effort to begin documenting some of the various
23 details of Moose as well as some common idioms, we have
24 created Moose::Cookbook::Snacks as a place to find
25 small (easily digestable) nuggets of Moose code.
26
27 ====
fb697a87 28 ~ Several doc updates/cleanup thanks to castaway ~
e46f5cc2 29
30 - converted build system to use Module::Install instead of
31 Module::Build (thanks to jrockway)
fb697a87 32
d67145ed 33 * Moose
34 - added all the meta classes to the immutable list and
35 set it to inline the accessors
9bcfbab1 36 - fix import to allow Sub::Exporter like { into => }
e59a5c29 37 and { into_level => } (perigrin)
9bcfbab1 38 - exposed and documented init_meta() to allow better
e59a5c29 39 embedding and extending of Moose (perigrin)
40
41 * t/
42 - complete re-organization of the test suite
b468a3d3 43 - added some new tests as well
77a18c28 44 - finally re-enabled the Moose::POOP test since
45 the new version of DBM::Deep now works again
46 (thanks rob)
b468a3d3 47
48 * Moose::Meta::Class
49 - fixed very odd and very nasty recursion bug with
50 inner/augment (mst)
51 - added tests for this (eilara)
d67145ed 52
3726f905 53 * Moose::Meta::Attribute
54 Moose::Meta::Method::Constructor
55 Moose::Meta::Method::Accessor
56 - fixed issue with overload::Overloaded getting called
f1917f58 57 on non-blessed items. (RT #29269)
3726f905 58 - added tests for this
59
3ccdc84a 60 * Moose::Meta::Method::Accessor
61 - fixed issue with generated accessor code making
62 assumptions about hash based classes (thanks to dexter)
63
3726f905 64 * Moose::Coookbook::Snacks
65 - these are bits of documentation, not quite as big as
66 Recipes but which have no clear place in the module docs.
67 So they are Snacks! (horray for castaway++)
68
07cde929 69 * Moose::Cookbook::Recipe4
70 - updated it to use the new ArrayRef[MyType] construct
71 - updated the accompanying test as well
72
3726f905 73 +++ Major Refactor of the Type Constraint system +++
74 +++ with new features added as well +++
75
22aed3c0 76 * Moose::Util::TypeConstraint
77 - no longer uses package variable to keep track of
78 the type constraints, now uses the an instance of
79 Moose::Meta::TypeConstraint::Registry to do it
f1917f58 80 - added more sophisticated type notation parsing
81 (thanks to mugwump)
82 - added tests for this
22aed3c0 83
d67145ed 84 * Moose::Meta::TypeConstraint
85 - some minor adjustments to make subclassing easier
22aed3c0 86 - added the package_defined_in attribute so that we
87 can track where the type constraints are created
d67145ed 88
89 * Moose::Meta::TypeConstraint::Union
3726f905 90 - this is now been refactored to be a subclass of
91 Moose::Meta::TypeConstraint
92
93 * Moose::Meta::TypeCoercion::Union
94 - this has been added to service the newly refactored
95 Moose::Meta::TypeConstraint::Union and is itself
96 a subclass of Moose::Meta::TypeCoercion
d67145ed 97
0fbd4b0a 98 * Moose::Meta::TypeConstraint::Parameterized
d67145ed 99 - added this module (taken from MooseX::AttributeHelpers)
100 to help construct nested collection types
101 - added tests for this
18ea2bcc 102
22aed3c0 103 * Moose::Meta::TypeConstraint::Registry
104 - added this class to keep track of type constraints
d67145ed 105
887169d7 1060.25 Mon. Aug. 13, 2007
8eca434b 107 * Moose
108 - Documentation update to reference Moose::Util::TypeConstraints
109 under 'isa' in 'has' for how to define a new type
110 (thanks to shlomif).
111
ab859145 112 * Moose::Meta::Attribute
113 - required attributes now will no longer accept undef
114 from the constructor, even if there is a default and lazy
115 - added tests for this
7a5ebc40 116 - default subroutines must return a value which passes the
117 type constraint
118 - added tests for this
a909a4df 119
120 * Moose::Meta::Attribute
121 * Moose::Meta::Method::Constructor
122 * Moose::Meta::Method::Accessor
123 - type-constraint tests now handle overloaded objects correctly
124 in the error message
125 - added tests for this (thanks to EvanCarroll)
ab859145 126
8eca434b 127 * Moose::Meta::TypeConstraint::Union
128 - added (has_)hand_optimized_constraint to this class so that
129 it behaves as the regular Moose::Meta::TypeConstraint does.
130
5868294f 131 * Moose::Meta::Role
887169d7 132 - large refactoring of this code
24a8fe99 133 - added several more tests
7125b244 134 - tests for subtle conflict resolition issues
135 added, but not currently running
136 (thanks to kolibre)
137
138 * Moose::Cookbook::Recipe7
887169d7 139 - added new recipe for augment/inner functionality
140 (still in progress)
7125b244 141 - added test for this
5868294f 142
24a8fe99 143 * Moose::Spec::Role
7125b244 144 - a formal definition of roles (still in progress)
24a8fe99 145
9a641848 146 * Moose::Util
887169d7 147 - utilities for easier working with Moose classes
7125b244 148 - added tests for these
9a641848 149
150 * Test::Moose
887169d7 151 - This contains Moose specific test functions
7125b244 152 - added tests for these
9a641848 153
6b4c1bdd 1540.24 Tues. July 3, 2007
155 ~ Some doc updates/cleanup ~
c84f324f 156
157 * Moose::Meta::Attribute
158 - added support for roles to be given as parameters
159 to the 'handles' option.
160 - added tests and docs for this
83cc9094 161 - the has '+foo' attribute form now accepts changes to
162 the lazy option, and the addition of a handles option
163 (but not changing the handles option)
164 - added tests and docs for this
c84f324f 165
1db8ecc7 166 * Moose::Meta::Role
167 - required methods are now fetched using find_method_by_name
168 so that required methods can come from superclasses
169 - adjusted tests for this
170
81941e9b 1710.23 Mon. June 18, 2007
73b84d2e 172 * Moose::Meta::Method::Constructor
173 - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
ac2dc464 174 * Moose::Meta::Class
175 - Modify make_immutable to work with the new Class::MOP immutable
176 mechanism + POD + very basic test (groditi)
cbe25729 177 * Moose::Meta::Attribute
178 - Fix handles to use goto() so that caller() comes out properly on
179 the other side (perigrin)
ac2dc464 180
db53853c 1810.22 Thurs. May 31, 2007
3969267d 182 * Moose::Util::TypeConstraints
db53853c 183 - fix for prototype undeclared issue when Moose::Util::TypeConstraints
184 loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
185 prototypes for functions
9af1d28b 186 - added the ClassName type constraint, this checks for strings
187 which will respond true to ->isa(UNIVERSAL).
188 - added tests and docs for this
86629f93 189 - subtyping just in name now works correctly by making the
190 default for where be { 1 }
191 - added test for this
3969267d 192
d7611a4a 193 * Moose::Meta::Method::Accessor
194 - coerce and lazy now work together correctly, thanks to
195 merlyn for finding this bug
196 - tests added for this
df492bba 197 - fix reader presedence bug in Moose::Meta::Attribute + tests
d7611a4a 198
86629f93 199 * Moose::Object
200 - Foo->new(undef) now gets ignored, it is assumed you meant to pass
201 a HASH-ref and missed. This produces better error messages then
202 having it die cause undef is not a HASH.
203 - added tests for this
204
74a0a945 2050.21 Thursday, May 2nd, 2007
52c7c330 206 * Moose
207 - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
208 - modified unimport to remove super and inner along with the rest
209 - altered unimport tests to handle this
210
211 * Moose::Role
212 - altered super export to populate SUPER_SLOT
213
214 * Moose::Meta::Class
215 - altered augment and override modifier application to use *_SLOT
216 - modified tests for these to unimport one test class each to test
217
492d4d76 218 * Moose::Meta::Role
219 - fixed issue where custom attribute metaclasses
220 where not handled correctly in roles
221 - added tests for this
5cb193ed 222
223 * Moose::Meta::Class
224 - fixed issue where extending metaclasses with
225 roles would blow up. Thanks to Aankhen`` for
226 finding this insidious error, and it's solution.
b7c751dc 227
0305961b 228 ~~ lots of spelling and grammer fixes in the docs,
229 many many thanks to rlb3 and Aankhen for these :)
492d4d76 230
e518dfb4 2310.20 Friday, April 6th, 2007
a60285b3 232 >> I messed up the SKIP logic in one test
233 so this release is just to fix that.
234
93c435b3 235 * Moose
236 - 'has' now also accepts an ARRAY ref
237 to create multiple attrs (see docs)
238 (thanks to konobi for this)
239 - added tests and docs
240
cd7eeaf5 2410.19 Thurs. April 5th, 2007
242 ~~ More documentation updates ~~
243
c899258b 244 * Moose::Util::TypeConstraints
c1935ade 245 - 'type' now supports messages as well
ddbdc0cb 246 thanks to phaylon for finding this
c899258b 247 - added tests for this
c1935ade 248 - added &list_all_type_constraints and
249 &list_all_builtin_type_constraints
943596a6 250 functions to facilitate introspection.
d022f632 251
252 * Moose::Meta::Attribute
253 - fixed regexp 'handles' declarations
254 to build the list of delegated methods
255 correctly (and not override important
ddbdc0cb 256 things like &new) thanks to ashleyb
257 for finding this
258 - added tests and docs for this
c1935ade 259 - added the 'documentation' attributes
ddbdc0cb 260 so that you can actually document your
261 attributes and inspect them through the
262 meta-object.
d022f632 263 - added tests and docs for this
264
c1935ade 265 * Moose::Meta::Class
266 - when loading custom attribute metaclasses
267 it will first look in for the class in the
268 Moose::Meta::Attribute::Custom::$name, and
269 then default to just loading $name.
270 - added tests and docs for this
271
900466d6 272 * Moose::Meta::TypeConstraint
273 - type constraints now stringify to their names.
274 - added test for this
275
d022f632 276 * misc.
ddbdc0cb 277 - added tests to assure we work with Module::Refresh
278 - added stricter test skip logic in the Moose POOP
279 test, ask Rob Kinyon why.
280 - *cough* DBM::Deep 1.0 backwards compatability sucks *cough* ;)
c899258b 281
af5199c6 2820.18 Sat. March 10, 2007
283 ~~ Many, many documentation updates ~~
ddbdc0cb 284
285 * misc.
286 - We now use Class::MOP::load_class to
287 load all classes.
288 - added tests to show types and subtypes
289 working with Declare::Constraints::Simple
290 and Test::Deep as constraint engines.
b77fdbed 291
587ae0d2 2920.18_001
d01f1dab 293 !! You must have Class::MOP 0.37_001 !!
294 !! for this developer release to work !!
295
734d1752 296 This release was primarily adding the immutable
297 feature to Moose. An immutable class is one which
298 you promise not to alter. When you set the class
299 as immutable it will perform various bits of
300 memoization and inline certain part of the code
301 (constructors, destructors and accessors). This
302 minimizes (and in some cases totally eliminates)
303 one of Moose's biggest performance hits. This
304 feature is not on by default, and is 100% optional.
305 It has several configurable bits as well, so you
306 can pick and choose to your specific needs.
307
308 The changes involved in this were fairly wide and
309 highly specific, but 100% backwards compatible, so
310 I am not going to enumerate them here. If you are
311 truely interested in what was changed, please do
312 a diff :)
587ae0d2 313
3140.17 Tues. Nov. 14, 2006
315 * Moose::Meta::Method::Accessor
316 - bugfix for read-only accessors which
317 are have a type constraint and lazy.
318 Thanks to chansen for finding it.
319
3200.16 Tues. Nov. 14, 2006
321 ++ NOTE ++
322 There are some speed improvements in this release,
323 but they are only the begining, so stay tuned.
324
325 * Moose::Object
326 - BUILDALL and DEMOLISHALL no longer get
327 called unless they actually need to be.
328 This gave us a signifigant speed boost
329 for the cases when there is no BUILD or
330 DEMOLISH method present.
331
332 * Moose::Util::TypeConstraints
333 * Moose::Meta::TypeConstraint
334 - added an 'optimize_as' option to the
335 type constraint, which allows for a
336 hand optimized version of the type
337 constraint to be used when possible.
338 - Any internally created type constraints
339 now provide an optimized version as well.
340
ecb59493 3410.15 Sun. Nov. 5, 2006
946289d1 342 ++ NOTE ++
343 This version of Moose *must* have Class::MOP 0.36 in order
344 to work correctly. A number of small internal tweaks have
345 been made in order to be compatible with that release.
571dd39f 346
347 * Moose::Util::TypeConstraints
348 - added &unimport so that you can clean out
349 your class namespace of these exported
350 keywords
351
37ee30c9 352 * Moose::Meta::Class
353 - fixed minor issue which occasionally
354 comes up during global destruction
355 (thanks omega)
946289d1 356 - moved Moose::Meta::Method::Overriden into
357 its own file.
358
359 * Moose::Meta::Role
360 - moved Moose::Meta::Role::Method into
361 its own file.
362
43123819 363 * Moose::Meta::Attribute
364 - changed how we do type checks so that
7623f774 365 we reduce the overall cost, but still
366 retain correctness.
946289d1 367 *** API CHANGE ***
368 - moved accessor generation methods to
369 Moose::Meta::Method::Accessor to
370 conform to the API changes from
371 Class::MOP 0.36
43123819 372
373 * Moose::Meta::TypeConstraint
374 - changed how constraints are compiled
375 so that we do less recursion and more
376 iteration. This makes the type check
377 faster :)
946289d1 378 - moved Moose::Meta::TypeConstraint::Union
379 into its own file
380
381 * Moose::Meta::Method::Accessor
382 - created this from methods formerly found in
383 Moose::Meta::Attribute
384
385 * Moose::Meta::Role::Method
386 - moved this from Moose::Meta::Role
387
388 * Moose::Meta::Method::Overriden
389 - moved this from Moose::Meta::Class
390
391 * Moose::Meta::TypeConstraint::Union
392 - moved this from Moose::Meta::TypeConstraint
37ee30c9 393
3ec7b7a3 3940.14 Mon. Oct. 9, 2006
4fd69d6c 395
396 * Moose::Meta::Attribute
397 - fixed lazy attributes which were not getting
398 checked with the type constraint (thanks ashley)
399 - added tests for this
3ec7b7a3 400 - removed the over-enthusiastic DWIMery of the
401 automatic ArrayRef and HashRef defaults, it
402 broke predicates in an ugly way.
403 - removed tests for this
4fd69d6c 404
c0c41f76 4050.13 Sat. Sept. 30, 2006
093b12c2 406 ++ NOTE ++
407 This version of Moose *must* have Class::MOP 0.35 in order
408 to work correctly. A number of small internal tweaks have
409 been made in order to be compatible with that release.
410
3c2bc5e2 411 * Moose
412 - Removed the use of UNIVERSAL::require to be a better
093b12c2 413 symbol table citizen and remove a dependency
414 (thanks Adam Kennedy)
3c2bc5e2 415
2a0f3bd3 416 **~~ removed experimental & undocumented feature ~~**
417 - commented out the 'method' and 'self' keywords, see the
418 comments for more info.
419
e95c7c42 420 * Moose::Cookbook
421 - added a FAQ and WTF files to document frequently
422 asked questions and common problems
b805c70c 423
3f7376b0 424 * Moose::Util::TypeConstraints
0a5bd159 425 - added GlobRef and FileHandle type constraint
3f7376b0 426 - added tests for this
427
428 * Moose::Meta::Attribute
429 - if your attribute 'isa' ArrayRef of HashRef, and you have
430 not explicitly set a default, then make the default DWIM.
94b8bbb8 431 This will also work for subtypes of ArrayRef and HashRef
432 as well.
433 - you can now auto-deref subtypes of ArrayRef or HashRef too.
434 - new test added for this (thanks to ashley)
3f7376b0 435
b805c70c 436 * Moose::Meta::Role
437 - added basic support for runtime role composition
0a5bd159 438 but this is still *highly experimental*, so feedback
439 is much appreciated :)
b805c70c 440 - added tests for this
e95c7c42 441
0a5bd159 442 * Moose::Meta::TypeConstraint
443 - the type constraint now handles the coercion process
444 through delegation, this is to support the coercion
445 of unions
446
447 * Moose::Meta::TypeConstraint::Union
448 - it is now possible for coercions to be performed
449 on a type union
450 - added tests for this (thanks to konobi)
451
e95c7c42 452 * Moose::Meta::TypeCoercion
453 - properly capturing error when type constraint
454 is not found
455
3c2bc5e2 456 * Build.PL
457 - Scalar::Util 1.18 is bad on Win32, so temporarily
458 only require version 1.17 for Win32 and cygwin.
093b12c2 459 (thanks Adam Kennedy)
3c2bc5e2 460
40e89659 4610.12 Sat. Sept. 1, 2006
2bdd01cd 462 * Moose::Cookbook
463 - Recipe5 (subtypes & coercion) has been written
464
465 * Moose
3279ab4a 466 - fixed "bad meta" error message to be more descriptive
467 - fixed &unimport to not remove the &inner and &super
468 keywords because we need to localize them.
68efb014 469 - fixed number of spelling/grammer issues, thanks Theory :)
0558683c 470
471 **~~ experimental & undocumented feature ~~**
68efb014 472 - added the method and self keywords, they are basically
473 just sugar, and they may not stay around.
f742dfef 474
475 * Moose::Object
68efb014 476 - added &dump method to easily Data::Dumper
477 an object
b26e162e 478
479 * Moose::Meta::TypeConstraint
480 - added the &is_a_type_of method to check both the current
481 and the subtype of a method (similar to &isa with classes)
f008ac1f 482
68efb014 483 * Moose::Meta::Role
484 - this is now a subclass of Class::MOP::Module, and no longer
485 creates the _role_meta ugliness of before.
486 - fixed tests to reflect this change
487
8c835eba 4880.11 Wed. July 12, 2006
31f8ec72 489 * Moose
490 - added an &unimport method to remove all the keywords
8c835eba 491 that Moose will import, simply add 'no Moose' to the
492 bottom of your class file.
31f8ec72 493
494 * t/
495 - fixed some test failures caused by a forgotten test
496 dependency.
497
864cd714 4980.10 Thurs. July 6, 2006
01a8e221 499 * Moose
500 - improved error message when loading modules so
501 it is less confusing when you load a role.
2b14ac61 502 - added &calculate_all_roles method to
503 Moose::Meta::Class and Moose::Meta::Role
504
505 NOTE:
506 This module has been tested against Class::MOP 0.30
507 but it does not yet utilize the optimizations
508 it makes available. Stay tuned for that ;)
509
2b14ac61 5100.09_03 Fri. June 23, 2006
715ea0b7 511 ++ DEVELOPER RELEASE ++
4276ccb4 512 * Moose
513 - 'use strict' and 'use warnings' are no longer
514 needed in Moose classes, Moose itself will
515 turn them on for you.
516 - added tests for this
1341f10c 517 - moved code from exported subs to private methods
518 in Moose::Meta::Class
4276ccb4 519
520 * Moose::Role
521 - as with Moose, strict and warnings are
522 automatically turned on for you.
523 - added tests for this
e39d707f 524
525 * Moose::Meta::Role
526 - now handles an edge case for override errors
527 - added tests for this
b7f2d25b 528 - added some more edge case tests
1341f10c 529
43d599e5 5300.09_02 Tues. May 16, 2006
715ea0b7 531 ++ DEVELOPER RELEASE ++
2c0cbef7 532 * Moose
533 - added prototypes to the exported subs
43d599e5 534 - updated docs
2c0cbef7 535
536 * Moose::Role
537 - added prototypes to the exported subs
43d599e5 538 - updated docs
2c0cbef7 539
540 * Moose::Util::TypeConstraints
541 - cleaned up prototypes for the subs
43d599e5 542 - updated docs
2c0cbef7 543
72c4f6d1 5440.09_01 Fri. May 12, 2006
545 ++ DEVELOPER RELEASE ++
546 - This release works in combination with
547 Class::MOP 0.29_01, it is a developer
548 release because it uses the a new
549 instance sub-protocol and a fairly
550 complete Role implementation. It has
551 not yet been optimized, so it slower
552 the the previous CPAN version. This
553 release also lacks good updated docs,
554 the official release will have updated docs.
555
98aae381 556 * Moose
557 - refactored the keyword exports
db1ab48d 558 - 'with' now checks Role validaity and
559 accepts more than one Role at a time
98aae381 560 - 'extends' makes metaclass adjustments as
561 needed to ensure metaclass compatability
562
72c4f6d1 563 * Moose::Role
564 - refactored the keyword exports
565 - 'with' now checks Role validaity and
566 accepts more than one Role at a time
567
98aae381 568 * Moose::Util::TypeConstraints
569 - added the 'enum' keyword for simple
570 string enumerations which can be used as
571 type constraints
db1ab48d 572 - see example of usage in t/202_example.t
98aae381 573
574 * Moose::Object
575 - more careful checking of params to new()
576
72c4f6d1 577 * Moose::Meta::Role
578 - much work done on the role composition
579 - many new tests for conflict detection
580 and composition edge cases
581 - not enough documentation, I suggest
582 looking at the tests
583
98aae381 584 * Moose::Meta::Instance
585 - added new Instance metaclass to support
586 the new Class::MOP instance protocol
587
588 * Moose::Meta::Class
589 - some small changes to support the new
590 instance protocol
72c4f6d1 591 - some small additions to support Roles
98aae381 592
593 * Moose::Meta::Attribute
594 - some improvements to the accessor generation code
595 by nothingmuch
596 - some small changes to support the new
597 instance protocol
598 - (still somewhat) experimental delegation support
599 with the 'handles' option
600 - added several tests for this
db1ab48d 601 - no docs for this yet
98aae381 602
35c8b8f2 6030.05 Thurs. April 27, 2006
2d562421 604 * Moose
605 - keywords are now exported with Sub::Exporter
606 thanks to chansen for this commit
590868a3 607 - has keyword now takes a 'metaclass' option
608 to support custom attribute meta-classes
609 on a per-attribute basis
daea75c9 610 - added tests for this
611 - the 'has' keyword not accepts inherited slot
612 specifications (has '+foo'). This is still an
613 experimental feature and probably not finished
614 see t/038_attribute_inherited_slot_specs.t for
615 more details, or ask about it on #moose
fcb7afc2 616 - added tests for this
2d562421 617
618 * Moose::Role
619 - keywords are now exported with Sub::Exporter
620
5204cd52 621 * Moose::Utils::TypeConstraints
cce8198b 622 - reorganized the type constraint hierarchy, thanks
623 to nothingmuch and chansen for his help and advice
624 on this
625 - added some tests for this
7eaef7ad 626 - keywords are now exported with Sub::Exporter
35c8b8f2 627 thanks to chansen for this commit
5204cd52 628
d500266f 629 * Moose::Meta::Class
630 - due to changes in Class::MOP, we had to change
631 construct_instance (for the better)
632
633 * Moose::Meta::Attribute
634 - due to changes in Class::MOP, we had to add the
635 initialize_instance_slot method (it's a good thing)
c07af9d2 636
cce8198b 637 * Moose::Meta::TypeConstraint
c07af9d2 638 - added type constraint unions
639 - added tests for this
cce8198b 640 - added the is_subtype_of predicate method
641 - added tests for this
d500266f 642
02a0fb52 6430.04 Sun. April 16th, 2006
1331430a 644 * Moose::Role
645 - Roles can now consume other roles
646 - added tests for this
647 - Roles can specify required methods now with
648 the requires() keyword
649 - added tests for this
650
bdabd620 651 * Moose::Meta::Role
652 - ripped out much of it's guts ,.. much cleaner now
1331430a 653 - added required methods and correct handling of
fa1be058 654 them in apply() for both classes and roles
655 - added tests for this
1331430a 656 - no longer adds a does() method to consuming classes
657 it relys on the one in Moose::Object
658 - added roles attribute and some methods to support
659 roles consuming roles
8c9d74e7 660
661 * Moose::Meta::Attribute
662 - added support for triggers on attributes
663 - added tests for this
02a0fb52 664 - added support for does option on an attribute
665 - added tests for this
8c9d74e7 666
667 * Moose::Meta::Class
668 - added support for attribute triggers in the
669 object construction
670 - added tests for this
256903b6 671
672 * Moose
673 - Moose no longer creates a subtype for your class
674 if a subtype of the same name already exists, this
675 should DWIM in 99.9999% of all cases
676
677 * Moose::Util::TypeConstraints
678 - fixed bug where incorrect subtype conflicts were
679 being reported
8c9d74e7 680 - added test for this
681
682 * Moose::Object
683 - this class can now be extended with 'use base' if
684 you need it, it properly loads the metaclass class now
685 - added test for this
bdabd620 686
0677220d 6870.03_02 Wed. April 12, 2006
05d9eaf6 688 * Moose
689 - you must now explictly use Moose::Util::TypeConstraints
690 it no longer gets exported for you automatically
691
692 * Moose::Object
693 - new() now accepts hash-refs as well as key/value lists
0677220d 694 - added does() method to check for Roles
695 - added tests for this
05d9eaf6 696
0677220d 697 * Moose::Meta::Class
698 - added roles attribute along with the add_role() and
699 does_role() methods
700 - added tests for this
701
702 * Moose::Meta::Role
703 - now adds a does() method to consuming classes
704 which tests the class's hierarchy for roles
705 - added tests for this
706
7070.03_01 Mon. April 10, 2006
e9ec68d6 708 * Moose::Cookbook
76d37e5a 709 - added new Role recipe (no content yet, only code)
e9ec68d6 710
711 * Moose
712 - added 'with' keyword for Role support
713 - added test and docs for this
714 - fixed subtype quoting bug
715 - added test for this
716
717 * Moose::Role
718 - Roles for Moose
719 - added test and docs
76d37e5a 720
721 * Moose::Util::TypeConstraints
722 - added the message keyword to add custom
723 error messages to type constraints
e9ec68d6 724
725 * Moose::Meta::Role
726 - the meta role to support Moose::Role
727 - added tests and docs
728
729 * Moose::Meta::Class
730 - moved a number of things from Moose.pm
731 to here, they should have been here
732 in the first place
733
734 * Moose::Meta::Attribute
735 - moved the attribute option macros here
736 instead of putting them in Moose.pm
e185c027 737
76d37e5a 738 * Moose::Meta::TypeConstraint
739 - added the message attributes and the
740 validate method
741 - added tests and docs for this
742
0ac928d2 7430.03 Thurs. March 30, 2006
e9bb8a31 744 * Moose::Cookbook
745 - added the Moose::Cookbook with 5 recipes,
746 describing all the stuff Moose can do.
747
d7f17ebb 748 * Moose
749 - fixed an issue with &extends super class loading
750 it now captures errors and deals with inline
751 packages correctly (bug found by mst, solution
752 stolen from alias)
159da176 753 - added super/override & inner/augment features
754 - added tests and docs for these
d7f17ebb 755
756 * Moose::Object
757 - BUILDALL now takes a reference of the %params
758 that are passed to &new, and passes that to
759 each BUILD as well.
471c4f09 760
761 * Moose::Util::TypeConstraints
762 - Type constraints now survive runtime reloading
763 - added test for this
d7f17ebb 764
8339fae2 765 * Moose::Meta::Class
766 - fixed the way attribute defaults are handled
767 during instance construction (bug found by chansen)
768
d7f17ebb 769 * Moose::Meta::Attribute
770 - read-only attributes now actually enforce their
9deed647 771 read-only-ness (this corrected in Class::MOP as
772 well)
d7f17ebb 773
076c81ed 7740.02 Tues. March 21, 2006
fc5609d2 775 * Moose
b841b2a3 776 - many more tests, fixing some bugs and
777 edge cases
b841b2a3 778 - &extends now loads the base module with
779 UNIVERSAL::require
780 - added UNIVERSAL::require to the
781 dependencies list
6ba6d68c 782 ** API CHANGES **
b841b2a3 783 - each new Moose class will also create
784 and register a subtype of Object which
785 correspond to the new Moose class.
b841b2a3 786 - the 'isa' option in &has now only
787 accepts strings, and will DWIM in
788 almost all cases
789
790 * Moose::Util::TypeConstraints
791 - added type coercion features
792 - added tests for this
793 - added support for this in attributes
794 and instance construction
6ba6d68c 795 ** API CHANGES **
b841b2a3 796 - type construction no longer creates a
797 function, it registers the type instead.
798 - added several functions to get the
799 registered types
6ba6d68c 800
801 * Moose::Object
802 - BUILDALL and DEMOLISHALL were broken
803 because of a mis-named hash key, Whoops :)
b841b2a3 804
805 * Moose::Meta::Attribute
806 - adding support for coercion in the
807 autogenerated accessors
808
809 * Moose::Meta::Class
810 - adding support for coercion in the
6ba6d68c 811 instance construction
812
813 * Moose::Meta::TypeConstraint
814 * Moose::Meta::TypeCoercion
815 - type constraints and coercions are now
816 full fledges meta-objects
fc5609d2 817
e522431d 8180.01 Wed. March 15, 2006
900466d6 819 - Moooooooooooooooooose!!!