Add a rebless_instance_away hook
[gitmo/Class-MOP.git] / Changes
CommitLineData
7c90a1a8 1Revision history for Perl extension Class-MOP.
b817e248 2
f8fa5c25 30.78_02
2c1f5348 4 * Class::MOP::Class
ea501fb6 5 * Class::MOP::Immutable
6 - A big backwards-incompatible refactoring of the Immutable API,
8e374ce5 7 and the make_immutable/make_mutable pieces of the Class
8 API. The core __PACKAGE__->meta->make_immutable API remains
9 the same, however, so this should only affect the most
10 guts-digging code.
ea501fb6 11
f8fa5c25 12 * XS code
13 - The XS code used a macro, XSPROTO, that's only in 5.10.x. This
14 has been fixed to be backwards compatible with 5.8.x.
15
160.78_01 Wed, March 18, 2009
17 * Class::MOP::*
18 - Revised and reorganized all of the API documentation. All
19 classes now have (more or less) complete API documentation.
20
ea501fb6 21 * Class::MOP::Class
2c1f5348 22 * Class::MOP::Instance
23 - Reblessing into a package that supports overloading wasn't
24 properly adding overload magic to the object due to a bug
25 in (at least) 5.8.8. We now use $_[1] directly which seems
26 to set the magic properly. (Sartak)
9e9a0c94 27
45a183fb 28 * Class::MOP::Attribute
29 - The process_accessors method is now private. A public alias
30 exists (and will stick around for a few releases), but it
31 warns that calling the public method is deprecated.
32
0242e3f9 33 * Class::MOP::Method::Generated
34 - Removed the new and _new methods, since this is an abstract
35 base class, and all existing subclasses implement their own
36 constructors.
37
4e1aac01 38 * MOP.xs
39 - Stop is_class_loaded from thinking a class is loaded if it
40 only has an empty GV (Florian Ragwitz).
9e9a0c94 41 - Add a test for this (Yappo).
029b8969 42 - Refactor get_all_package_symbols to allow short-circuiting
43 (Florian Ragwitz).
9e9a0c94 44 - Use this in is_class_loaded (Florian Ragwitz).
029b8969 45 - Stop segfaulting when trying to get the name from a sub that's
46 still being compiled (Florian Ragwitz).
9e9a0c94 47 - Add tests for this (Florian Ragwitz).
d90a8e8f 48 - Prefix all public symbols with "mop_" (Florian Ragwitz).
ef7d3a1d 49 - Clean up and simplify prehashing of hash keys (Florian Ragwitz).
50 - Simplify creating simple xs reader methods (Florian Ragwitz).
4052ab27 51 - Make everything compile with c++ compilers (Florian Ragwitz).
08f3791a 52 - Upgrade ppport.h from 3.14 to 3.17 (Florian Ragwitz).
9e9a0c94 53
029b8969 54 * Tests
55 - Remove optional test plans for tests depending on Sub::Name as
90bd72aa 56 we have a hard dependency on Sub::Name anyway (Florian Ragwitz).
2c1f5348 57
ef7d3a1d 58 * Makefile.PL
59 - Rebuild all c code if mop.h has changed (Florian Ragwitz)
60
eca95e04 610.78 Mon, February 23, 2009
47e735e0 62 * No changes from 0.77_01
eca95e04 63
d5f6699d 640.77_01 Sun, February 22, 2009
4bfa5ddb 65 * Everything
66 - This package now requires its XS components. Not using
67 Sub::Name lead to different behavior and bugginess in the pure
d5f6699d 68 Perl version of the code. A Moose test would fail when run
69 against the pure Perl version of this code.
70
7ebb7bed 71 * Class::MOP::Instance
d5f6699d 72 - The inline_* methods now quote attribute names themselves, and
73 don't expect to receive a quoted value.
74
4bfa5ddb 75
8f3fba9b 760.77 Sat, February 14, 2009
9c1dd83f 77 * MOP.xs
78 - Avoid assertion errors on debugging perls in is_class_loaded
79 (Florian Ragwitz)
80
3079a90e 81 * Class::MOP
82 - Fixed various corner cases where is_class_loaded incorrectly
83 returned true for a class that wasn't really loaded. (Dave
84 Rolsky)
85
668df632 86 * Class::MOP::Class
87 - Add get_all_method_names (Sartak)
9c1dd83f 88 - Add a wrapped_method_metaclass attribute (Florian Ragwitz)
668df632 89
a4bb3172 90 * Class::MOP::Package
c3c1917f 91 - Disable deprecated get_all_package_symbols in list
92 context. (Florian Ragwitz)
93
94 * Makefile.PL
95 - Make sure we generate a BSD-compatible Makefile (Florian
a4bb3172 96 Ragwitz)
97
8fd32374 98 * Class::MOP::Class
c5c8a954 99 - The misspelled "check_metaclass_compatability" method we've
8fd32374 100 kept around for backwards compat_i_bility will be removed in a
101 near future release. You've been warned.
102
8f3fba9b 1030.76 Thu, January 22, 2009
0b305028 104 * Class::MOP::Method::Generated
105 - Added new private methods to support code generation, which
106 are being used by Moose and can be used by MooseX
107 authors. (mst)
108 - Generated methods are now generated with a #line directive
109 reflecting the source of the generated method. (nothingmuch)
110
111 * Class::MOP::Class
112 - Clarified documentation of methods that return
113 Class::MOP::Method objects. (doy)
114
115 * Class::MOP
116 - Clarified documentation of the metaclass cache methods. (Sartak)
117
89f74416 118 * Tests
119 - Add test showing how the xs Class::MOP::is_class_loaded can
120 be made to operate differently to the pure perl version (t0m)
121
a0497979 1220.75 Wed, December 31, 2008
d89108ab 123 * Class::MOP::Class
124 - A class that was made immutable and then mutable could end up
125 sharing an immutable transformer object
126 (Class::MOP::Immutable) with other classes, leading to all
127 sorts of odd bugs. Reported by t0m. (Dave Rolsky)
128
c16a3087 1290.74 Tue, December 25, 2008
d14e06c3 130 * MOP.xs
131 - Add an xs implementation of Class::MOP::is_class_loaded (closes
132 RT#41862). Based on a patch by Goro Fuji. (Florian Ragwitz)
133 - Changed internals to make prehashing of hash keys easier and less
134 error-prone. (Florian Ragwitz)
135 * Class::MOP::Class
136 - Fix documentation to show that around modifiers happen on both
c6d9b1ff 137 sides of the modified method. (Dave Rolsky)
d14e06c3 138
2b5fafa1 1390.73 Tue, December 16, 2008
c0757d65 140 * MOP.xs
2b5fafa1 141 - Don't use Perl_mro_meta_init. It's not part of the public perl
142 api. Fixes failures to build on Win32 (RT #41750). (Florian
143 Ragwitz)
351e5029 144 * t/082_get_code_info.t
2b5fafa1 145 - Add $^P &= ~0x200; (per Ovid's suggestion) in order to not
146 munger anonymous subs when under -d and so making the tests
147 succeed in that case.
351e5029 148
8704ee6d 1490.72 Mon, December 8, 2008
6a6f7a2f 150 * Class::MOP::Package
151 - Pass options to _new, so subclass' attributes can be
152 initialized (Sartak)
aa906e42 153 * Class::MOP::Method
adb2b128 154 - In the docs, indicate that package_name and name are required
155 when calling ->wrap (Stefan O'Rear)
6a6f7a2f 156
6b5ac420 1570.71_02 Fri, December 5, 2008
62a0a0f3 158 * Class::MOP::Immutable
159 - Added a new attribute, inlined_constructor, which is true if
160 the constructor was inlined.
fdc6771b 161 * Class::MOP::Package
162 - Make get_all_package_symbols return a hash ref in scalar
163 context and deprecate calling it in list context with a
164 warning. (Florian Ragwitz)
165 * MOP.xs
166 - Various improvements and refactoring, making things more robust and
167 easier to maintain. (Florian Ragwitz)
62a0a0f3 168
34147f49 1690.71_01 Wed, December 3, 2008
25a5f083 170 * Class::MOP::Method
171 - Add an "execute" method to invoke the body so
172 we can avoid using the coderef overload (Sartak)
41885bab 173 * Class::MOP::Immutable
9ec62360 174 - When we memoize methods, get their results lazily
175 to remove some compile-time cost (Sartak)
41885bab 176 - Small speedup from eliminating several method
177 calls (Sartak)
05e183d1 178 * Class::MOP::Class
179 - Some small internal tweaks to try to reduce the number of
180 times we call get_method_map when bootstrapping the MOP. This
181 might make loading Class::MOP (and Moose) a little
182 faster. (Dave Rolsky)
52e5f955 183 - Implemented an optional XS version of get_method_map. Mostly
184 taken from a patch by Goro Fuji (rt.cpan.org #41080), with
185 help form Florian Ragwitz. (Dave Rolsky)
7ef2f4b7 186 - Make the behaviour of of get_all_package_symbols (and
187 therefore get_method_map) consistent for stub methods. Report
188 and test by Goro Fuji (rt.cpan.org #41255). (Florian Ragwitz)
25a5f083 189
96185d43 1900.71 Wed November 26, 2008
d652fbd5 191 * Class::MOP::Class
192 * Class::MOP::Module
193 - Actual package creation has moved upward from
194 Class to Module so that Moose roles can share
195 the code (Sartak)
196
88b8ac17 1970.70_01 Mon, November 19, 2008
198 * Class::MOP
199 - Fixes for failures with blead (Florian Ragwitz)
200 - Silenced compiler warnings (Florian Ragwitz)
201
2020.70 Fri, November 14, 2008
7329b9e2 203 * Class::MOP
204 - Fixed an odd corner case where the XS version of
9b1760fc 205 get_all_package_symbols could cause a segfault. This only
7329b9e2 206 happened with inlined constants in Perl 5.10.0 (Florian
207 Ragwitz)
7329b9e2 208
52c685d3 2090.69 Fri, November 7, 2008
b88aa2e8 210 * Class::MOP::Method::Wrapped
211 - Added introspection methods for method modifiers (Dave Rolsky)
212
213
4a9e02e8 2140.68 Fri October 24, 2008
dfbc4d4c 215 * Class::MOP
216 - Make load_class require by file name instead of module name.
217 This stops confusing error messages when loading '__PACKAGE__'.
218 (Florian Ragwitz)
5a24cf8a 219 - Add load_one_class_of function to enable you to load one of a
220 list of classes, rather than having to call load_class multiple
221 times in an eval. (t0m)
dfbc4d4c 222
5f5ee28a 2230.67 Tue October 14, 2008
2e7eb96b 224 * Class::MOP::Class
225 - Call a method on the class after setting the superclass list
226 so that we can get Perl to detect cycles before MRO::Compat
227 spirals into an infinite loop (sartak)
228 - Reported by Schwern, [rt.cpan.org #39001]
34d04967 229 - In create(), pass unused options on to initialize()
230 - added test for this
2e7eb96b 231
34d04967 2320.66 Sat September 20, 2008
fe05cbbe 233 !! This release has an incompatible change regarding !!
234 introspection of a class's method with Class::MOP::Class !!
235
9e9e6b8f 236 * Tests and XS
237 - We (us maintainers) now run all tests with XS and then without
238 XS, which should help us catch skew between the XS/pure Perl
e073e667 239 code. (Dave Rolsky)
9e9e6b8f 240
91b73829 241 * Class::MOP::Class
fe05cbbe 242 ! The alias_method method has been deprecated. It now simply
1190621f 243 calls add_method instead. There is no distinction between
244 aliased methods and "real" methods.
fe05cbbe 245
246 This means that methods added via alias_method now show up as
7143219b 247 part of the class's method list/map. This is a backwards
fe05cbbe 248 incompatible change, but seems unlikely to break any
249 code. Famous last words. (Dave Rolsky)
91b73829 250
155f0cba 251 * Class::MOP::Class
252 - Fixed the spelling of "compatibility", but we still have a
253 "check_metaclass_compatability" method for backwards
254 compatibility.
9e9e6b8f 255
94278c1b 2560.65 Mon September 1, 2008
257 For those not following the series of dev releases, the changes
8b9106cf 258 from 0.64 from 0.65 can mostly be summed up as a lot performance
94278c1b 259 improvements by nothingmuch, including new optional XS versions of
260 some methods. Also, Class::MOP now works _without_ any XS modules,
261 for sad systems without a compiler.
262
988fb42e 263 * Class::MOP::Method
264 - Added name and package_name XS accessors, and make sure all
265 the XS and Perl versions work the same way. (Dave Rolsky)
266
267 * MOP.xs
268 - The XS versions of various methods just returned undef when
269 called class methods, rather than dying like the pure Perl
270 versions. (Dave Rolsky)
271
13ac653a 2720.64_07 Fri August 29, 2008
400982e3 273 * Class::MOP
13ac653a 274 - Silenced warnings that managed to break Moose tests when XS
275 was loaded. (Dave Rolsky)
276 - Some XS versions of methods were ignored because of typos in
277 MOP.xs. (Dave Rolsky)
400982e3 278
13ac653a 2790.64_06 Mon August 25, 2008
9457b596 280 * Class::MOP (MOP.xs)
281 - Another MS VC++ fix, cannot declare a variable in the middle
282 of a scope (Taro Nishino).
283
2840.64_05 Sun August 24, 2008
2a755fe8 285 * Class::MOP
286 - None of the dev releases actually loaded the XS properly, but
287 we silently fell back to the pure Perl version of the
288 code. (Dave Rolsky)
289
290 * Class::MOP (MOP.xs)
291 - Replaced some code that used functions not available on Visual
292 C++ with some Perl XS API bits (Dave Rolsky).
293
f65af096 2940.64_04 Sat August 23, 2008
9ebc265d 295 * Class::MOP::Class
f65af096 296 - Workaround a bug in 5.8.1's goto sub (nothingmuch)
297
298 * pod.t and pod_coveraget.t
299 - These are no longer shipped with the tarball because of bogus
300 failures from CPAN testers. (Dave Rolsky)
9ebc265d 301
df7077cd 3020.64_03 Thu August 21, 2008
303 * Class::MOP::Package
304 - Some (legit) code was misparsed by earlier 5.8.x
305 releases. (nothingmuch)
306
307 * Class::MOP
308 - Fix a constant in void context warning (nothingmuch)
309
09ed1ec5 3100.64_02 Thu August 21, 2008
64c591d3 311 * Makefile.PL and Class::MOP
4dde2f23 312 - Explicitly require Perl 5.8.0+ (Dave Rolsky)
313
314 * Makefile.PL
315 - Add missing prereqs that got lost in the switch away from
316 Module::Install.
64c591d3 317
09ed1ec5 318 * Class::MOP::Instance
319 - New method - get_all_attributes (nothingmuch)
320
3210.64_01 Wed August 20, 2008
f125b31e 322 * Makefile.PL
323 - We now check to see if you have a compiler. If you don't, the
324 module installs without some XS bits, but will work the same
325 as with XS. This should make it easier to install on platforms
326 without a compiler (like Windows). (Dave Rolsky)
2e5c1a3f 327
40b3c18f 328 * many modules
7f799c13 329 - Perl 6 style attribute naming replaced with sane style ('methods', not
330 '%!methods'). These changes should not impact any existing API uses.
331 (nothingmuch).
332
333 * many modules
40b3c18f 334 - Quite a number of optimizations based on profiling, including
335 allowing constructors to take hash references instead of
336 hashes, duplicating some frequently used code in XS, and
337 making constructors immutable. These changes should not impact
338 any existing API uses. (nothingmuch)
339
7f799c13 340 * Many modules
341 - Constructors now respect the meta attributes of their subclasses,
342 facilitating MOP extensibility. More related changes will happen in the
343 next several releases. (nothingmuch)
344
40b3c18f 345 * Class::MOP::Class
7f799c13 346 - New method - get_all_methods, replaces the deprecated
347 compute_all_applicable_methods. get_all_attributes provided for
348 consistency (nothingmuch)
349 - New method - wrap_method was refactored out of get_method_map
350 (nothingmuch)
351 - New API for meta instance invalidation - invalidate_meta_instance,
352 invalidate_meta_instances, add_dependent_meta_instance,
353 remove_dependent_meta_instance, called automatically when attribute
354 definitions change and allows notification of dependent subclasses.
355 (nothingmuch)
40b3c18f 356
7202116b 3570.64 Sun August 3, 2008
84bc89b3 358 * Class::MOP::Immutable
7202116b 359 - fixing subtle edge case in immutable when you
84bc89b3 360 call ->meta (stevan)
7202116b 361 - clean up option processing (nothingmuch)
362
363 * Class::MOP::Instance
364 - inlined initialize slot didn't match
365 non-inlined (nothingmuch)
84bc89b3 366
f079b1eb 3670.63 Mon July 7, 2008
07940968 368 * Class::MOP
369 - load_class will initialize a metaclass even if
370 the class is already loaded (sartak)
371 - load_class now returns the metaclass instance
372 instead of just 1 (sartak)
6e1c8b63 373
f079b1eb 374 * elsewhere
375 - better error messages (sartak and Dave Rolsky)
376
ebce5539 3770.62 Wed June 18, 2008
1377b506 378 - in is_class_loaded, recognize scalar references (as opposed to globs) in
379 the symbol table as methods (these are optimized constant subs)
380
70ad0655 3810.61 Fri. June 13, 2008
382 - Okay, lets give this another try and see if PAUSE
383 recognizes it correct this time.
a023763e 384
3850.60 Thurs. Jun 12, 2008
809a26fc 386 - Fixed a version number issue by bumping all modules
387 to 0.60.
8c5cc782 388
3890.59 Thurs. Jun 12, 2008
d1dba7a1 390 !! Several fixes resulting in yet another 25-30% speedup !!
9b522fc4 391
392 * Class::MOP::Class
393 - now stores the instance of the instance
394 metaclass to avoid needless recomputation
8b49a472 395 and deletes it when the cache is blown
119f3a92 396 - introduce methods to query Class::MOP::Class for
397 the options used to make it immutable as well as
398 the proper immutable transformer. (groditi)
8b49a472 399
400 * Class::MOP::Package
401 - {add, has, get, remove}_package_symbol all
402 now accept a HASH ref argument as well as the
403 string. All internal usages now use the HASH
404 ref version.
f6dc69d2 405
406 * Class::MOP
407 - MOP.xs does sanity checks on the coderef
408 to avoid a segfault
26fcef27 409 - is_class_loaded check now uses code that
410 was improved in Moose's ClassName type
ab5e2f48 411 check (Sartak)
412 - nonsensical (undef, empty, reference) class
413 names now throw a more direct error in
414 load_class (Sartak)
3f7759c1 415 - tests for this and other aspects of
416 load_class (Sartak)
9b522fc4 417
418 * Class::MOP
419 Class::MOP::Class
420 Class::MOP::Method
421 Class::MOP::Method::Wrapped
422 Class::MOP::Attribute
423 - switched usage of reftype to ref because
424 it is much faster
425
352c364f 4260.58 Thurs. May 29, 2008
62781d9f 427 (late night release engineering)--
428
429 - fixing the version is META.yml, no functional
430 changes in this release
431
de0f9e1c 4320.57 Wed. May 28, 2008
d1dba7a1 433 !! Several speedups resulting in 20-25% speedups !!
de0f9e1c 434 || (thanks to konobi, groditi, mst & CataMoose) !!
435
ae234dc6 436 * Class::MOP::Class
437 - made get_method_map use list_all_package_symbols
438 instead of manually grabbing each symbol
de0f9e1c 439 - streamlining &initialize somewhat, since it gets
440 called so much
ae234dc6 441
442 * Class::MOP::Package
443 - made {get, has}_package_symbol not call
444 &namespace so much
de0f9e1c 445 - inlining a few calls to &name with
446 direct HASH access key access
ae234dc6 447 - added get_all_package_symbols to fetch
448 a HASH of items based on a type filter
449 similar to list_all_package_symbols
450 - added tests for this
451
32202ce2 452 * Class::MOP::Method
453 Class::MOP::Method::Constructor
454 Class::MOP::Method::Generated
455 Class::MOP::Method::Accessor
456 - added more descriptive error message to help
457 keep people from wasting time tracking an error
47e20ba2 458 that is easily fixed by upgrading.
32202ce2 459
d1dba7a1 460 * Class::MOP::Immutable
461 - Don't inline a destructor unless the user actually
462 needs one
463 - added tests for this
464
b4009dc1 4650.56 Saturday, May 24, 2008
11b56828 466 * Class::MOP
467 - we now get the &check_package_cache_flag
468 function from MRO::Compat
d7d3f3cb 469 - All XS based functionality now has a
470 Pure Perl alternative
6c34db07 471 - the CLASS_MOP_NO_XS environment variable
d7d3f3cb 472 can now be used to force non-XS versions
6c34db07 473 to always be used
11b56828 474
9e517e01 475 * Class::MOP::Attribute
476 - add has_read_method and has_write_method
d7d3f3cb 477 - get_{read,write}_method_ref now wraps the
def5c0b5 478 anon-sub ref in the method metaclass when
479 possible
480 - added tests for this
d7d3f3cb 481
5f3efd66 482 * Class::MOP::Immutable
d7d3f3cb 483 - added the ability to "wrap" methods when
5f3efd66 484 making the class immutable
d7d3f3cb 485
5f3efd66 486 * Class::MOP::Class
daf8d8bc 487 - now handling the edge case of ->meta->identifier
d7d3f3cb 488 dying by wrapping add_package_symbol to specifically
5f3efd66 489 allow for it to work.
490 - added tests for this
d7d3f3cb 491
492 * Class::MOP::Attribute
6c34db07 493 Class::MOP::Class
d7d3f3cb 494 Class::MOP::Immutable
6c34db07 495 - any time a method meta object is constructed
d7d3f3cb 496 we make sure to pass the correct package and
6c34db07 497 method name information
d7d3f3cb 498
6c34db07 499 * Class::MOP::Method
500 Class::MOP::Method::Wrapped
501 Class::MOP::Method::Generated
502 Class::MOP::Method::Accessor
d7d3f3cb 503 Class::MOP::Method::Consructor
504 - the &wrap constructor method now requires that a
505 'package_name' and 'name' attribute are passed. This
506 is to help support the no-XS version, and will
507 throw an error if these are not supplied.
6c34db07 508 - all these classes are now bootstrapped properly
509 and now store the package_name and name attributes
d7d3f3cb 510 correctly as well
511
512 ~ Build.PL has been removed since the
513 Module::Install support has been removed
9e517e01 514
8adaad20 5150.55 Mon. April 28, 2008
516 - All classes now have proper C3 MRO support
517 - added MRO::Compat as a dependency to allow
518 for the C3 MRO support to Just Work in all
519 perl versions
d7d3f3cb 520
830b326c 521 * Class::MOP::Class
d7d3f3cb 522 - rebless_instance now returns the instance
523 it has just blessed, this is mostly to
830b326c 524 facilitate chaining
d7d3f3cb 525 - set the attr correctly in rebless_instance
6e2a700f 526 when it has no init_arg
77a143ba 527 - tweaked &linear_isa and &class_precedence_list
528 to support c3 classes.
830b326c 529
e0db39d2 5300.54 Fri. March, 14, 2008
8861fab2 531 * Class::MOP
214e4bd7 532 metaclass.pm
8861fab2 533 - making sure that load_class never gets
d7d3f3cb 534 passed a value from @_ or $_ to squash
8861fab2 535 Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
536
09c6e1d2 537 * Class::MOP::Class
538 - make_{immutable,mutable} now return 1
539 (cause Sartak asked)
d7b2249e 540 - improved error handling in ->create method
d7d3f3cb 541 - rebless_instance now takes extra params which
542 will be used to populate values
214e4bd7 543 - added tests for this
d7d3f3cb 544
acce7fd6 545 * Class::MOP::Object
d7d3f3cb 546 - localizing the Data::Dumper configurations so
547 that it does not pollute others (RT #33509)
548
d7b2249e 549 * Class::MOP::Class
550 Class::MOP::Package
551 Class::MOP::Module
552 Class::MOP::Method
553 Class::MOP::Attribute
d7d3f3cb 554 - these classes no longer define their own ->meta,
555 but instead just inherit from Class::MOP::Object
556
d7b2249e 557 * Class::MOP::Instance
d7d3f3cb 558 Class::MOP::Immutable
d7b2249e 559 - these classes now inherit from Class::MOP::Object
d7d3f3cb 560
10dd437b 561 * t/
d7d3f3cb 562 - fixed the filename length on several
10dd437b 563 test files so we install on VMS better
564 (RT #32295)
d7d3f3cb 565 - fixed incorrect use of catdir when it
10dd437b 566 should be catfile (RT #32385)
567
2491730f 5680.53 Thurs. Feb. 14, 1008
7a536297 569 ~~ several doc. fixes and updates ~~
d7d3f3cb 570
0c6f4c4a 571 * Class::MOP::Class
572 Class::MOP::Method::Constructor
573 Class::MOP::Attribute
574 - making init_arg accept an undefined value
d7d3f3cb 575 to indicate that no constructor args can
0c6f4c4a 576 be passed (thanks to nothingmuch)
577 - added tests for this
339264d8 578 - added attribute initializer attribute (rjbs)
d7d3f3cb 579
0c6f4c4a 580 * Class::MOP.
581 - making this use the new init_arg => undef
d7d3f3cb 582 feature instead of the silly hack from
0c6f4c4a 583 before (thanks to nothingmuch)
ad074154 584
3e8e8f07 5850.52 Tues. Jan. 22, 2008
2a2b8458 586 * Class::MOP::Class
d7d3f3cb 587 - fixed bug in rebless_instance
2a2b8458 588 (discovered by ash)
589
590 * Class::MOP::Method::Constructor
d7d3f3cb 591 - removed assumptions about the existence of
2a2b8458 592 a &meta method
593
656ce3ba 5940.51 Mon. Jan. 14, 2008
69e3ab0a 595 ~~~ some misc. doc. fixes ~~~
596 ~~ updated copyright dates ~~
d7d3f3cb 597
c1d5345a 598 * Class::MOP
d7d3f3cb 599 - now sets the IS_RUNNING_ON_5_10
c1d5345a 600 constant so that we can take advantage
601 of some of the nice bits of 5.10
d7d3f3cb 602
c1d5345a 603 * Class::MOP::Class
d7d3f3cb 604 - uses the IS_RUNNING_ON_5_10 flag to
605 optimize the &linearized_isa method
c1d5345a 606 and avoid the hack/check for circular
d7d3f3cb 607 inheritence in &class_precedence_list
3d9e4646 608 - added rebless_instance method (Sartak)
609 - added tests for this
d7d3f3cb 610
611 * Class::MOP::Immutable
612 - the immutable class now keeps track of
c1d5345a 613 the transformer which immutablized it
69e3ab0a 614
3d9e4646 615 * Class::MOP::Instance
616 - added rebless_instance_structure method (Sartak)
617 - added tests for this
618
a780a6ff 6190.50 Fri. Dec. 21, 2007
6ff0d647 620 * Class::MOP::Class
d7d3f3cb 621 - fixed bug in immutable to make sure that
622 transformation arguments are saved
6ff0d647 623 correctly (mst)
b6bcc3a5 624 - added tests for this
d7d3f3cb 625
6ff0d647 626 * Class::MOP::Immutable
627 - fixed a bug (see above)
d7d3f3cb 628
6ff0d647 629 * Class::MOP::Attribute
630 - some doc updates
631
30b8af04 6320.49 Fri. Dec. 14, 2007
b6bcc3a5 633 !! Class::MOP now loads 2 x faster !!
30b8af04 634 !! with XS speedups (thanks konobi) !!
d7d3f3cb 635
30b8af04 636 * Class::MOP
637 - removed the dependency on B
638 - added two XS functions (thanks konobi)
639 - get_code_info($code) which replaces all
640 the B fiddling we were doing with
641 faster/leaner XS level fiddling
d7d3f3cb 642 - check_package_cache_flag($pkg_name) which
643 returns the PL_sub_generation variable to
30b8af04 644 be used to help manage method caching.
d7d3f3cb 645
646 NOTE:
647 In 5.10 or greater this will actually
648 use the mro::get_pkg_gen instead to give
649 even more accurate caching information.
30b8af04 650 blblack++ for that stuff :)
d7d3f3cb 651
6c9f390e 652 * Class::MOP::Class
653 - added the &subclasses method (thanks rlb)
d7d3f3cb 654 - added the update_package_cache_flag and
655 reset_package_cache_flag which help keep
656 track of when we need to re-fetch the
657 method map.
30b8af04 658 - Several small improvements to take advantage
659 of the new method map caching features
4c4a6c41 660
1b8b3e09 6610.48 Mon. Nov. 26, 2007
d14f6cbe 662 * Class::MOP::Attribute
d7d3f3cb 663 - fixed get_read/write_method to handle the
664 HASH ref case, which makes the
d14f6cbe 665 get_read/write_method_ref handle it too.
666 - added more tests for this
667
742fb371 6680.47 Sat. Nov. 24, 2007
669 * Class::MOP::Attribute
670 - fixed misspelling in get_write_method_ref
78d9bb38 671 - added more tests for this
742fb371 672
fe7c0b15 6730.46 Fri. Nov. 23, 2007
b7bdffc3 674 * Class::MOP::Class
d7d3f3cb 675 - added the linearized_isa method instead of constantly
676 pruning duplicate classes (this will be even more
b7bdffc3 677 useful in the 5.10-compat version coming soon)
d7d3f3cb 678
5da16d1b 679 * Class::MOP::Attribute
680 - added the get_read_method_ref and get_write_method_ref
d7d3f3cb 681 methods which allow you to retrieve a CODE ref which
5da16d1b 682 can always be used to read or write an attribute.
b7bdffc3 683
1a5cc82e 6840.45 Thurs. Nov. 13, 2007
232c4e13 685 * Class::MOP::Attribute
686 - Fix error message on confess (groditi)
687
544143b2 6880.44 Thurs. Nov. 13, 2007
689 - Apparently I didn't make dist correctly (groditi)
690
c0aeeb91 6910.43 Thurs. Nov. 13, 2007
b08fd50c 692 * Class::MOP
1d68af04 693 - Add support for the 'builder' attribute (groditi)
694
b08fd50c 695 * Class::MOP::Class
d7d3f3cb 696 - optimise metaclass-already-exists check in
b08fd50c 697 construct_class_instance (groditi)
d7d3f3cb 698 - duplicate check into initialize to save a
b08fd50c 699 call through (groditi)
700
1d68af04 701 * Class::MOP::Attribute
702 - Add support for the 'builder' attribute (groditi)
d7d3f3cb 703 - Make predicates check for the existence of a value, not whether
b08fd50c 704 it is defined (groditi)
8768ecf3 705
706 * Class::MOP::Instance
d7d3f3cb 707 - Make predicates check for the existence of a value, not whether
b08fd50c 708 it is defined (groditi)
8768ecf3 709
d7d3f3cb 710 * Class::MOP::Method::Accessor
565f0cbb 711 - made this a subclass of Class::MOP::Method::Generated
712 - removed the relevant attributes
713
714 * Class::MOP::Method::Constructor
715 - fixed the cached values we had to be more sane
716 - made this a subclass of Class::MOP::Method::Generated
d7d3f3cb 717 - fixed generated constructor so it properly handles
565f0cbb 718 subclasses now.
719 - added tests for this
d7d3f3cb 720 - added the option to allow for both inlined and
565f0cbb 721 non-inlined constructors.
b08fd50c 722 - Update inlined methods for builder and predicate changes (groditi)
565f0cbb 723
724 * Class::MOP::Method::Generated
d7d3f3cb 725 - added this class as an abstract base for the
565f0cbb 726 Class::MOP::Method::{Constructor,Accessor} classes
727 - added tests for this
728
b08fd50c 729 *t/
730 - Alter tests (005, 014 020, 021) for new builder addition (groditi)
731 - Tests for new predicate behavior (and corrections to old tests) (groditi)
732
733 *examples/
734 - Update ArrayRef based class example to work with predicate changes
735
367183c4 7360.42 Mon. July 16, 2007
9195ddff 737 !!! Horray for mst, he fixed it !!!
738
92af7fdf 739 * Class::MOP::Package
740 - alter symbol table handling to deal with 5.8.x and 5.9.x
d7d3f3cb 741
92af7fdf 742 * t/
9195ddff 743 - Get rid of the crappy workaround from 0.40/41
92af7fdf 744
829f7554 7450.41 Sun. July 15, 2007
746 * t/
747 Arghh!!! My TODO test didn't work, so I handle
d7d3f3cb 748 it manually now so that people can use this
829f7554 749 with 5.9.5/bleadperl without issue.
750
1d7205b8 7510.40 Tues, July 3, 2007
9f88b8ff 752 * t/
d7d3f3cb 753 ~ marked a test in 003_methods.t as TODO
754 for perl 5.9.5 (this test is irrelvant to
755 the module functioning on 5.9.5 for the most
1d7205b8 756 part anyway)
9f88b8ff 757
28acb786 7580.39 Mon. June 18, 2007
b817e248 759 * Class::MOP::Immutable
0ac992ee 760 - added make_metaclass_mutable + docs (groditi)
761 - removed unused variable
d9586da2 762 - added create_immutable_transformer
763 necessary for sane overloading of immutable behavior
d7d3f3cb 764 - tests for this (groditi)
0ac992ee 765
766 * Class::MOP::Class
767 - Immutability can now be undone,
768 added make_mutable + tests + docs (groditi)
04dd7510 769 - Massive changes to the way Immutable is done
770 for details see comments next to make_immutable
771 This fixes a bug where custom metaclasses broke
d7d3f3cb 772 when made immutable. We are now keeping one immutable
773 metaclass instance per metaclass instead of just one
04dd7510 774 to prevent isa hierarchy corruption. Memory use will go
775 up, but I suspect it will be neglible.
776 - New tests added for this behavior. (groditi)
7c90a1a8 777
c0fcd6ab 7780.38 Thurs. May 31, 2007
823a5d31 779 ~~ More documentation updates ~~
d7d3f3cb 780
823a5d31 781 * Class::MOP::Package
782 - we now deal with stub methods properly
783 - added tests for this
c0fcd6ab 784 - fixed some tests failing on 5.9.5 (thanks blblack)
d7d3f3cb 785
b25109b1 786 * Class::MOP::Attribute
787 - added get_read_method and get_write_method
d7d3f3cb 788 thanks to groditi for this code, tests
c81de280 789 and docs.
b25109b1 790 - added tests and POD for this
d7d3f3cb 791
795a0c8b 792 * Class::MOP::Class
d7d3f3cb 793 - fixed RT issue #27329, clone object now
795a0c8b 794 handles undef values correctly.
795 - added tests for this
d7d3f3cb 796 - Corrected anon-class handling so that they
797 will not get reaped when instances still
798 exist which need to reference them. This is
799 the correct behavior, hopefully this is an
800 obscure enough feature that there are not too
d4ba1677 801 many work arounds out in the wild.
d7d3f3cb 802 - added tests for this by groditi
95514cb4 803 - updated docs to explain this
804
805 * metaclass
c0fcd6ab 806 - load custom metaclasses automatically (thanks groditi)
f2266181 807 - added tests for this behavior
a06797b0 808
3dc99d93 8090.37 Sat. March 10, 2007
448b6e55 810 ~~ Many, many documentation updates ~~
d7d3f3cb 811
448b6e55 812 * Class::MOP
d7d3f3cb 813 - added &load_class and &is_class_loaded
448b6e55 814 - added tests and docs for these
2367814a 815
9363ea89 816 * Class::MOP::Attribute
d7d3f3cb 817 - default now checks the instance with defined to
9363ea89 818 avoid setting off bool-overloads (found by Carl Franks)
819
c23184fc 8200.37_002
d7d3f3cb 821 * /t
822 - bad name in a test, causing meaningless failuress.
c23184fc 823 No other changes.
824
8250.37_001
d7d3f3cb 826
c23184fc 827 ~~ GLOBAL CHANGES ~~
d7d3f3cb 828 - All attribute names are now consistent and follow Perl 6
829 style (prefixed with the sigil, and ! as the twigil for
830 private attrs). This should not affect any code, unless
831 you broke encapsulation, in which case, it is your problem
c23184fc 832 anyway.
d7d3f3cb 833
c23184fc 834 !! Class::MOP::Class::Immutable has been removed
d7d3f3cb 835
c23184fc 836 * Class::MOP::Method::Constructor
d7d3f3cb 837 - this has been moved out of Class::MOP::Class::Immutable
c23184fc 838 and is a proper subclass of Class::MOP::Method now.
d7d3f3cb 839
c23184fc 840 * Class::MOP::Class
d7d3f3cb 841 - this module now uses Class::MOP::Immutable for the
842 immutable transformation instead of
c23184fc 843 Class::MOP::Class::Immutable.
d7d3f3cb 844
845 + Class::MOP::Immutable
846 - this module now controls the transformation from a mutable
847 to an immutable version of the class. Docs for this will
c23184fc 848 be coming eventually.
d7d3f3cb 849
c23184fc 850
cdc1ecba 8510.36 Sun. Nov. 5, 2006
a651e249 852 * Class::MOP::Class
d7d3f3cb 853 - added a few 'no warnings' lines to keep annoying
854 (and meaningless) warnings from chirping during
a651e249 855 global destruction.
d7d3f3cb 856
0870928c 857 * Class::MOP
d7d3f3cb 858 - some more bootstrapping is now done on the new
0870928c 859 classes
d7d3f3cb 860
0870928c 861 * Class::MOP::Class::Immutable
d7d3f3cb 862 *** API CHANGE ***
863 - constructor generation is now handled by
0870928c 864 the Class::MOP::Method::Constructor class
d7d3f3cb 865
0870928c 866 * Class::MOP::Method::Constructor
d7d3f3cb 867 - created this to handle constructor generation
0870928c 868 in Class::MOP::Class::Immutable
d7d3f3cb 869
0870928c 870 * Class::MOP::Attribute
d7d3f3cb 871 *** API CHANGE ***
872 - attributes now delegate to the
873 Class::MOP::Method::Accessor to generate
0870928c 874 accessors
d7d3f3cb 875
0870928c 876 * Class::MOP::Method::Accessor
d7d3f3cb 877 - all accessor generation functions from
0870928c 878 Class::MOP::Attribute have been moved here
a651e249 879
80f00c79 8800.35 Sat. Sept. 30, 2006
8745cf22 881
882 * scripts/class_browser.pl
d7d3f3cb 883 - initial prototype of a class browser, more
884 on this to come. Comments and patches are
8745cf22 885 very much welcome.
b1897d4d 886
887 * Class::MOP
d7d3f3cb 888 - All Class::MOP::* accessors are no longer
889 re-generated in the bootstrap, instead
6d2118a4 890 they are aliased from the originals
6d2118a4 891 - fixed tests to reflect
d7d3f3cb 892 - added Class::MOP::Method (and its subclasses)
b1897d4d 893 to the bootstrap
894 - adjusted tests for this
86482605 895 - added the Class::MOP::Instance attributes
896 to the bootstrap
d7d3f3cb 897
b1897d4d 898 * Class::MOP::Method
899 *** API CHANGE ***
900 - methods are no longer blessed CODE refs
901 but are actual objects which can be CODE-ified
902 - adjusted tests to compensate
d7d3f3cb 903 - adjusted docs for this
b1897d4d 904
905 * Class::MOP::Class
d7d3f3cb 906 - changed how methods are dealt with to
907 encapsulate most of the work into the
b1897d4d 908 &get_method_map method
909 - made several adjustments for the change
910 in Class::MOP::Method
d7d3f3cb 911 - &add_attribute now checks if you are adding
912 a duplicate name, and properly removes the
b1897d4d 913 old one before installing the new one
914 - added tests for this
86482605 915 - adjusted docs for this
d7d3f3cb 916
b1897d4d 917 * Class::MOP::Class::Immutable
918 - added caching of &get_method_map
919 - fixed issue with &get_package_symbol
920 - cleaned up the methods that die (patch by David Wheeler)
d7d3f3cb 921
b1897d4d 922 * Class::MOP::Package
d7d3f3cb 923 - added filtering capabilities to
b1897d4d 924 &list_all_package_symbols
925
a549ce50 9260.34 Sat. Aug. 26, 2006
c4260b45 927 * Class::MOP::Class
928 - added the %:methods attribute, which like
d7d3f3cb 929 the $:version and such just actually goes
930 to the symbol table to get it's stuff.
c4260b45 931 However, it makes the MOP more complete.
88dd563c 932 ** API CHANGE **
d7d3f3cb 933 - The &create method now requires that all
934 but the package name now is passed in as
88dd563c 935 named parameters. See docs for more info.
936 - updated docs and tests for this
d7d3f3cb 937
c4260b45 938 * Class::MOP::Object
d7d3f3cb 939 - added &dump method to easily Data::Dumper
c4260b45 940 an object
d7d3f3cb 941
c4260b45 942 * Class::MOP
d7d3f3cb 943 - cleaned up the initialization of attributes
944 which do not store things in the instance
c4260b45 945 - added the %:methods attribute definition to
946 the bootstrap
d7d3f3cb 947
88dd563c 948 ~ lots of misc. test cleanup
c4260b45 949
56e8dd5d 9500.33 Sat. Aug. 19, 2006
be7677c7 951 * Class::MOP::Class
d7d3f3cb 952 - moved the metaclass cache out of here
be7677c7 953 and it is now in Class::MOP itself.
d7d3f3cb 954
56e8dd5d 955 * Class::MOP
956 - moved all the metaclass cache stuff here
957 - fixed all tests for this
be7677c7 958
148b4697 959 * Class::MOP::Attribute
d7d3f3cb 960 - reference values (other than CODE refs)
148b4697 961 are no longer allowed for defaults
962 - added tests for this
d7d3f3cb 963
56dcfc1a 964 * Class::MOP::Package
d7d3f3cb 965 - fixed an issue with perl 5.8.1 and how it deals
966 with symbol tables. The namespace hash is now
967 always reloaded from the symbol table.
e3a2c885 968
969 ~ lots of misc. documentation cleanup
1396f86b 970
716c5765 9710.32 Sat. Aug. 12, 2006
d7d3f3cb 972 + added Class::MOP::Object so that the
6e57504d 973 metamodel is more complete (and closer
974 to what Perl 6 will probably be).
975
9ca19585 976 * Class::MOP::Package
d7d3f3cb 977 - refactored entire class, this is now
9ca19585 978 the primary gateway between the metaclass
979 and the Perl 5 symbol table
980 - added many tests for this
d7d3f3cb 981 - this class is now a subclass of
6e57504d 982 Class::MOP::Object
716c5765 983 - added some tests to reflect this
d7d3f3cb 984
9ca19585 985 * Class::MOP::Class
d7d3f3cb 986 - refactored all symbol table access to
9ca19585 987 use Class::MOP::Package methods instead
d7d3f3cb 988
f0480c45 989 * Class::MOP::Module
990 - adding the $:version attribute in the bootstrap
991 so that Module has a version as an attribute
992 - see comment in Class::MOP for details
d7d3f3cb 993 - added the $:authority attribute to this module
994 as well as an &identifier method, to bring us
995 ever closer to Perl 6 goodness
996 - I have added $AUTHORITY to all the modules
716c5765 997 - added tests for this
d7d3f3cb 998
f0480c45 999 * Class::MOP::Instance
d7d3f3cb 1000 - added &deinitialize_slot for removing slots
f0480c45 1001 from an instance
d7d3f3cb 1002 - added tests for this
1003
1004 * Class::MOP::Attribute
9ca19585 1005 - added support for &deinitialize_slot for removing
1006 slots from an instance
1007 - added tests for this
1008
1a09d9cc 10090.31 Sat. July 15, 2006
1010
b679e644 1011 * Class::MOP::Class
1012 - added &find_method_by_name to locate a method
d7d3f3cb 1013 anywhere within the class hierarchy
1014
b679e644 1015 * Class::MOP::Attribute
d7d3f3cb 1016 - added &set_value and &get_value for getting
1017 the value of the attribute for a particular
b679e644 1018 instance.
1019
373a16ae 10200.30 Wed. July 5, 2006
1021 ---------------------------------------
d7d3f3cb 1022 This is the first version of Class::MOP
373a16ae 1023 to introduce the immutable features which
d7d3f3cb 1024 will be used for optimizating the MOP.
373a16ae 1025 This support should still be considered
1026 experimental, but moving towards stability.
1027 ---------------------------------------
d7d3f3cb 1028
1029 * Created Class::MOP::Class::Immutable
1030
1031 * Created the Class::MOP::Package and
1032 Class::MOP::Module classes to more
373a16ae 1033 closely conform to Perl 6's meta-model
e0a82090 1034
1035 * Class::MOP::Class
1036 - now inherits from Class::MOP::Module
d7d3f3cb 1037 - several methods moved to ::Module and
e0a82090 1038 ::Package and now inherited
1039 - added tests for this
d7d3f3cb 1040
c0cbf4d9 1041 * Class::MOP::Instance
d7d3f3cb 1042 - added an is_inlinable method to allow other
c0cbf4d9 1043 classes to check before they attempt to optimize.
d7d3f3cb 1044 - added an inline_create_instance to inline
1045 instance creation (of course)
1046
2ba153a9 1047 ** API CHANGE **
d7d3f3cb 1048 - the Class::MOP::Class::*_package_variable
2ba153a9 1049 methods are all now methods of Class::MOP::Package
d7d3f3cb 1050 and called *_package_symbol instead. This is
1051 because they are now more general purpose symbol
1052 table manipulation methods.
e0a82090 1053
cdfaa4cc 10540.29_02 Thurs. June 22, 2006
1055 ++ DEVELOPER RELEASE ++
df7b4119 1056 * Class::MOP::Class
d7d3f3cb 1057 - small change in &create so that it behaves
df7b4119 1058 properly when inherited
cdfaa4cc 1059 - small fix to &clone_instance
df7b4119 1060
667cecf3 10610.29_01 Fri. May 12, 2006
1062 ++ DEVELOPER RELEASE ++
d7d3f3cb 1063 - This release works in combination with
667cecf3 1064 Moose 0.09_01, it is a developer release
d7d3f3cb 1065 because it introduces a new instance
1066 sub-protocol and has not yet been
1067 optimized.
667cecf3 1068
40483095 1069 * Class::MOP::Class
1070 - anon-classes are now properly garbage collected
d7d3f3cb 1071 - added tests for this
1072 - improved method modifier wrapping
40483095 1073
2bab2be6 1074 * Class::MOP::Instance
1becdfcc 1075 - added new instance protocol
2bab2be6 1076 - added tests for this
1077 - changed all relevant modules and examples
1078 - Class::MOP::Class
1079 - Class::MOP::Attribute
1080 - examples/*
1081
1becdfcc 1082 * metaclass
1083 - you no longer need to specify the metaclass
1084 itself, if it is not there, Class::MOP::Class
1085 is just assumed
1086 - updated tests for this
1087
1088 * examples/
d7d3f3cb 1089 - added ArrayBasedStorage example to show
1becdfcc 1090 instance storage using ARRAY refs instead of
d7d3f3cb 1091 HASH refs.
1becdfcc 1092 - added tests for this
d7d3f3cb 1093 - InsideOutClass is totally revised using the
1becdfcc 1094 new instance protocol
1095 - added more tests for this
1096
93b4e576 10970.26 Mon. April 24, 2006
e7f732e4 1098 * Class::MOP::Class
1099 - added find_attribute_by_name method
1100 - added tests and docs for this
56a0b530 1101 - some small optimizations
1102
1103 * Class::MOP::Attribute
1104 - some small optimizations
e7f732e4 1105
46666f33 11060.25 Thurs. April 20, 2006
587aca23 1107 * Class::MOP::Class
1108 - added create_anon_class for creating anonymous classes
1109 - added tests for this
1110 - added get_all_metaclasses, get_all_metaclass_names
1111 and get_all_metaclass_instances method to allow
1112 access to all the cached metaclass objects.
bd4e03f9 1113 - attribute slot initialization is now the responsibility
d7d3f3cb 1114 of the attribute itself, and construct_instance now
bd4e03f9 1115 delegates appropriately
d7d3f3cb 1116
bd4e03f9 1117 * Class::MOP::Attribute
1118 - attribute slot initialization is now the responsibility
1119 of the attribute itself, so we added a method for it
1120 called initialize_instance_slot
d7d3f3cb 1121
fed4cee7 1122 * examples/
d7d3f3cb 1123 - adjusted all the examples to use the new attribute
1124 initialize_instance_slot method
587aca23 1125
1daaa2b2 11260.24 Tues. April 11, 2006
8c936afc 1127 * Class::MOP::Class
d7d3f3cb 1128 - cleaned up how the before/after/around method
8c936afc 1129 modifiers get named with Sub::Name
1130
b9dfbf78 11310.23 Thurs. March 30, 2006
a977cf65 1132 * Class::MOP::Class
d7d3f3cb 1133 - fixed the way attribute defaults are handled
a977cf65 1134 during instance construction (bug found by chansen)
d7d3f3cb 1135
b9dfbf78 1136 * Class::MOP::Attribute
d7d3f3cb 1137 - read-only accessors ('reader') will now die if
b9dfbf78 1138 passed more than one argument (attempting to write
1139 to them basically)
1140 - added tests for this
d7d3f3cb 1141 - adjusted all /example files to comply
a977cf65 1142
f9eba090 11430.22 Mon. March 20, 2006
0eff2c16 1144 * Class::MOP::Class
1145 - localized $@ in the *_package_variable functions
1146 because otherwise, it does ugly things in Moose.
1147 - added test case for this
1148
1988e85e 11490.21 Wed. March 15, 2006
2f6d5412 1150 * Class::MOP::Class
d7d3f3cb 1151 - fixed issue where metaclasses are reaped from
2f6d5412 1152 our cache in global destruction, and so are not
1153 available in DESTORY calls
1154
96ceced8 11550.20 Thurs. March 2, 2006
d7d3f3cb 1156 - removed the dependency for Clone since
d3cb0d4a 1157 we no longer to deep-cloning by default.
d7d3f3cb 1158
a4258ffd 1159 * Class::MOP::Method
d7d3f3cb 1160 - added &package_name, &name and
1161 &fully_qualified_name methods, some of
1162 which were formerly private subs in
a4258ffd 1163 Class::MOP::Class
d7d3f3cb 1164
a4258ffd 1165 * Class::MOP::Method::Wrapped
d7d3f3cb 1166 - allows for a method to be wrapped with
1167 before, after and around modifiers
a4258ffd 1168 - added tests and docs for this feature
d3cb0d4a 1169
1170 * Class::MOP::Class
58d75218 1171 - improved &get_package_symbol
96ceced8 1172 - &version and &superclasses now use it
a4258ffd 1173 - methods are now blessed into Class::MOP::Method
1174 whenever possible
d7d3f3cb 1175 - added methods to install CLOS-style method modifiers
a4258ffd 1176 - &add_before_method_modifier
d7d3f3cb 1177 - &add_after_method_modifier
a4258ffd 1178 - &add_around_method_modifier
1179 - added tests and docs for these
d7d3f3cb 1180 - added &find_next_method_by_name which finds the
96ceced8 1181 equivalent of SUPER::method_name
d3cb0d4a 1182
1c020571 11830.12 Thurs. Feb 23, 2006
d7d3f3cb 1184 - reduced the dependency on B, no need to always
d89c0fad 1185 have the latest
1186
1c020571 1187 * examples/
1188 - added docs to the C3 method dispatch order test
d7d3f3cb 1189 - fixed missing Algorithm::C3 dependency by making
1c020571 1190 the test skip if it is not installed
1191
0dea7280 11920.11 Mon Feb. 20, 2006
f3f5bd34 1193 * examples/
1194 - added example of changing method dispatch order to C3
d7d3f3cb 1195
a27ae83f 1196 * Class::MOP::Class
19d4b5b8 1197 - changed how clone_instance behaves, it now only does a
1198 shallow clone (see docs for more details)
a27ae83f 1199 - added docs and tests
f3f5bd34 1200
3bf7644b 12010.10 Tues Feb. 14, 2006
d7d3f3cb 1202 ** This release was mostly about writing more tests and
1203 cleaning out old and dusty code, the MOP should now
3bf7644b 1204 be considered "ready to use".
1205
22286063 1206 - adding more tests to get coverage up a little higher,
1207 mostly testing errors and edge cases.
1208 - test coverage is now at 99%
d7d3f3cb 1209
aa448b16 1210 * Class::MOP
1211 - no longer optionally exports to UNIVERSAL::meta or
d7d3f3cb 1212 creates a custom metaclass generator, use the
aa448b16 1213 metaclass pragma instead.
22286063 1214
d7d3f3cb 1215 * Class::MOP::Class
1216 - fixed a number of minor issues which came up in the
1217 error/edge-case tests
1218
1219 * Class::MOP::Attribute
1220 - fixed a number of minor issues which came up in the
22286063 1221 error/edge-case tests
d7d3f3cb 1222
0b8eb325 1223 * examples/
ea263060 1224 - fixing the AttributesWithHistory example, it was broken.
663f8198 1225
550d56db 12260.06 Thurs Feb. 9, 2006
677eb158 1227 * metaclass
d7d3f3cb 1228 - adding new metaclass pragma to make setting up the
677eb158 1229 metaclass a little more straightforward
d7d3f3cb 1230
7b31baf4 1231 * Class::MOP
d7d3f3cb 1232 - clean up bootstrapping to include more complete
1233 attribute definitions for Class::MOP::Class and
1234 Class::MOP::Attribute (accessors, readers, writers,
7b31baf4 1235 etc.) ... it is redundant, but is useful meta-info
1236 to have around.
677eb158 1237
99e5b7e8 1238 * Class::MOP::Class
d7d3f3cb 1239 - fixing minor meta-circularity issue with &meta, it
99e5b7e8 1240 is now more useful for subclasses
d7d3f3cb 1241 - added &get_attribute_map as an accessor for the
7b31baf4 1242 hash of attribute meta objects
c9e77dbb 1243 - &compute_all_applicable_attributes now just returns
1244 the attribute meta-object, rather than the HASH ref
d7d3f3cb 1245 since all the same info can be gotten from the
c9e77dbb 1246 attribute meta-object itself
1247 - updated docs & tests to reflect
5f3c057a 1248 - added &clone_instance method which does a deep clone
1249 of the instance structure created by &construct_instance
1250 - added docs & tests for this
550d56db 1251 - added Clone as a dependency
5f3c057a 1252 - added &new_object and &clone_object convience methods to
1253 return blessed new or cloned instances
2a7575a6 1254 - they handle Class::MOP::Class singletons correctly too
5f3c057a 1255 - added docs & tests for this
2a7575a6 1256 - cleaned up the &constuct_class_instance so that it behaves
1257 more like &construct_instance (and managed the singletons too)
550d56db 1258 - added the &check_metaclass_compatibility method to make sure
1259 that metaclasses are upward and downward compatible.
1260 - added tests and docs for this
d7d3f3cb 1261
99e5b7e8 1262 * examples/
1263 - adjusting code to use the &Class::MOP::Class::meta
1264 fix detailed above
677eb158 1265 - adjusting code to use the metaclass pragma
d7d3f3cb 1266
aa9c883e 12670.05 Sat Feb. 4, 2006
2e41896e 1268 * Class::MOP::Class
1269 - added the &attribute_metaclass and &method_metaclass
d7d3f3cb 1270 attributes which contain a metaclass name to use for
2e41896e 1271 attributes/methods respectively
d7d3f3cb 1272
351bd7d4 1273 * Class::MOP
d7d3f3cb 1274 - bootstrap additional attributes for Class::MOP::Class
1275
2e41896e 1276 * examples/
1277 - adjusted the example code and tests to use the new
1278 &attribute_metaclass feature of Class::MOP::Class
aa9c883e 1279 - added new example:
1280 - LazyClass
2e41896e 1281
d7c2cbe3 12820.04 Fri Feb. 3, 2006
d6fbcd05 1283 * Class::MOP::Class
1284 - some documentation suggestions from #perl6
d7d3f3cb 1285
d6fbcd05 1286 * Class::MOP::Attribute
d7d3f3cb 1287 - improved error messages
1288
d6fbcd05 1289 * examples/
1290 - added new examples:
1291 - AttributesWithHistory
d7c2cbe3 1292 - ClassEncapsultedAttributes
343203ee 1293
9ec169fe 12940.03 Fri Feb. 3, 2006
1295 - converted to Module::Build instead of EU::MM
d7d3f3cb 1296
9ec169fe 1297 * Class::MOP::Attribute
1298 - refactored method generation code
1299 - attributes are now associated with class directly
d7d3f3cb 1300
f71f4295 1301 * examples/
d7d3f3cb 1302 - refactored the InsideOut example to take advantage
9ec169fe 1303 of the Class::MOP::Attribute refactoring
f71f4295 1304 - changed example files to .pod files and hide thier
1305 package names from PAUSE (I don't want to own these
1306 namespaces really, they are just examples)
9ec169fe 1307
a57c7fa2 13080.02 Thurs Feb. 2, 2006
1309 - moving examples from t/lib/* to examples/*
1310 - adding POD documentation to the examples
1311
a2e85e6c 13120.01 Thurs Feb. 2, 2006
92af7fdf 1313 - Initial release