Bump to 0.22
[gitmo/Mouse.git] / Changes
1 Revision history for Mouse
2
3 0.22
4
5 0.21 Sat Apr 11 13:52:11 2009
6     * clone_instance has been made private, like in Moose (tokuhirom)
7
8     * Fix method modifiers applying to the wrong class (gfuji)
9       reported by Heikki Lehvaslaiho in [rt.cpan.org #42992]
10
11     * Fix test failures when user does not have C::Method::Modifiers(::Fast)
12       installed (Joel Bernstein)
13
14     * use get_all_attributes instead of
15       compute_all_applicable_attributes (tokuhirom)
16
17     * fixed pod bug (tokuhirom)
18       reported by Ryan52 in [rt.cpan.org #44928]
19
20     * Parameterized type constraints can now have messages (tokuhirom)
21
22     * Added documentation about type constraints (Mark Stosberg)
23
24 0.20 Thu Apr 9 20:22:33 2009
25     * Squirrel is now deprecated. Use Any::Moose instead (Sartak)
26
27     * To improve Moose compat, the third argument to trigger
28       (the attribute metaobject) has been removed (Sartak)
29
30     * To improve Moose compat, a single undef passed to new
31       is now disallowed (Sartak)
32
33     * Implemented Mouse::Object->does (wu-lee)
34
35     * Implemented override and super functions for Mouse::Role.
36       (wu-lee)
37
38     * Implemented stub augment and inner functions for Mouse::Role,
39       which merely throw an exception as in Moose::Role. (wu-lee)
40
41     * Stole more tests from Moose (020_roles/*).  Not all these pass
42       yet; the rest have been moved to 020_roles/failing for later
43       examination. (wu-lee)
44
45     * Implemented Mouse::Role->does_role.  This does not yet quite
46       seem to pass all the tests it should. (wu-lee)
47
48     * Fixed bug in Mouse::Meta::Role->apply and ->combine_apply, so that
49       030_roles/002_role.t tests pass. (wu-lee)
50
51     * Implemented ->version, ->authority and ->identifier methods in
52       Mouse::Meta::Role and Mouse::Meta::Class (mainly to make more
53       Moose tests pass). (wu-lee)
54
55     * Implemented emulations of Class::MOP's metaclass accessors
56       (get_metaclass_by_name etc.) in Mouse::Meta::Class.
57
58     * Mouse attribute property 'isa' now accepts Role names. (wu-lee)
59
60     * Fixed bug: typecoercion application order was reversed. (wu-lee)
61
62     * Fixed bug: inlined constructor was invoking BUILD methods in
63       wrong order. (wu-lee)
64
65     * Fixed bug: immutable constructor now redispatches correctly to
66       Mouse::Object::new when used in derived classes (wu-lee).
67
68     * Maybe parameterized type constraint (lestrrat)
69
70     * Performance improvements! (tokuhirom)
71
72     * Improve Moose compat of class_type (lestrrat)
73
74     * Many type-constraint fixes (tokuhirom and lestrrat)
75
76     * Mouse::Meta::Class->has_method and ->get_attribute_list (tokuhirom)
77
78     * Add get_all_attributes, use it internally instead of
79       compute_all_applicable_attributes (nothingmuch)
80
81 0.19 Sun Mar 8 04:38:01 2009
82     * Parameterized type constraints for ArrayRef and HashRef (lestrrat)
83
84     * Allow extensible attribute metaclass in traits too(tokuhirom)
85
86     * Don't use method modifiers in a test since they may not be
87       available (Sartak)
88
89 0.18 Fri Mar 6 19:09:33 2009
90     * Fix the issue preventing Mouse usage on Perl 5.6 - a bug in older
91       Scalar::Util! (tokuhirom)
92
93     * Allow extensible attribute metaclass (tokuhirom)
94
95     * Optimization for method modifiers (tokuhirom)
96
97     * Implement Mouse->import({into_level => 1}) (tokuhirom)
98
99     * Support for Class->meta->add_attribute($name => %options) (tokuhirom)
100
101     * Throw a more useful error message when trying to use a parameterized
102       type (Sartak)
103
104 0.17 Tue Feb 17 20:10:29 2009
105     * Load mro directly if Perl is recent enough (Nicholas Clark)
106
107     * Add dump method from Moose::Object into Mouse::Object (perigrin)
108
109     * Add role-role composition (tokuhirom)
110
111 0.16 Mon Feb 9 20:56:27 2009
112     * Implement get_all_method_names
113
114     * Support for anonymous enums: enum [elements]
115
116     * Moose's make_immutable returns true allowing calling code to skip
117       setting an explicit true value at the end of a source file. (obra)
118
119 0.15 Thu Feb 5 11:44:05 2009
120     * Don't export Mouse's sugar into the package 'main'
121
122     * Rename Mouse::TypeRegistry to Mouse::Util::TypeConstraints
123
124     * "type" sugar for when you're not subtyping anything
125
126     * Keep track of the source package of each type
127
128     * Moose lets you redefine a type within the same package, so we now do too
129
130     * Borrow more of Moose's meta API
131
132     * Mouse::Util::TypeConstraints now uses Exporter so you can select which
133       sugar you want
134
135     * class_type shouldn't load the class (Moose compat; no easy fix :/)
136
137     * suppress warnings when we use "around" and "has '+...'" (dann)
138
139     * use Data::Util to make method modifiers fast if it's available (dann)
140
141     * Implement "enum" type constraints
142
143     * Implement "override" and "super"
144
145     * MouseX::Types is now in its own dist
146
147 0.14 Sat Dec 20 16:53:05 2008
148     * POD fix
149
150     * Document what changes tokuhirom and Yappo made (see below)
151
152 0.13 Tue Dec 16 02:01:40 2008
153     * Pass in the instance to the default sub in the constructor (reported with
154       failing tests by rjbs)
155
156     * Tons of new features implemented by tokuhirom++ and Yappo++:
157       - method API in classes and roles!
158       - "requires" and "with" for Mouse::Role
159       - Type coercion
160       - Inject a constructor after make_immutable. Huge speedup!
161       - class_type and role_type
162       - Inject a destructor for more speedup
163       - MouseX::Types (may move into its own dist)
164       - create_anon_class
165       - union type constraints (eg 'Str | Undef')
166       - subtypes and sugar for them
167
168 0.12 Thu Dec 4 19:23:10 2008
169     * Provide Test::Exception function unless it's version 0.27 - RT #41254
170
171     * Mouse::Util now provides dies_ok
172
173     * Make class-like types behave more like Moose; subclasses OK! (rjbs)
174
175     * Steal more tests from Moose
176
177 0.11 Sun Nov 2 11:35:04 2008
178     * Throw an error if accessor/predicate/clearer/handles code eval fails
179
180     * Optimizations for generated methods, they should now be on par with Moose
181
182 0.10 Tue Oct 28 19:23:07 2008
183     * Require a recent Moose (which has the bugfix) for
184       t/500_moose_extends_mouse.t
185
186     * ouse.pm for perl -Mouse one-liners (thanks rjbs)
187
188     * Doc for init_arg => undef (thanks rjbs)
189
190 0.09 Sun Sep 28 22:37:13 2008
191     * Initial version of Mouse::Tiny, a one-file concatenation of the Mouse
192       classes for easy embedding
193
194     * Fixes caused by test failures (Carp not being loaded, Moose being
195       required in a test)
196
197 0.08 Sun Sep 28 12:46:07 2008
198     * ALL dependencies have been removed!
199
200     * Fixes for Class::Method::Modifiers being required for testing
201
202 0.07 Sun Sep 28 00:19:07 2008
203     * All runtime dependencies have been removed! The only change in
204       functionality (hopefully) is that the Sub::Exporter features can no
205       longer be used (we've backed down to regular Exporter). Scalar::Util is
206       required for "weaken" support, and Class::Method::Modifiers is required
207       for method modifier support, but only if you use these features!
208       Having Scalar::Util and MRO::Compat installed will provide only
209       performance increases.
210
211     * Tests and fixes for extending a Mouse class with Moose (nothingmuch)
212
213     * Support for adding method modifiers to a role, and composing them into
214       classes (we'll get true methods some day)
215
216     * Method modifiers now go through the metaclass instead of invoking
217       Class::Method::Modifiers directly
218
219     * Remove the deprecated before/after/around triggers
220
221     * Roles keywords 'requires' and 'excludes' now throw errors instead of
222       silently doing nothing (they aren't implemented yet)
223
224 0.06 Thu Jul 23 02:10:07 2008
225     * Deprecating before/after/around triggers! Switch back to coderef +
226       whatever you used to do. Moose is have it implemented it as an extension
227       trait.
228
229     * Mouse
230       - updated trigger doc (thanks perigrin)
231         - which will not see CPAN :( sorry perigrin!
232
233     * Mouse::Meta::Class
234       - add a make_immutable method which does nothing(!), for even more
235         Moose compat (nothingmuch's idea)
236
237 0.05 Thu Jul 17 01:53:20 2008
238     * Mouse::Role
239       Mouse::Meta::Role
240       Mouse
241       Squirrel::Role
242       - Begin adding roles! Attributes are mostly there. Still experimental.
243
244     * Mouse::Meta::Class
245       Mouse::Object
246       - Add clone_object and clone_instance (nothingmuch)
247
248     * Mouse::Object
249       - Add BUILDARGS (nothingmuch)
250
251     * Mouse::Meta::Attribute
252       Mouse::Object
253       - Add "before" and "around" triggers. Moose doesn't even have them yet! :)
254
255     * Everywhere
256       - Improvements to the MOP (e.g. Class->add_method)
257
258     * (build)
259       - Excise dependency on Test::Warn, we only used it in one simple test
260
261 0.04 Tue Jun 17 04:56:36 2008
262     * Mouse
263       Mouse::Meta::Attribute
264       - Add support for has '+name'
265       - Add lazy_build (nothingmuch)
266
267 0.03 Thu Jun 12 21:54:07 2008
268     * Mouse
269       - Add before/after/around, courtesy of Class::Method::Modifiers
270
271     * Mouse::Object
272       - Add support for ->new({...})
273       - Use compute_all_applicable_attributes in the constructor to get the
274         attributes of superclasses
275       - Add better support for undef init_arg
276
277     * Mouse::Meta::Class
278       - More methods: compute_all_applicable_attributes, has_attribute
279
280 0.02 Wed Jun 11 01:56:44 2008
281     * Squirrel
282       - Add Squirrel which acts as Moose if it's already loaded, otherwise
283         Mouse (thanks nothingmuch)
284
285     * Mouse::Meta::Object
286       - Fix the order in which BUILD methods are called (thanks Robert
287         Boone)
288
289 0.01 Tue Jun 10 02:13:21 2008
290     * Initial release.
291