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