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