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