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