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