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