Document more changes
[gitmo/Mouse.git] / Changes
CommitLineData
c3398f5b 1Revision history for Mouse
2
8aeec00e 30.15
7daedfff 4 * Don't export Mouse's sugar into the package 'main'
8aeec00e 5
3b46bd49 6 * Rename Mouse::TypeRegistry to Mouse::Util::TypeConstraints
7
0d9fea22 8 * "type" sugar for when you're not subtyping anything
9
7dbebb1b 10 * Keep track of the source package of each type
11
96dbfdb7 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
a5fc1e9a 15
96dbfdb7 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 :/)
4859d490 20
96dbfdb7 21 * suppress warnings when we use "around" and "has '+...'" (dann)
4859d490 22
96dbfdb7 23 * use Data::Util to make method modifiers fast if it's available (dann)
47b5feb9 24
1595b996 250.14 Sat Dec 20 16:53:05 2008
26 * POD fix
27
28 * Document what changes tokuhirom and Yappo made (see below)
4216fc14 29
25b08198 300.13 Tue Dec 16 02:01:40 2008
a9d1cb9d 31 * Pass in the instance to the default sub in the constructor (reported with
32 failing tests by rjbs)
fccd2261 33
1595b996 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
de51e718 45
44231509 460.12 Thu Dec 4 19:23:10 2008
826828bf 47 * Provide Test::Exception function unless it's version 0.27 - RT #41254
48
826828bf 49 * Mouse::Util now provides dies_ok
50
44231509 51 * Make class-like types behave more like Moose; subclasses OK! (rjbs)
52
53 * Steal more tests from Moose
826828bf 54
e4b38f45 550.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
6430d968 59
2498d94c 600.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)
7a024324 67
274aea60 680.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
5dbc65ee 750.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
eab013b2 79
f38ce2d0 800.07 Sun Sep 28 00:19:07 2008
465af41f 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)
5c557f4f 101
844fa049 1020.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
e2a1372d 107 * Mouse
108 - updated trigger doc (thanks perigrin)
844fa049 109 - which will not see CPAN :( sorry perigrin!
ed00ef38 110
60e2164a 111 * Mouse::Meta::Class
112 - add a make_immutable method which does nothing(!), for even more
113 Moose compat (nothingmuch's idea)
114
ed00ef38 1150.05 Thu Jul 17 01:53:20 2008
6681e09c 116 * Mouse::Role
117 Mouse::Meta::Role
118 Mouse
80be11ca 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! :)
6681e09c 132
c5cbafa4 133 * Everywhere
134 - Improvements to the MOP (e.g. Class->add_method)
135
a7f212f1 136 * (build)
137 - Excise dependency on Test::Warn, we only used it in one simple test
138
a3525e9f 1390.04 Tue Jun 17 04:56:36 2008
1bfebf5f 140 * Mouse
141 Mouse::Meta::Attribute
142 - Add support for has '+name'
80be11ca 143 - Add lazy_build (nothingmuch)
66efb1c8 144
74be9978 1450.03 Thu Jun 12 21:54:07 2008
1bfebf5f 146 * Mouse
147 - Add before/after/around, courtesy of Class::Method::Modifiers
b7a74822 148
1bfebf5f 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
ad67865f 154
1bfebf5f 155 * Mouse::Meta::Class
156 - More methods: compute_all_applicable_attributes, has_attribute
66eea168 157
1580.02 Wed Jun 11 01:56:44 2008
1bfebf5f 159 * Squirrel
160 - Add Squirrel which acts as Moose if it's already loaded, otherwise
161 Mouse (thanks nothingmuch)
66eea168 162
1bfebf5f 163 * Mouse::Meta::Object
164 - Fix the order in which BUILD methods are called (thanks Robert
165 Boone)
66eea168 166
1670.01 Tue Jun 10 02:13:21 2008
1bfebf5f 168 * Initial release.
c3398f5b 169