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