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