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