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