foo
[gitmo/Class-MOP.git] / Changes
CommitLineData
7c90a1a8 1Revision history for Perl extension Class-MOP.
2
b1897d4d 30.35
4
5 * Class::MOP
6 - non-generated accessors are no longer
7 copied, but instead are aliased from
8 the originals
9 - added Class::MOP::Method (and its subclasses)
10 to the bootstrap
11 - adjusted tests for this
86482605 12 - added the Class::MOP::Instance attributes
13 to the bootstrap
0b9372a2 14 - bootstrap no longer re-compiles accessors
15 so as to keep the MOP compile-time fast
b1897d4d 16
17 * Class::MOP::Method
18 *** API CHANGE ***
19 - methods are no longer blessed CODE refs
20 but are actual objects which can be CODE-ified
21 - adjusted tests to compensate
86482605 22 - adjusted docs for this
b1897d4d 23
24 * Class::MOP::Class
25 - changed how methods are dealt with to
26 encapsulate most of the work into the
27 &get_method_map method
28 - made several adjustments for the change
29 in Class::MOP::Method
30 - &add_attribute now checks if you are adding
31 a duplicate name, and properly removes the
32 old one before installing the new one
33 - added tests for this
86482605 34 - adjusted docs for this
b1897d4d 35
36 * Class::MOP::Class::Immutable
37 - added caching of &get_method_map
38 - fixed issue with &get_package_symbol
39 - cleaned up the methods that die (patch by David Wheeler)
40
41 * Class::MOP::Package
42 - added filtering capabilities to
43 &list_all_package_symbols
44
a549ce50 450.34 Sat. Aug. 26, 2006
c4260b45 46 * Class::MOP::Class
47 - added the %:methods attribute, which like
48 the $:version and such just actually goes
49 to the symbol table to get it's stuff.
50 However, it makes the MOP more complete.
88dd563c 51 ** API CHANGE **
52 - The &create method now requires that all
53 but the package name now is passed in as
54 named parameters. See docs for more info.
55 - updated docs and tests for this
c4260b45 56
57 * Class::MOP::Object
58 - added &dump method to easily Data::Dumper
59 an object
60
61 * Class::MOP
62 - cleaned up the initialization of attributes
63 which do not store things in the instance
64 - added the %:methods attribute definition to
65 the bootstrap
88dd563c 66
67 ~ lots of misc. test cleanup
c4260b45 68
56e8dd5d 690.33 Sat. Aug. 19, 2006
be7677c7 70 * Class::MOP::Class
71 - moved the metaclass cache out of here
72 and it is now in Class::MOP itself.
56e8dd5d 73
74 * Class::MOP
75 - moved all the metaclass cache stuff here
76 - fixed all tests for this
be7677c7 77
148b4697 78 * Class::MOP::Attribute
79 - reference values (other than CODE refs)
80 are no longer allowed for defaults
81 - added tests for this
56dcfc1a 82
83 * Class::MOP::Package
84 - fixed an issue with perl 5.8.1 and how it deals
e3a2c885 85 with symbol tables. The namespace hash is now
86 always reloaded from the symbol table.
87
88 ~ lots of misc. documentation cleanup
1396f86b 89
716c5765 900.32 Sat. Aug. 12, 2006
6e57504d 91 + added Class::MOP::Object so that the
92 metamodel is more complete (and closer
93 to what Perl 6 will probably be).
94
9ca19585 95 * Class::MOP::Package
96 - refactored entire class, this is now
97 the primary gateway between the metaclass
98 and the Perl 5 symbol table
99 - added many tests for this
6e57504d 100 - this class is now a subclass of
101 Class::MOP::Object
716c5765 102 - added some tests to reflect this
9ca19585 103
104 * Class::MOP::Class
105 - refactored all symbol table access to
106 use Class::MOP::Package methods instead
f0480c45 107
108 * Class::MOP::Module
109 - adding the $:version attribute in the bootstrap
110 so that Module has a version as an attribute
111 - see comment in Class::MOP for details
112 - added the $:authority attribute to this module
113 as well as an &identifier method, to bring us
114 ever closer to Perl 6 goodness
716c5765 115 - I have added $AUTHORITY to all the modules
116 - added tests for this
9ca19585 117
f0480c45 118 * Class::MOP::Instance
119 - added &deinitialize_slot for removing slots
120 from an instance
121 - added tests for this
9ca19585 122
123 * Class::MOP::Attribute
124 - added support for &deinitialize_slot for removing
125 slots from an instance
126 - added tests for this
127
1a09d9cc 1280.31 Sat. July 15, 2006
129
b679e644 130 * Class::MOP::Class
131 - added &find_method_by_name to locate a method
132 anywhere within the class hierarchy
133
134 * Class::MOP::Attribute
135 - added &set_value and &get_value for getting
136 the value of the attribute for a particular
137 instance.
138
373a16ae 1390.30 Wed. July 5, 2006
140 ---------------------------------------
141 This is the first version of Class::MOP
142 to introduce the immutable features which
143 will be used for optimizating the MOP.
144 This support should still be considered
145 experimental, but moving towards stability.
146 ---------------------------------------
e0a82090 147
373a16ae 148 * Created Class::MOP::Class::Immutable
be960ba1 149
373a16ae 150 * Created the Class::MOP::Package and
151 Class::MOP::Module classes to more
152 closely conform to Perl 6's meta-model
e0a82090 153
154 * Class::MOP::Class
155 - now inherits from Class::MOP::Module
156 - several methods moved to ::Module and
157 ::Package and now inherited
158 - added tests for this
c0cbf4d9 159
160 * Class::MOP::Instance
161 - added an is_inlinable method to allow other
162 classes to check before they attempt to optimize.
be960ba1 163 - added an inline_create_instance to inline
164 instance creation (of course)
165
2ba153a9 166 ** API CHANGE **
167 - the Class::MOP::Class::*_package_variable
168 methods are all now methods of Class::MOP::Package
169 and called *_package_symbol instead. This is
170 because they are now more general purpose symbol
171 table manipulation methods.
e0a82090 172
cdfaa4cc 1730.29_02 Thurs. June 22, 2006
174 ++ DEVELOPER RELEASE ++
df7b4119 175 * Class::MOP::Class
176 - small change in &create so that it behaves
177 properly when inherited
cdfaa4cc 178 - small fix to &clone_instance
df7b4119 179
667cecf3 1800.29_01 Fri. May 12, 2006
181 ++ DEVELOPER RELEASE ++
182 - This release works in combination with
183 Moose 0.09_01, it is a developer release
184 because it introduces a new instance
185 sub-protocol and has not yet been
186 optimized.
187
40483095 188 * Class::MOP::Class
189 - anon-classes are now properly garbage collected
190 - added tests for this
195f5bf8 191 - improved method modifier wrapping
40483095 192
2bab2be6 193 * Class::MOP::Instance
1becdfcc 194 - added new instance protocol
2bab2be6 195 - added tests for this
196 - changed all relevant modules and examples
197 - Class::MOP::Class
198 - Class::MOP::Attribute
199 - examples/*
200
1becdfcc 201 * metaclass
202 - you no longer need to specify the metaclass
203 itself, if it is not there, Class::MOP::Class
204 is just assumed
205 - updated tests for this
206
207 * examples/
208 - added ArrayBasedStorage example to show
209 instance storage using ARRAY refs instead of
210 HASH refs.
211 - added tests for this
212 - InsideOutClass is totally revised using the
213 new instance protocol
214 - added more tests for this
215
93b4e576 2160.26 Mon. April 24, 2006
e7f732e4 217 * Class::MOP::Class
218 - added find_attribute_by_name method
219 - added tests and docs for this
56a0b530 220 - some small optimizations
221
222 * Class::MOP::Attribute
223 - some small optimizations
e7f732e4 224
46666f33 2250.25 Thurs. April 20, 2006
587aca23 226 * Class::MOP::Class
227 - added create_anon_class for creating anonymous classes
228 - added tests for this
229 - added get_all_metaclasses, get_all_metaclass_names
230 and get_all_metaclass_instances method to allow
231 access to all the cached metaclass objects.
bd4e03f9 232 - attribute slot initialization is now the responsibility
233 of the attribute itself, and construct_instance now
234 delegates appropriately
235
236 * Class::MOP::Attribute
237 - attribute slot initialization is now the responsibility
238 of the attribute itself, so we added a method for it
239 called initialize_instance_slot
fed4cee7 240
241 * examples/
242 - adjusted all the examples to use the new attribute
243 initialize_instance_slot method
587aca23 244
1daaa2b2 2450.24 Tues. April 11, 2006
8c936afc 246 * Class::MOP::Class
247 - cleaned up how the before/after/around method
248 modifiers get named with Sub::Name
249
b9dfbf78 2500.23 Thurs. March 30, 2006
a977cf65 251 * Class::MOP::Class
252 - fixed the way attribute defaults are handled
253 during instance construction (bug found by chansen)
b9dfbf78 254
255 * Class::MOP::Attribute
256 - read-only accessors ('reader') will now die if
257 passed more than one argument (attempting to write
258 to them basically)
259 - added tests for this
260 - adjusted all /example files to comply
a977cf65 261
f9eba090 2620.22 Mon. March 20, 2006
0eff2c16 263 * Class::MOP::Class
264 - localized $@ in the *_package_variable functions
265 because otherwise, it does ugly things in Moose.
266 - added test case for this
267
1988e85e 2680.21 Wed. March 15, 2006
2f6d5412 269 * Class::MOP::Class
270 - fixed issue where metaclasses are reaped from
271 our cache in global destruction, and so are not
272 available in DESTORY calls
273
96ceced8 2740.20 Thurs. March 2, 2006
d3cb0d4a 275 - removed the dependency for Clone since
276 we no longer to deep-cloning by default.
a4258ffd 277
278 * Class::MOP::Method
96ceced8 279 - added &package_name, &name and
280 &fully_qualified_name methods, some of
a4258ffd 281 which were formerly private subs in
282 Class::MOP::Class
283
284 * Class::MOP::Method::Wrapped
285 - allows for a method to be wrapped with
286 before, after and around modifiers
287 - added tests and docs for this feature
d3cb0d4a 288
289 * Class::MOP::Class
58d75218 290 - improved &get_package_symbol
96ceced8 291 - &version and &superclasses now use it
a4258ffd 292 - methods are now blessed into Class::MOP::Method
293 whenever possible
a4258ffd 294 - added methods to install CLOS-style method modifiers
295 - &add_before_method_modifier
296 - &add_after_method_modifier
297 - &add_around_method_modifier
298 - added tests and docs for these
96ceced8 299 - added &find_next_method_by_name which finds the
300 equivalent of SUPER::method_name
d3cb0d4a 301
1c020571 3020.12 Thurs. Feb 23, 2006
d89c0fad 303 - reduced the dependency on B, no need to always
304 have the latest
305
1c020571 306 * examples/
307 - added docs to the C3 method dispatch order test
308 - fixed missing Algorithm::C3 dependency by making
309 the test skip if it is not installed
310
0dea7280 3110.11 Mon Feb. 20, 2006
f3f5bd34 312 * examples/
313 - added example of changing method dispatch order to C3
a27ae83f 314
315 * Class::MOP::Class
19d4b5b8 316 - changed how clone_instance behaves, it now only does a
317 shallow clone (see docs for more details)
a27ae83f 318 - added docs and tests
f3f5bd34 319
3bf7644b 3200.10 Tues Feb. 14, 2006
321 ** This release was mostly about writing more tests and
322 cleaning out old and dusty code, the MOP should now
323 be considered "ready to use".
324
22286063 325 - adding more tests to get coverage up a little higher,
326 mostly testing errors and edge cases.
327 - test coverage is now at 99%
aa448b16 328
329 * Class::MOP
330 - no longer optionally exports to UNIVERSAL::meta or
331 creates a custom metaclass generator, use the
332 metaclass pragma instead.
22286063 333
334 * Class::MOP::Class
335 - fixed a number of minor issues which came up in the
336 error/edge-case tests
337
338 * Class::MOP::Attribute
339 - fixed a number of minor issues which came up in the
340 error/edge-case tests
341
0b8eb325 342 * examples/
ea263060 343 - fixing the AttributesWithHistory example, it was broken.
663f8198 344
550d56db 3450.06 Thurs Feb. 9, 2006
677eb158 346 * metaclass
550d56db 347 - adding new metaclass pragma to make setting up the
677eb158 348 metaclass a little more straightforward
7b31baf4 349
350 * Class::MOP
351 - clean up bootstrapping to include more complete
352 attribute definitions for Class::MOP::Class and
353 Class::MOP::Attribute (accessors, readers, writers,
354 etc.) ... it is redundant, but is useful meta-info
355 to have around.
677eb158 356
99e5b7e8 357 * Class::MOP::Class
358 - fixing minor meta-circularity issue with &meta, it
359 is now more useful for subclasses
7b31baf4 360 - added &get_attribute_map as an accessor for the
361 hash of attribute meta objects
c9e77dbb 362 - &compute_all_applicable_attributes now just returns
363 the attribute meta-object, rather than the HASH ref
364 since all the same info can be gotten from the
365 attribute meta-object itself
366 - updated docs & tests to reflect
5f3c057a 367 - added &clone_instance method which does a deep clone
368 of the instance structure created by &construct_instance
369 - added docs & tests for this
550d56db 370 - added Clone as a dependency
5f3c057a 371 - added &new_object and &clone_object convience methods to
372 return blessed new or cloned instances
2a7575a6 373 - they handle Class::MOP::Class singletons correctly too
5f3c057a 374 - added docs & tests for this
2a7575a6 375 - cleaned up the &constuct_class_instance so that it behaves
376 more like &construct_instance (and managed the singletons too)
550d56db 377 - added the &check_metaclass_compatibility method to make sure
378 that metaclasses are upward and downward compatible.
379 - added tests and docs for this
5f3c057a 380
99e5b7e8 381 * examples/
382 - adjusting code to use the &Class::MOP::Class::meta
383 fix detailed above
677eb158 384 - adjusting code to use the metaclass pragma
99e5b7e8 385
aa9c883e 3860.05 Sat Feb. 4, 2006
2e41896e 387 * Class::MOP::Class
388 - added the &attribute_metaclass and &method_metaclass
351bd7d4 389 attributes which contain a metaclass name to use for
2e41896e 390 attributes/methods respectively
351bd7d4 391
392 * Class::MOP
393 - bootstrap additional attributes for Class::MOP::Class
2e41896e 394
395 * examples/
396 - adjusted the example code and tests to use the new
397 &attribute_metaclass feature of Class::MOP::Class
aa9c883e 398 - added new example:
399 - LazyClass
2e41896e 400
d7c2cbe3 4010.04 Fri Feb. 3, 2006
d6fbcd05 402 * Class::MOP::Class
403 - some documentation suggestions from #perl6
404
405 * Class::MOP::Attribute
406 - improved error messages
407
408 * examples/
409 - added new examples:
410 - AttributesWithHistory
d7c2cbe3 411 - ClassEncapsultedAttributes
343203ee 412
9ec169fe 4130.03 Fri Feb. 3, 2006
414 - converted to Module::Build instead of EU::MM
415
416 * Class::MOP::Attribute
417 - refactored method generation code
418 - attributes are now associated with class directly
419
f71f4295 420 * examples/
9ec169fe 421 - refactored the InsideOut example to take advantage
422 of the Class::MOP::Attribute refactoring
f71f4295 423 - changed example files to .pod files and hide thier
424 package names from PAUSE (I don't want to own these
425 namespaces really, they are just examples)
9ec169fe 426
a57c7fa2 4270.02 Thurs Feb. 2, 2006
428 - moving examples from t/lib/* to examples/*
429 - adding POD documentation to the examples
430
a2e85e6c 4310.01 Thurs Feb. 2, 2006
7c90a1a8 432 - Initial release