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