Clean up verify_against_type_constraint
[gitmo/Mouse.git] / Changes
CommitLineData
c3398f5b 1Revision history for Mouse
927982b4 2
124fa027 30.22
4
240454c2 50.21 Sat Apr 11 13:52:11 2009
7a96b336 6 * clone_instance has been made private, like in Moose (tokuhirom)
6b646f93 7
7a96b336 8 * Fix method modifiers applying to the wrong class (gfuji)
9 reported by Heikki Lehvaslaiho in [rt.cpan.org #42992]
d9b661d3 10
7a96b336 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)
6b646f93 21
5893ee36 22 * Added documentation about type constraints (Mark Stosberg)
6b646f93 23
240.20 Thu Apr 9 20:22:33 2009
2df74b3a 25 * Squirrel is now deprecated. Use Any::Moose instead (Sartak)
26
cf33c3d9 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)
c3398f5b 32
31a5ba2c 33 * Implemented Mouse::Object->does (wu-lee)
34
35 * Implemented override and super functions for Mouse::Role.
36 (wu-lee)
927982b4 37
31a5ba2c 38 * Implemented stub augment and inner functions for Mouse::Role,
39 which merely throw an exception as in Moose::Role. (wu-lee)
927982b4 40
31a5ba2c 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)
927982b4 44
31a5ba2c 45 * Implemented Mouse::Role->does_role. This does not yet quite
46 seem to pass all the tests it should. (wu-lee)
927982b4 47
31a5ba2c 48 * Fixed bug in Mouse::Meta::Role->apply and ->combine_apply, so that
49 030_roles/002_role.t tests pass. (wu-lee)
927982b4 50
31a5ba2c 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
bf1b613a 55 * Implemented emulations of Class::MOP's metaclass accessors
56 (get_metaclass_by_name etc.) in Mouse::Meta::Class.
57
31a5ba2c 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)
65715de3 64
65 * Fixed bug: immutable constructor now redispatches correctly to
66 Mouse::Object::new when used in derived classes (wu-lee).
c9aefe26 67
927982b4 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
df9e57e8 810.19 Sun Mar 8 04:38:01 2009
f96bd2aa 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)
c4ec7642 88
423b9699 890.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)
c3a83939 103
949738a8 1040.17 Tue Feb 17 20:10:29 2009
388b8ebd 105 * Load mro directly if Perl is recent enough (Nicholas Clark)
106
df963a63 107 * Add dump method from Moose::Object into Mouse::Object (perigrin)
108
949738a8 109 * Add role-role composition (tokuhirom)
110
d8edb5a0 1110.16 Mon Feb 9 20:56:27 2009
60cfc6ad 112 * Implement get_all_method_names
67fb42e0 113
01904723 114 * Support for anonymous enums: enum [elements]
115
d8edb5a0 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
4d33522c 1190.15 Thu Feb 5 11:44:05 2009
7daedfff 120 * Don't export Mouse's sugar into the package 'main'
8aeec00e 121
3b46bd49 122 * Rename Mouse::TypeRegistry to Mouse::Util::TypeConstraints
123
0d9fea22 124 * "type" sugar for when you're not subtyping anything
125
7dbebb1b 126 * Keep track of the source package of each type
127
96dbfdb7 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
a5fc1e9a 131
96dbfdb7 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 :/)
4859d490 136
96dbfdb7 137 * suppress warnings when we use "around" and "has '+...'" (dann)
4859d490 138
96dbfdb7 139 * use Data::Util to make method modifiers fast if it's available (dann)
47b5feb9 140
a22b1fed 141 * Implement "enum" type constraints
142
143 * Implement "override" and "super"
144
4786262b 145 * MouseX::Types is now in its own dist
146
1595b996 1470.14 Sat Dec 20 16:53:05 2008
148 * POD fix
149
150 * Document what changes tokuhirom and Yappo made (see below)
4216fc14 151
25b08198 1520.13 Tue Dec 16 02:01:40 2008
a9d1cb9d 153 * Pass in the instance to the default sub in the constructor (reported with
154 failing tests by rjbs)
fccd2261 155
1595b996 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
de51e718 167
44231509 1680.12 Thu Dec 4 19:23:10 2008
826828bf 169 * Provide Test::Exception function unless it's version 0.27 - RT #41254
170
826828bf 171 * Mouse::Util now provides dies_ok
172
44231509 173 * Make class-like types behave more like Moose; subclasses OK! (rjbs)
174
175 * Steal more tests from Moose
826828bf 176
e4b38f45 1770.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
6430d968 181
2498d94c 1820.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)
7a024324 189
274aea60 1900.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
5dbc65ee 1970.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
eab013b2 201
f38ce2d0 2020.07 Sun Sep 28 00:19:07 2008
465af41f 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)
5c557f4f 223
844fa049 2240.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
e2a1372d 229 * Mouse
230 - updated trigger doc (thanks perigrin)
844fa049 231 - which will not see CPAN :( sorry perigrin!
ed00ef38 232
60e2164a 233 * Mouse::Meta::Class
234 - add a make_immutable method which does nothing(!), for even more
235 Moose compat (nothingmuch's idea)
236
ed00ef38 2370.05 Thu Jul 17 01:53:20 2008
6681e09c 238 * Mouse::Role
239 Mouse::Meta::Role
240 Mouse
80be11ca 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! :)
6681e09c 254
c5cbafa4 255 * Everywhere
256 - Improvements to the MOP (e.g. Class->add_method)
257
a7f212f1 258 * (build)
259 - Excise dependency on Test::Warn, we only used it in one simple test
260
a3525e9f 2610.04 Tue Jun 17 04:56:36 2008
1bfebf5f 262 * Mouse
263 Mouse::Meta::Attribute
264 - Add support for has '+name'
80be11ca 265 - Add lazy_build (nothingmuch)
66efb1c8 266
74be9978 2670.03 Thu Jun 12 21:54:07 2008
1bfebf5f 268 * Mouse
269 - Add before/after/around, courtesy of Class::Method::Modifiers
b7a74822 270
1bfebf5f 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
ad67865f 276
1bfebf5f 277 * Mouse::Meta::Class
278 - More methods: compute_all_applicable_attributes, has_attribute
66eea168 279
2800.02 Wed Jun 11 01:56:44 2008
1bfebf5f 281 * Squirrel
282 - Add Squirrel which acts as Moose if it's already loaded, otherwise
283 Mouse (thanks nothingmuch)
66eea168 284
1bfebf5f 285 * Mouse::Meta::Object
286 - Fix the order in which BUILD methods are called (thanks Robert
287 Boone)
66eea168 288
2890.01 Tue Jun 10 02:13:21 2008
1bfebf5f 290 * Initial release.
c3398f5b 291