Bump to 0.63
[gitmo/Class-MOP.git] / Changes
1 Revision history for Perl extension Class-MOP.
2
3 0.63
4
5 0.62 Wed June 18, 2008
6     - in is_class_loaded, recognize scalar references (as opposed to globs) in
7       the symbol table as methods (these are optimized constant subs)
8
9 0.61 Fri. June 13, 2008
10     - Okay, lets give this another try and see if PAUSE 
11       recognizes it correct this time.
12
13 0.60 Thurs. Jun 12, 2008
14     - Fixed a version number issue by bumping all modules
15       to 0.60.
16
17 0.59 Thurs. Jun 12, 2008
18     !! Several fixes resulting in yet another 25-30% speedup !!
19
20     * Class::MOP::Class
21       - now stores the instance of the instance 
22         metaclass to avoid needless recomputation
23         and deletes it when the cache is blown
24       - introduce methods to query Class::MOP::Class for 
25         the options used to make it immutable as well as
26         the proper immutable transformer. (groditi)        
27
28     * Class::MOP::Package
29       - {add, has, get, remove}_package_symbol all 
30         now accept a HASH ref argument as well as the
31         string. All internal usages now use the HASH
32         ref version.
33
34     * Class::MOP
35       - MOP.xs does sanity checks on the coderef 
36         to avoid a segfault
37       - is_class_loaded check now uses code that
38         was improved in Moose's ClassName type
39         check (Sartak)
40       - nonsensical (undef, empty, reference) class
41         names now throw a more direct error in
42         load_class (Sartak)
43         - tests for this and other aspects of
44           load_class (Sartak)
45     
46     * Class::MOP
47       Class::MOP::Class      
48       Class::MOP::Method
49       Class::MOP::Method::Wrapped
50       Class::MOP::Attribute
51       - switched usage of reftype to ref because 
52         it is much faster
53
54 0.58 Thurs. May 29, 2008
55     (late night release engineering)--
56     
57     - fixing the version is META.yml, no functional 
58       changes in this release
59
60 0.57 Wed. May 28, 2008
61     !! Several speedups resulting in 20-25% speedups !!
62     || (thanks to konobi, groditi, mst & CataMoose) !!
63
64     * Class::MOP::Class
65       - made get_method_map use list_all_package_symbols
66         instead of manually grabbing each symbol
67       - streamlining &initialize somewhat, since it gets
68         called so much
69         
70     * Class::MOP::Package
71       - made {get, has}_package_symbol not call 
72         &namespace so much 
73       - inlining a few calls to &name with 
74         direct HASH access key access
75       - added get_all_package_symbols to fetch 
76         a HASH of items based on a type filter
77         similar to list_all_package_symbols
78         - added tests for this
79
80     * Class::MOP::Method
81       Class::MOP::Method::Constructor
82       Class::MOP::Method::Generated
83       Class::MOP::Method::Accessor
84       - added more descriptive error message to help 
85         keep people from wasting time tracking an error
86         that is easily fixed by upgrading.
87
88     * Class::MOP::Immutable
89       - Don't inline a destructor unless the user actually
90         needs one
91         - added tests for this
92
93 0.56 Saturday, May 24, 2008
94     * Class::MOP
95       - we now get the &check_package_cache_flag
96         function from MRO::Compat
97       - All XS based functionality now has a 
98         Pure Perl alternative
99         - the CLASS_MOP_NO_XS environment variable
100           can now be used to force non-XS versions
101           to always be used
102
103     * Class::MOP::Attribute
104       - add has_read_method and has_write_method
105       - get_{read,write}_method_ref now wraps the
106         anon-sub ref in the method metaclass when
107         possible
108         - added tests for this
109
110     * Class::MOP::Immutable
111       - added the ability to "wrap" methods when
112         making the class immutable
113
114     * Class::MOP::Class
115       - now handling the edge case of ->meta->identifier
116         dying by wrapping add_package_symbol to specifically
117         allow for it to work.
118         - added tests for this
119
120     * Class::MOP::Attribute
121       Class::MOP::Class
122       Class::MOP::Immutable
123       - any time a method meta object is constructed
124         we make sure to pass the correct package and
125         method name information
126
127     * Class::MOP::Method
128       Class::MOP::Method::Wrapped
129       Class::MOP::Method::Generated
130       Class::MOP::Method::Accessor
131       Class::MOP::Method::Consructor
132       - the &wrap constructor method now requires that a 
133         'package_name' and 'name' attribute are passed. This 
134         is to help support the no-XS version, and will 
135         throw an error if these are not supplied.      
136       - all these classes are now bootstrapped properly
137         and now store the package_name and name attributes
138         correctly as well        
139
140     ~ Build.PL has been removed since the 
141       Module::Install support has been removed
142
143 0.55 Mon. April 28, 2008
144     - All classes now have proper C3 MRO support
145       - added MRO::Compat as a dependency to allow
146         for the C3 MRO support to Just Work in all
147         perl versions
148
149     * Class::MOP::Class
150       - rebless_instance now returns the instance
151         it has just blessed, this is mostly to
152         facilitate chaining
153       - set the attr correctly in rebless_instance
154         when it has no init_arg
155       - tweaked &linear_isa and &class_precedence_list
156         to support c3 classes.
157
158 0.54 Fri. March, 14, 2008
159     * Class::MOP
160       metaclass.pm
161       - making sure that load_class never gets
162         passed a value from @_ or $_ to squash
163         Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
164
165     * Class::MOP::Class
166       - make_{immutable,mutable} now return 1
167         (cause Sartak asked)
168       - improved error handling in ->create method
169       - rebless_instance now takes extra params which
170         will be used to populate values
171         - added tests for this
172
173     * Class::MOP::Object
174       - localizing the Data::Dumper configurations so
175         that it does not pollute others (RT #33509)
176
177     * Class::MOP::Class
178       Class::MOP::Package
179       Class::MOP::Module
180       Class::MOP::Method
181       Class::MOP::Attribute
182       - these classes no longer define their own ->meta,
183         but instead just inherit from Class::MOP::Object
184
185     * Class::MOP::Instance
186       Class::MOP::Immutable
187       - these classes now inherit from Class::MOP::Object
188
189     * t/
190       - fixed the filename length on several
191         test files so we install on VMS better
192         (RT #32295)
193       - fixed incorrect use of catdir when it
194         should be catfile (RT #32385)
195
196 0.53 Thurs. Feb. 14, 1008
197     ~~ several doc. fixes and updates ~~
198
199     * Class::MOP::Class
200       Class::MOP::Method::Constructor
201       Class::MOP::Attribute
202         - making init_arg accept an undefined value
203           to indicate that no constructor args can
204           be passed (thanks to nothingmuch)
205           - added tests for this
206         - added attribute initializer attribute (rjbs)
207
208     * Class::MOP.
209         - making this use the new init_arg => undef
210           feature instead of the silly hack from
211           before (thanks to nothingmuch)
212
213 0.52 Tues. Jan. 22, 2008
214     * Class::MOP::Class
215       - fixed bug in rebless_instance
216         (discovered by ash)
217
218     * Class::MOP::Method::Constructor
219       - removed assumptions about the existence of
220         a &meta method
221
222 0.51 Mon. Jan. 14, 2008
223     ~~~ some misc. doc. fixes ~~~
224     ~~ updated copyright dates ~~
225
226     * Class::MOP
227       - now sets the IS_RUNNING_ON_5_10
228         constant so that we can take advantage
229         of some of the nice bits of 5.10
230
231     * Class::MOP::Class
232       - uses the IS_RUNNING_ON_5_10 flag to
233         optimize the &linearized_isa method
234         and avoid the hack/check for circular
235         inheritence in &class_precedence_list
236       - added rebless_instance method (Sartak)
237         - added tests for this
238
239     * Class::MOP::Immutable
240       - the immutable class now keeps track of
241         the transformer which immutablized it
242
243     * Class::MOP::Instance
244       - added rebless_instance_structure method (Sartak)
245         - added tests for this
246
247 0.50 Fri. Dec. 21, 2007
248     * Class::MOP::Class
249       - fixed bug in immutable to make sure that
250         transformation arguments are saved
251         correctly (mst)
252         - added tests for this
253
254     * Class::MOP::Immutable
255       - fixed a bug (see above)
256
257     * Class::MOP::Attribute
258       - some doc updates
259
260 0.49 Fri. Dec. 14, 2007
261     !! Class::MOP now loads 2 x faster  !!
262     !! with XS speedups (thanks konobi) !!
263
264     * Class::MOP
265       - removed the dependency on B
266       - added two XS functions (thanks konobi)
267         - get_code_info($code) which replaces all
268           the B fiddling we were doing with
269           faster/leaner XS level fiddling
270         - check_package_cache_flag($pkg_name) which
271           returns the PL_sub_generation variable to
272           be used to help manage method caching.
273
274           NOTE:
275           In 5.10 or greater this will actually
276           use the mro::get_pkg_gen instead to give
277           even more accurate caching information.
278           blblack++ for that stuff :)
279
280     * Class::MOP::Class
281       - added the &subclasses method (thanks rlb)
282       - added the update_package_cache_flag and
283         reset_package_cache_flag which help keep
284         track of when we need to re-fetch the
285         method map.
286       - Several small improvements to take advantage
287         of the new method map caching features
288
289 0.48 Mon. Nov. 26, 2007
290     * Class::MOP::Attribute
291       - fixed get_read/write_method to handle the
292         HASH ref case, which makes the
293         get_read/write_method_ref handle it too.
294         - added more tests for this
295
296 0.47 Sat. Nov. 24, 2007
297     * Class::MOP::Attribute
298       - fixed misspelling in get_write_method_ref
299         - added more tests for this
300
301 0.46 Fri. Nov. 23, 2007
302     * Class::MOP::Class
303       - added the linearized_isa method instead of constantly
304         pruning duplicate classes (this will be even more
305         useful in the 5.10-compat version coming soon)
306
307     * Class::MOP::Attribute
308       - added the get_read_method_ref and get_write_method_ref
309         methods which allow you to retrieve a CODE ref which
310         can always be used to read or write an attribute.
311
312 0.45 Thurs. Nov. 13, 2007
313     * Class::MOP::Attribute
314       - Fix error message on confess (groditi)
315
316 0.44 Thurs. Nov. 13, 2007
317     - Apparently I didn't make dist correctly (groditi)
318
319 0.43 Thurs. Nov. 13, 2007
320     * Class::MOP
321       - Add support for the 'builder' attribute (groditi)
322
323     * Class::MOP::Class
324       - optimise metaclass-already-exists check in
325         construct_class_instance (groditi)
326       - duplicate check into initialize to save a
327         call through (groditi)
328
329     * Class::MOP::Attribute
330       - Add support for the 'builder' attribute (groditi)
331       - Make predicates check for the existence of a value, not whether
332         it is defined (groditi)
333
334     * Class::MOP::Instance
335       - Make predicates check for the existence of a value, not whether
336         it is defined (groditi)
337
338     * Class::MOP::Method::Accessor
339       - made this a subclass of Class::MOP::Method::Generated
340         - removed the relevant attributes
341
342     * Class::MOP::Method::Constructor
343       - fixed the cached values we had to be more sane
344       - made this a subclass of Class::MOP::Method::Generated
345       - fixed generated constructor so it properly handles
346         subclasses now.
347         - added tests for this
348       - added the option to allow for both inlined and
349         non-inlined constructors.
350       - Update inlined methods for builder and predicate changes (groditi)
351
352     * Class::MOP::Method::Generated
353       - added this class as an abstract base for the
354         Class::MOP::Method::{Constructor,Accessor} classes
355         - added tests for this
356
357     *t/
358       - Alter tests (005, 014 020, 021) for new builder addition (groditi)
359       - Tests for new predicate behavior (and corrections to old tests) (groditi)
360
361     *examples/
362       - Update ArrayRef based class example to work with predicate changes
363
364 0.42 Mon. July 16, 2007
365     !!! Horray for mst, he fixed it !!!
366
367     * Class::MOP::Package
368       - alter symbol table handling to deal with 5.8.x and 5.9.x
369
370     * t/
371       - Get rid of the crappy workaround from 0.40/41
372
373 0.41 Sun. July 15, 2007
374     * t/
375         Arghh!!! My TODO test didn't work, so I handle
376         it manually now so that people can use this
377         with 5.9.5/bleadperl without issue.
378
379 0.40 Tues, July 3, 2007
380     * t/
381       ~ marked a test in 003_methods.t as TODO
382         for perl 5.9.5 (this test is irrelvant to
383         the module functioning on 5.9.5 for the most
384         part anyway)
385
386 0.39 Mon. June 18, 2007
387     * Class::MOP::Immutable
388       - added make_metaclass_mutable + docs (groditi)
389       - removed unused variable
390       - added create_immutable_transformer
391         necessary for sane overloading of immutable behavior
392          - tests for this (groditi)
393
394     * Class::MOP::Class
395       - Immutability can now be undone,
396         added make_mutable + tests + docs (groditi)
397       - Massive changes to the way Immutable is done
398         for details see comments next to make_immutable
399         This fixes a bug where custom metaclasses broke
400         when made immutable. We are now keeping one immutable
401         metaclass instance per metaclass instead of just one
402         to prevent isa hierarchy corruption. Memory use will go
403         up, but I suspect it will be neglible.
404          - New tests added for this behavior.  (groditi)
405
406 0.38 Thurs. May 31, 2007
407     ~~ More documentation updates ~~
408
409     * Class::MOP::Package
410       - we now deal with stub methods properly
411         - added tests for this
412       - fixed some tests failing on 5.9.5 (thanks blblack)
413
414     * Class::MOP::Attribute
415       - added get_read_method and get_write_method
416         thanks to groditi for this code, tests
417         and docs.
418         - added tests and POD for this
419
420     * Class::MOP::Class
421       - fixed RT issue #27329, clone object now
422         handles undef values correctly.
423         - added tests for this
424       - Corrected anon-class handling so that they
425         will not get reaped when instances still
426         exist which need to reference them. This is
427         the correct behavior, hopefully this is an
428         obscure enough feature that there are not too
429         many work arounds out in the wild.
430         - added tests for this by groditi
431         - updated docs to explain this
432
433     * metaclass
434       - load custom metaclasses automatically (thanks groditi)
435         - added tests for this behavior
436
437 0.37 Sat. March 10, 2007
438     ~~ Many, many documentation updates ~~
439
440     * Class::MOP
441       - added &load_class and &is_class_loaded
442         - added tests and docs for these
443
444     * Class::MOP::Attribute
445       - default now checks the instance with defined to
446         avoid setting off bool-overloads (found by Carl Franks)
447
448 0.37_002
449     * /t
450       - bad name in a test, causing meaningless failuress.
451         No other changes.
452
453 0.37_001
454
455     ~~ GLOBAL CHANGES ~~
456     - All attribute names are now consistent and follow Perl 6
457       style (prefixed with the sigil, and ! as the twigil for
458       private attrs). This should not affect any code, unless
459       you broke encapsulation, in which case, it is your problem
460       anyway.
461
462     !! Class::MOP::Class::Immutable has been removed
463
464     * Class::MOP::Method::Constructor
465       - this has been moved out of Class::MOP::Class::Immutable
466         and is a proper subclass of Class::MOP::Method now.
467
468     * Class::MOP::Class
469       - this module now uses Class::MOP::Immutable for the
470         immutable transformation instead of
471         Class::MOP::Class::Immutable.
472
473     + Class::MOP::Immutable
474       - this module now controls the transformation from a mutable
475         to an immutable version of the class. Docs for this will
476         be coming eventually.
477
478
479 0.36 Sun. Nov. 5, 2006
480     * Class::MOP::Class
481       - added a few 'no warnings' lines to keep annoying
482         (and meaningless) warnings from chirping during
483         global destruction.
484
485     * Class::MOP
486       - some more bootstrapping is now done on the new
487         classes
488
489     * Class::MOP::Class::Immutable
490       *** API CHANGE ***
491       - constructor generation is now handled by
492         the Class::MOP::Method::Constructor class
493
494     * Class::MOP::Method::Constructor
495       - created this to handle constructor generation
496         in Class::MOP::Class::Immutable
497
498     * Class::MOP::Attribute
499       *** API CHANGE ***
500       - attributes now delegate to the
501         Class::MOP::Method::Accessor to generate
502         accessors
503
504     * Class::MOP::Method::Accessor
505       - all accessor generation functions from
506         Class::MOP::Attribute have been moved here
507
508 0.35 Sat. Sept. 30, 2006
509
510     * scripts/class_browser.pl
511       - initial prototype of a class browser, more
512         on this to come. Comments and patches are
513         very much welcome.
514
515     * Class::MOP
516       - All Class::MOP::* accessors are no longer
517         re-generated in the bootstrap, instead
518         they are aliased from the originals
519         - fixed tests to reflect
520       - added Class::MOP::Method (and its subclasses)
521         to the bootstrap
522         - adjusted tests for this
523       - added the Class::MOP::Instance attributes
524         to the bootstrap
525
526     * Class::MOP::Method
527       *** API CHANGE ***
528       - methods are no longer blessed CODE refs
529         but are actual objects which can be CODE-ified
530         - adjusted tests to compensate
531         - adjusted docs for this
532
533     * Class::MOP::Class
534       - changed how methods are dealt with to
535         encapsulate most of the work into the
536         &get_method_map method
537       - made several adjustments for the change
538         in Class::MOP::Method
539       - &add_attribute now checks if you are adding
540         a duplicate name, and properly removes the
541         old one before installing the new one
542         - added tests for this
543         - adjusted docs for this
544
545     * Class::MOP::Class::Immutable
546       - added caching of &get_method_map
547       - fixed issue with &get_package_symbol
548       - cleaned up the methods that die (patch by David Wheeler)
549
550     * Class::MOP::Package
551       - added filtering capabilities to
552         &list_all_package_symbols
553
554 0.34 Sat. Aug. 26, 2006
555     * Class::MOP::Class
556       - added the %:methods attribute, which like
557         the $:version and such just actually goes
558         to the symbol table to get it's stuff.
559         However, it makes the MOP more complete.
560      ** API CHANGE **
561       - The &create method now requires that all
562         but the package name now is passed in as
563         named parameters. See docs for more info.
564         - updated docs and tests for this
565
566     * Class::MOP::Object
567       - added &dump method to easily Data::Dumper
568         an object
569
570     * Class::MOP
571       - cleaned up the initialization of attributes
572         which do not store things in the instance
573       - added the %:methods attribute definition to
574         the bootstrap
575
576     ~ lots of misc. test cleanup
577
578 0.33 Sat. Aug. 19, 2006
579     * Class::MOP::Class
580       - moved the metaclass cache out of here
581         and it is now in Class::MOP itself.
582
583     * Class::MOP
584       - moved all the metaclass cache stuff here
585         - fixed all tests for this
586
587     * Class::MOP::Attribute
588       - reference values (other than CODE refs)
589         are no longer allowed for defaults
590         - added tests for this
591
592     * Class::MOP::Package
593       - fixed an issue with perl 5.8.1 and how it deals
594         with symbol tables. The namespace hash is now
595         always reloaded from the symbol table.
596
597     ~ lots of misc. documentation cleanup
598
599 0.32 Sat. Aug. 12, 2006
600     + added Class::MOP::Object so that the
601       metamodel is more complete (and closer
602       to what Perl 6 will probably be).
603
604     * Class::MOP::Package
605       - refactored entire class, this is now
606         the primary gateway between the metaclass
607         and the Perl 5 symbol table
608         - added many tests for this
609       - this class is now a subclass of
610         Class::MOP::Object
611         - added some tests to reflect this
612
613     * Class::MOP::Class
614       - refactored all symbol table access to
615         use Class::MOP::Package methods instead
616
617     * Class::MOP::Module
618       - adding the $:version attribute in the bootstrap
619         so that Module has a version as an attribute
620         - see comment in Class::MOP for details
621       - added the $:authority attribute to this module
622         as well as an &identifier method, to bring us
623         ever closer to Perl 6 goodness
624         - I have added $AUTHORITY to all the modules
625         - added tests for this
626
627     * Class::MOP::Instance
628       - added &deinitialize_slot for removing slots
629         from an instance
630         - added tests for this
631
632     * Class::MOP::Attribute
633       - added support for &deinitialize_slot for removing
634         slots from an instance
635         - added tests for this
636
637 0.31 Sat. July 15, 2006
638
639     * Class::MOP::Class
640       - added &find_method_by_name to locate a method
641         anywhere within the class hierarchy
642
643     * Class::MOP::Attribute
644       - added &set_value and &get_value for getting
645         the value of the attribute for a particular
646         instance.
647
648 0.30 Wed. July 5, 2006
649     ---------------------------------------
650     This is the first version of Class::MOP
651     to introduce the immutable features which
652     will be used for optimizating the MOP.
653     This support should still be considered
654     experimental, but moving towards stability.
655     ---------------------------------------
656
657     * Created Class::MOP::Class::Immutable
658
659     * Created the Class::MOP::Package and
660       Class::MOP::Module classes to more
661       closely conform to Perl 6's meta-model
662
663     * Class::MOP::Class
664       - now inherits from Class::MOP::Module
665       - several methods moved to ::Module and
666         ::Package and now inherited
667         - added tests for this
668
669     * Class::MOP::Instance
670       - added an is_inlinable method to allow other
671         classes to check before they attempt to optimize.
672       - added an inline_create_instance to inline
673         instance creation (of course)
674
675     ** API CHANGE **
676       - the Class::MOP::Class::*_package_variable
677         methods are all now methods of Class::MOP::Package
678         and called *_package_symbol instead. This is
679         because they are now more general purpose symbol
680         table manipulation methods.
681
682 0.29_02 Thurs. June 22, 2006
683     ++ DEVELOPER RELEASE ++
684     * Class::MOP::Class
685       - small change in &create so that it behaves
686         properly when inherited
687       - small fix to &clone_instance
688
689 0.29_01 Fri. May 12, 2006
690     ++ DEVELOPER RELEASE ++
691       - This release works in combination with
692         Moose 0.09_01, it is a developer release
693         because it introduces a new instance
694         sub-protocol and has not yet been
695         optimized.
696
697     * Class::MOP::Class
698       - anon-classes are now properly garbage collected
699         - added tests for this
700       - improved method modifier wrapping
701
702     * Class::MOP::Instance
703       - added new instance protocol
704         - added tests for this
705       - changed all relevant modules and examples
706         - Class::MOP::Class
707         - Class::MOP::Attribute
708         - examples/*
709
710     * metaclass
711       - you no longer need to specify the metaclass
712         itself, if it is not there, Class::MOP::Class
713         is just assumed
714         - updated tests for this
715
716     * examples/
717       - added ArrayBasedStorage example to show
718         instance storage using ARRAY refs instead of
719         HASH refs.
720         - added tests for this
721       - InsideOutClass is totally revised using the
722         new instance protocol
723         - added more tests for this
724
725 0.26 Mon. April 24, 2006
726     * Class::MOP::Class
727       - added find_attribute_by_name method
728         - added tests and docs for this
729       - some small optimizations
730
731     * Class::MOP::Attribute
732       - some small optimizations
733
734 0.25 Thurs. April 20, 2006
735     * Class::MOP::Class
736       - added create_anon_class for creating anonymous classes
737         - added tests for this
738       - added get_all_metaclasses, get_all_metaclass_names
739         and get_all_metaclass_instances method to allow
740         access to all the cached metaclass objects.
741       - attribute slot initialization is now the responsibility
742         of the attribute itself, and construct_instance now
743         delegates appropriately
744
745     * Class::MOP::Attribute
746       - attribute slot initialization is now the responsibility
747         of the attribute itself, so we added a method for it
748         called initialize_instance_slot
749
750     * examples/
751       - adjusted all the examples to use the new attribute
752         initialize_instance_slot method
753
754 0.24 Tues. April 11, 2006
755     * Class::MOP::Class
756       - cleaned up how the before/after/around method
757         modifiers get named with Sub::Name
758
759 0.23 Thurs. March 30, 2006
760         * Class::MOP::Class
761           - fixed the way attribute defaults are handled
762             during instance construction (bug found by chansen)
763
764         * Class::MOP::Attribute
765           - read-only accessors ('reader') will now die if
766             passed more than one argument (attempting to write
767             to them basically)
768               - added tests for this
769               - adjusted all /example files to comply
770
771 0.22 Mon. March 20, 2006
772     * Class::MOP::Class
773       - localized $@ in the *_package_variable functions
774         because otherwise, it does ugly things in Moose.
775           - added test case for this
776
777 0.21 Wed. March 15, 2006
778     * Class::MOP::Class
779       - fixed issue where metaclasses are reaped from
780         our cache in global destruction, and so are not
781         available in DESTORY calls
782
783 0.20 Thurs. March 2, 2006
784     - removed the dependency for Clone since
785       we no longer to deep-cloning by default.
786
787     * Class::MOP::Method
788       - added &package_name, &name and
789         &fully_qualified_name methods, some of
790         which were formerly private subs in
791         Class::MOP::Class
792
793     * Class::MOP::Method::Wrapped
794       - allows for a method to be wrapped with
795         before, after and around modifiers
796           - added tests and docs for this feature
797
798     * Class::MOP::Class
799       - improved &get_package_symbol
800           - &version and &superclasses now use it
801       - methods are now blessed into Class::MOP::Method
802         whenever possible
803       - added methods to install CLOS-style method modifiers
804          - &add_before_method_modifier
805          - &add_after_method_modifier
806          - &add_around_method_modifier
807              - added tests and docs for these
808       - added &find_next_method_by_name which finds the
809         equivalent of SUPER::method_name
810
811 0.12 Thurs. Feb 23, 2006
812     - reduced the dependency on B, no need to always
813       have the latest
814
815     * examples/
816       - added docs to the C3 method dispatch order test
817       - fixed missing Algorithm::C3 dependency by making
818         the test skip if it is not installed
819
820 0.11 Mon Feb. 20, 2006
821     * examples/
822       - added example of changing method dispatch order to C3
823
824     * Class::MOP::Class
825       - changed how clone_instance behaves, it now only does a
826         shallow clone (see docs for more details)
827         - added docs and tests
828
829 0.10 Tues Feb. 14, 2006
830     ** This release was mostly about writing more tests and
831        cleaning out old and dusty code, the MOP should now
832        be considered "ready to use".
833
834     - adding more tests to get coverage up a little higher,
835       mostly testing errors and edge cases.
836       - test coverage is now at 99%
837
838     * Class::MOP
839       - no longer optionally exports to UNIVERSAL::meta or
840         creates a custom metaclass generator, use the
841         metaclass pragma instead.
842
843     * Class::MOP::Class
844       - fixed a number of minor issues which came up in the
845         error/edge-case tests
846
847     * Class::MOP::Attribute
848       - fixed a number of minor issues which came up in the
849         error/edge-case tests
850
851     * examples/
852       - fixing the AttributesWithHistory example, it was broken.
853
854 0.06 Thurs Feb. 9, 2006
855     * metaclass
856       - adding new metaclass pragma to make setting up the
857         metaclass a little more straightforward
858
859     * Class::MOP
860       - clean up bootstrapping to include more complete
861         attribute definitions for Class::MOP::Class and
862         Class::MOP::Attribute (accessors, readers, writers,
863         etc.) ... it is redundant, but is useful meta-info
864         to have around.
865
866     * Class::MOP::Class
867       - fixing minor meta-circularity issue with &meta, it
868         is now more useful for subclasses
869       - added &get_attribute_map as an accessor for the
870         hash of attribute meta objects
871       - &compute_all_applicable_attributes now just returns
872         the attribute meta-object, rather than the HASH ref
873         since all the same info can be gotten from the
874         attribute meta-object itself
875           - updated docs & tests to reflect
876       - added &clone_instance method which does a deep clone
877         of the instance structure created by &construct_instance
878           - added docs & tests for this
879           - added Clone as a dependency
880       - added &new_object and &clone_object convience methods to
881         return blessed new or cloned instances
882           - they handle Class::MOP::Class singletons correctly too
883           - added docs & tests for this
884       - cleaned up the &constuct_class_instance so that it behaves
885         more like &construct_instance (and managed the singletons too)
886       - added the &check_metaclass_compatibility method to make sure
887         that metaclasses are upward and downward compatible.
888           - added tests and docs for this
889
890     * examples/
891       - adjusting code to use the &Class::MOP::Class::meta
892         fix detailed above
893       - adjusting code to use the metaclass pragma
894
895 0.05 Sat Feb. 4, 2006
896     * Class::MOP::Class
897       - added the &attribute_metaclass and &method_metaclass
898         attributes which contain a metaclass name to use for
899         attributes/methods respectively
900
901     * Class::MOP
902       - bootstrap additional attributes for Class::MOP::Class
903
904     * examples/
905       - adjusted the example code and tests to use the new
906         &attribute_metaclass feature of Class::MOP::Class
907       - added new example:
908         - LazyClass
909
910 0.04 Fri Feb. 3, 2006
911     * Class::MOP::Class
912       - some documentation suggestions from #perl6
913
914     * Class::MOP::Attribute
915       - improved error messages
916
917     * examples/
918       - added new examples:
919         - AttributesWithHistory
920         - ClassEncapsultedAttributes
921
922 0.03 Fri Feb. 3, 2006
923     - converted to Module::Build instead of EU::MM
924
925     * Class::MOP::Attribute
926       - refactored method generation code
927       - attributes are now associated with class directly
928
929     * examples/
930       - refactored the InsideOut example to take advantage
931         of the Class::MOP::Attribute refactoring
932       - changed example files to .pod files and hide thier
933         package names from PAUSE (I don't want to own these
934         namespaces really, they are just examples)
935
936 0.02 Thurs Feb. 2, 2006
937     - moving examples from t/lib/* to examples/*
938         - adding POD documentation to the examples
939
940 0.01 Thurs Feb. 2, 2006
941     - Initial release