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