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