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