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