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