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