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