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