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