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