more changes
[gitmo/Moose.git] / Changes
CommitLineData
e522431d 1Revision history for Perl extension Moose
2
e95c7c42 30.13
093b12c2 4 ++ NOTE ++
5 This version of Moose *must* have Class::MOP 0.35 in order
6 to work correctly. A number of small internal tweaks have
7 been made in order to be compatible with that release.
8
3c2bc5e2 9 * Moose
10 - Removed the use of UNIVERSAL::require to be a better
093b12c2 11 symbol table citizen and remove a dependency
12 (thanks Adam Kennedy)
3c2bc5e2 13
2a0f3bd3 14 **~~ removed experimental & undocumented feature ~~**
15 - commented out the 'method' and 'self' keywords, see the
16 comments for more info.
17
e95c7c42 18 * Moose::Cookbook
19 - added a FAQ and WTF files to document frequently
20 asked questions and common problems
b805c70c 21
3f7376b0 22 * Moose::Util::TypeConstraints
0a5bd159 23 - added GlobRef and FileHandle type constraint
3f7376b0 24 - added tests for this
25
26 * Moose::Meta::Attribute
27 - if your attribute 'isa' ArrayRef of HashRef, and you have
28 not explicitly set a default, then make the default DWIM.
94b8bbb8 29 This will also work for subtypes of ArrayRef and HashRef
30 as well.
31 - you can now auto-deref subtypes of ArrayRef or HashRef too.
32 - new test added for this (thanks to ashley)
3f7376b0 33
b805c70c 34 * Moose::Meta::Role
35 - added basic support for runtime role composition
0a5bd159 36 but this is still *highly experimental*, so feedback
37 is much appreciated :)
b805c70c 38 - added tests for this
e95c7c42 39
0a5bd159 40 * Moose::Meta::TypeConstraint
41 - the type constraint now handles the coercion process
42 through delegation, this is to support the coercion
43 of unions
44
45 * Moose::Meta::TypeConstraint::Union
46 - it is now possible for coercions to be performed
47 on a type union
48 - added tests for this (thanks to konobi)
49
e95c7c42 50 * Moose::Meta::TypeCoercion
51 - properly capturing error when type constraint
52 is not found
53
3c2bc5e2 54 * Build.PL
55 - Scalar::Util 1.18 is bad on Win32, so temporarily
56 only require version 1.17 for Win32 and cygwin.
093b12c2 57 (thanks Adam Kennedy)
3c2bc5e2 58
40e89659 590.12 Sat. Sept. 1, 2006
2bdd01cd 60 * Moose::Cookbook
61 - Recipe5 (subtypes & coercion) has been written
62
63 * Moose
3279ab4a 64 - fixed "bad meta" error message to be more descriptive
65 - fixed &unimport to not remove the &inner and &super
66 keywords because we need to localize them.
68efb014 67 - fixed number of spelling/grammer issues, thanks Theory :)
0558683c 68
69 **~~ experimental & undocumented feature ~~**
68efb014 70 - added the method and self keywords, they are basically
71 just sugar, and they may not stay around.
f742dfef 72
73 * Moose::Object
68efb014 74 - added &dump method to easily Data::Dumper
75 an object
b26e162e 76
77 * Moose::Meta::TypeConstraint
78 - added the &is_a_type_of method to check both the current
79 and the subtype of a method (similar to &isa with classes)
f008ac1f 80
68efb014 81 * Moose::Meta::Role
82 - this is now a subclass of Class::MOP::Module, and no longer
83 creates the _role_meta ugliness of before.
84 - fixed tests to reflect this change
85
8c835eba 860.11 Wed. July 12, 2006
31f8ec72 87 * Moose
88 - added an &unimport method to remove all the keywords
8c835eba 89 that Moose will import, simply add 'no Moose' to the
90 bottom of your class file.
31f8ec72 91
92 * t/
93 - fixed some test failures caused by a forgotten test
94 dependency.
95
864cd714 960.10 Thurs. July 6, 2006
01a8e221 97 * Moose
98 - improved error message when loading modules so
99 it is less confusing when you load a role.
2b14ac61 100 - added &calculate_all_roles method to
101 Moose::Meta::Class and Moose::Meta::Role
102
103 NOTE:
104 This module has been tested against Class::MOP 0.30
105 but it does not yet utilize the optimizations
106 it makes available. Stay tuned for that ;)
107
2b14ac61 1080.09_03 Fri. June 23, 2006
715ea0b7 109 ++ DEVELOPER RELEASE ++
4276ccb4 110 * Moose
111 - 'use strict' and 'use warnings' are no longer
112 needed in Moose classes, Moose itself will
113 turn them on for you.
114 - added tests for this
1341f10c 115 - moved code from exported subs to private methods
116 in Moose::Meta::Class
4276ccb4 117
118 * Moose::Role
119 - as with Moose, strict and warnings are
120 automatically turned on for you.
121 - added tests for this
e39d707f 122
123 * Moose::Meta::Role
124 - now handles an edge case for override errors
125 - added tests for this
b7f2d25b 126 - added some more edge case tests
1341f10c 127
43d599e5 1280.09_02 Tues. May 16, 2006
715ea0b7 129 ++ DEVELOPER RELEASE ++
2c0cbef7 130 * Moose
131 - added prototypes to the exported subs
43d599e5 132 - updated docs
2c0cbef7 133
134 * Moose::Role
135 - added prototypes to the exported subs
43d599e5 136 - updated docs
2c0cbef7 137
138 * Moose::Util::TypeConstraints
139 - cleaned up prototypes for the subs
43d599e5 140 - updated docs
2c0cbef7 141
72c4f6d1 1420.09_01 Fri. May 12, 2006
143 ++ DEVELOPER RELEASE ++
144 - This release works in combination with
145 Class::MOP 0.29_01, it is a developer
146 release because it uses the a new
147 instance sub-protocol and a fairly
148 complete Role implementation. It has
149 not yet been optimized, so it slower
150 the the previous CPAN version. This
151 release also lacks good updated docs,
152 the official release will have updated docs.
153
98aae381 154 * Moose
155 - refactored the keyword exports
db1ab48d 156 - 'with' now checks Role validaity and
157 accepts more than one Role at a time
98aae381 158 - 'extends' makes metaclass adjustments as
159 needed to ensure metaclass compatability
160
72c4f6d1 161 * Moose::Role
162 - refactored the keyword exports
163 - 'with' now checks Role validaity and
164 accepts more than one Role at a time
165
98aae381 166 * Moose::Util::TypeConstraints
167 - added the 'enum' keyword for simple
168 string enumerations which can be used as
169 type constraints
db1ab48d 170 - see example of usage in t/202_example.t
98aae381 171
172 * Moose::Object
173 - more careful checking of params to new()
174
72c4f6d1 175 * Moose::Meta::Role
176 - much work done on the role composition
177 - many new tests for conflict detection
178 and composition edge cases
179 - not enough documentation, I suggest
180 looking at the tests
181
98aae381 182 * Moose::Meta::Instance
183 - added new Instance metaclass to support
184 the new Class::MOP instance protocol
185
186 * Moose::Meta::Class
187 - some small changes to support the new
188 instance protocol
72c4f6d1 189 - some small additions to support Roles
98aae381 190
191 * Moose::Meta::Attribute
192 - some improvements to the accessor generation code
193 by nothingmuch
194 - some small changes to support the new
195 instance protocol
196 - (still somewhat) experimental delegation support
197 with the 'handles' option
198 - added several tests for this
db1ab48d 199 - no docs for this yet
98aae381 200
35c8b8f2 2010.05 Thurs. April 27, 2006
2d562421 202 * Moose
203 - keywords are now exported with Sub::Exporter
204 thanks to chansen for this commit
590868a3 205 - has keyword now takes a 'metaclass' option
206 to support custom attribute meta-classes
207 on a per-attribute basis
daea75c9 208 - added tests for this
209 - the 'has' keyword not accepts inherited slot
210 specifications (has '+foo'). This is still an
211 experimental feature and probably not finished
212 see t/038_attribute_inherited_slot_specs.t for
213 more details, or ask about it on #moose
fcb7afc2 214 - added tests for this
2d562421 215
216 * Moose::Role
217 - keywords are now exported with Sub::Exporter
218
5204cd52 219 * Moose::Utils::TypeConstraints
cce8198b 220 - reorganized the type constraint hierarchy, thanks
221 to nothingmuch and chansen for his help and advice
222 on this
223 - added some tests for this
7eaef7ad 224 - keywords are now exported with Sub::Exporter
35c8b8f2 225 thanks to chansen for this commit
5204cd52 226
d500266f 227 * Moose::Meta::Class
228 - due to changes in Class::MOP, we had to change
229 construct_instance (for the better)
230
231 * Moose::Meta::Attribute
232 - due to changes in Class::MOP, we had to add the
233 initialize_instance_slot method (it's a good thing)
c07af9d2 234
cce8198b 235 * Moose::Meta::TypeConstraint
c07af9d2 236 - added type constraint unions
237 - added tests for this
cce8198b 238 - added the is_subtype_of predicate method
239 - added tests for this
d500266f 240
02a0fb52 2410.04 Sun. April 16th, 2006
1331430a 242 * Moose::Role
243 - Roles can now consume other roles
244 - added tests for this
245 - Roles can specify required methods now with
246 the requires() keyword
247 - added tests for this
248
bdabd620 249 * Moose::Meta::Role
250 - ripped out much of it's guts ,.. much cleaner now
1331430a 251 - added required methods and correct handling of
fa1be058 252 them in apply() for both classes and roles
253 - added tests for this
1331430a 254 - no longer adds a does() method to consuming classes
255 it relys on the one in Moose::Object
256 - added roles attribute and some methods to support
257 roles consuming roles
8c9d74e7 258
259 * Moose::Meta::Attribute
260 - added support for triggers on attributes
261 - added tests for this
02a0fb52 262 - added support for does option on an attribute
263 - added tests for this
8c9d74e7 264
265 * Moose::Meta::Class
266 - added support for attribute triggers in the
267 object construction
268 - added tests for this
256903b6 269
270 * Moose
271 - Moose no longer creates a subtype for your class
272 if a subtype of the same name already exists, this
273 should DWIM in 99.9999% of all cases
274
275 * Moose::Util::TypeConstraints
276 - fixed bug where incorrect subtype conflicts were
277 being reported
8c9d74e7 278 - added test for this
279
280 * Moose::Object
281 - this class can now be extended with 'use base' if
282 you need it, it properly loads the metaclass class now
283 - added test for this
bdabd620 284
0677220d 2850.03_02 Wed. April 12, 2006
05d9eaf6 286 * Moose
287 - you must now explictly use Moose::Util::TypeConstraints
288 it no longer gets exported for you automatically
289
290 * Moose::Object
291 - new() now accepts hash-refs as well as key/value lists
0677220d 292 - added does() method to check for Roles
293 - added tests for this
05d9eaf6 294
0677220d 295 * Moose::Meta::Class
296 - added roles attribute along with the add_role() and
297 does_role() methods
298 - added tests for this
299
300 * Moose::Meta::Role
301 - now adds a does() method to consuming classes
302 which tests the class's hierarchy for roles
303 - added tests for this
304
3050.03_01 Mon. April 10, 2006
e9ec68d6 306 * Moose::Cookbook
76d37e5a 307 - added new Role recipe (no content yet, only code)
e9ec68d6 308
309 * Moose
310 - added 'with' keyword for Role support
311 - added test and docs for this
312 - fixed subtype quoting bug
313 - added test for this
314
315 * Moose::Role
316 - Roles for Moose
317 - added test and docs
76d37e5a 318
319 * Moose::Util::TypeConstraints
320 - added the message keyword to add custom
321 error messages to type constraints
e9ec68d6 322
323 * Moose::Meta::Role
324 - the meta role to support Moose::Role
325 - added tests and docs
326
327 * Moose::Meta::Class
328 - moved a number of things from Moose.pm
329 to here, they should have been here
330 in the first place
331
332 * Moose::Meta::Attribute
333 - moved the attribute option macros here
334 instead of putting them in Moose.pm
e185c027 335
76d37e5a 336 * Moose::Meta::TypeConstraint
337 - added the message attributes and the
338 validate method
339 - added tests and docs for this
340
0ac928d2 3410.03 Thurs. March 30, 2006
e9bb8a31 342 * Moose::Cookbook
343 - added the Moose::Cookbook with 5 recipes,
344 describing all the stuff Moose can do.
345
d7f17ebb 346 * Moose
347 - fixed an issue with &extends super class loading
348 it now captures errors and deals with inline
349 packages correctly (bug found by mst, solution
350 stolen from alias)
159da176 351 - added super/override & inner/augment features
352 - added tests and docs for these
d7f17ebb 353
354 * Moose::Object
355 - BUILDALL now takes a reference of the %params
356 that are passed to &new, and passes that to
357 each BUILD as well.
471c4f09 358
359 * Moose::Util::TypeConstraints
360 - Type constraints now survive runtime reloading
361 - added test for this
d7f17ebb 362
8339fae2 363 * Moose::Meta::Class
364 - fixed the way attribute defaults are handled
365 during instance construction (bug found by chansen)
366
d7f17ebb 367 * Moose::Meta::Attribute
368 - read-only attributes now actually enforce their
9deed647 369 read-only-ness (this corrected in Class::MOP as
370 well)
d7f17ebb 371
076c81ed 3720.02 Tues. March 21, 2006
fc5609d2 373 * Moose
b841b2a3 374 - many more tests, fixing some bugs and
375 edge cases
b841b2a3 376 - &extends now loads the base module with
377 UNIVERSAL::require
378 - added UNIVERSAL::require to the
379 dependencies list
6ba6d68c 380 ** API CHANGES **
b841b2a3 381 - each new Moose class will also create
382 and register a subtype of Object which
383 correspond to the new Moose class.
b841b2a3 384 - the 'isa' option in &has now only
385 accepts strings, and will DWIM in
386 almost all cases
387
388 * Moose::Util::TypeConstraints
389 - added type coercion features
390 - added tests for this
391 - added support for this in attributes
392 and instance construction
6ba6d68c 393 ** API CHANGES **
b841b2a3 394 - type construction no longer creates a
395 function, it registers the type instead.
396 - added several functions to get the
397 registered types
6ba6d68c 398
399 * Moose::Object
400 - BUILDALL and DEMOLISHALL were broken
401 because of a mis-named hash key, Whoops :)
b841b2a3 402
403 * Moose::Meta::Attribute
404 - adding support for coercion in the
405 autogenerated accessors
406
407 * Moose::Meta::Class
408 - adding support for coercion in the
6ba6d68c 409 instance construction
410
411 * Moose::Meta::TypeConstraint
412 * Moose::Meta::TypeCoercion
413 - type constraints and coercions are now
414 full fledges meta-objects
fc5609d2 415
e522431d 4160.01 Wed. March 15, 2006
417 - Moooooooooooooooooose!!!