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