0.13 and 0.14 Changes
[gitmo/Mouse.git] / Changes
1 Revision history for Mouse
2
3 0.14 Sat Dec 20 16:53:05 2008
4     * POD fix
5
6     * Document what changes tokuhirom and Yappo made (see below)
7
8 0.13 Tue Dec 16 02:01:40 2008
9     * Pass in the instance to the default sub in the constructor (reported with
10       failing tests by rjbs)
11
12     * Tons of new features implemented by tokuhirom++ and Yappo++:
13       - method API in classes and roles!
14       - "requires" and "with" for Mouse::Role
15       - Type coercion
16       - Inject a constructor after make_immutable. Huge speedup!
17       - class_type and role_type
18       - Inject a destructor for more speedup
19       - MouseX::Types (may move into its own dist)
20       - create_anon_class
21       - union type constraints (eg 'Str | Undef')
22       - subtypes and sugar for them
23
24 0.12 Thu Dec 4 19:23:10 2008
25     * Provide Test::Exception function unless it's version 0.27 - RT #41254
26
27     * Mouse::Util now provides dies_ok
28
29     * Make class-like types behave more like Moose; subclasses OK! (rjbs)
30
31     * Steal more tests from Moose
32
33 0.11 Sun Nov 2 11:35:04 2008
34     * Throw an error if accessor/predicate/clearer/handles code eval fails
35
36     * Optimizations for generated methods, they should now be on par with Moose
37
38 0.10 Tue Oct 28 19:23:07 2008
39     * Require a recent Moose (which has the bugfix) for
40       t/500_moose_extends_mouse.t
41
42     * ouse.pm for perl -Mouse one-liners (thanks rjbs)
43
44     * Doc for init_arg => undef (thanks rjbs)
45
46 0.09 Sun Sep 28 22:37:13 2008
47     * Initial version of Mouse::Tiny, a one-file concatenation of the Mouse
48       classes for easy embedding
49
50     * Fixes caused by test failures (Carp not being loaded, Moose being
51       required in a test)
52
53 0.08 Sun Sep 28 12:46:07 2008
54     * ALL dependencies have been removed!
55
56     * Fixes for Class::Method::Modifiers being required for testing
57
58 0.07 Sun Sep 28 00:19:07 2008
59     * All runtime dependencies have been removed! The only change in
60       functionality (hopefully) is that the Sub::Exporter features can no
61       longer be used (we've backed down to regular Exporter). Scalar::Util is
62       required for "weaken" support, and Class::Method::Modifiers is required
63       for method modifier support, but only if you use these features!
64       Having Scalar::Util and MRO::Compat installed will provide only
65       performance increases.
66
67     * Tests and fixes for extending a Mouse class with Moose (nothingmuch)
68
69     * Support for adding method modifiers to a role, and composing them into
70       classes (we'll get true methods some day)
71
72     * Method modifiers now go through the metaclass instead of invoking
73       Class::Method::Modifiers directly
74
75     * Remove the deprecated before/after/around triggers
76
77     * Roles keywords 'requires' and 'excludes' now throw errors instead of
78       silently doing nothing (they aren't implemented yet)
79
80 0.06 Thu Jul 23 02:10:07 2008
81     * Deprecating before/after/around triggers! Switch back to coderef +
82       whatever you used to do. Moose is have it implemented it as an extension
83       trait.
84
85     * Mouse
86       - updated trigger doc (thanks perigrin)
87         - which will not see CPAN :( sorry perigrin!
88
89     * Mouse::Meta::Class
90       - add a make_immutable method which does nothing(!), for even more
91         Moose compat (nothingmuch's idea)
92
93 0.05 Thu Jul 17 01:53:20 2008
94     * Mouse::Role
95       Mouse::Meta::Role
96       Mouse
97       Squirrel::Role
98       - Begin adding roles! Attributes are mostly there. Still experimental.
99
100     * Mouse::Meta::Class
101       Mouse::Object
102       - Add clone_object and clone_instance (nothingmuch)
103
104     * Mouse::Object
105       - Add BUILDARGS (nothingmuch)
106
107     * Mouse::Meta::Attribute
108       Mouse::Object
109       - Add "before" and "around" triggers. Moose doesn't even have them yet! :)
110
111     * Everywhere
112       - Improvements to the MOP (e.g. Class->add_method)
113
114     * (build)
115       - Excise dependency on Test::Warn, we only used it in one simple test
116
117 0.04 Tue Jun 17 04:56:36 2008
118     * Mouse
119       Mouse::Meta::Attribute
120       - Add support for has '+name'
121       - Add lazy_build (nothingmuch)
122
123 0.03 Thu Jun 12 21:54:07 2008
124     * Mouse
125       - Add before/after/around, courtesy of Class::Method::Modifiers
126
127     * Mouse::Object
128       - Add support for ->new({...})
129       - Use compute_all_applicable_attributes in the constructor to get the
130         attributes of superclasses
131       - Add better support for undef init_arg
132
133     * Mouse::Meta::Class
134       - More methods: compute_all_applicable_attributes, has_attribute
135
136 0.02 Wed Jun 11 01:56:44 2008
137     * Squirrel
138       - Add Squirrel which acts as Moose if it's already loaded, otherwise
139         Mouse (thanks nothingmuch)
140
141     * Mouse::Meta::Object
142       - Fix the order in which BUILD methods are called (thanks Robert
143         Boone)
144
145 0.01 Tue Jun 10 02:13:21 2008
146     * Initial release.
147