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