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