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