ensure constructor gets regenerated if forced early by metaclass inflation
[gitmo/Moo.git] / Changes
1   - ensure constructor gets regenerated if forced early by metaclass inflation
2
3 1.000000 - 2012-07-18
4   - clean up doc language and expand on Moo and Moose
5   - error prefixes for isa and coerce exceptions
6   - unmark Moo and Moose as experimental since it's relatively solid now
7   - convert isa and coerce info from external role attributes 
8   - clear method cache after metaclass generation to fix autoclean bug
9
10 0.091014 - 2012-07-16
11   - load overload.pm explicitly for overload::StrVal
12
13 0.091013 - 2012-07-15
14   - useful and detailed errors for coerce in attrib generation
15
16 0.091012 - 2012-07-15
17   - useful and detailed errors for default checker in attrib generation
18   - throw an error when trying to extend a role
19
20 0.091011 - 2012-06-27
21   - re-add #web-simple as development IRC
22   - don't assume Scalar::Util is imported into the current package
23
24 0.091010 - 2012-06-26
25   - isa checks on builders
26   - additional quote_sub docs
27   - remove multi-populate code to fix exists/defined new() bug
28   - document move to #moose and include repository metadata
29   - no Moo and no Moo::Role
30   - squelch used only once warnings for $Moo::HandleMoose::MOUSE
31   - MooClass->meta
32   - subconstructor handling for Moose classes
33
34 0.091009 - 2012-06-20
35   - squelch redefine warnings in the coderef installation code
36
37 0.091008 - 2012-06-19
38   - bump Role::Tiny dependency to get working modifiers under composition
39   - handle "has '+foo'" for attrs from superclass or consumed role
40   - document override -> around translation
41   - use D::GD if installed rather than re-adding it as a requirement
42
43 0.091007 - 2012-05-17
44   - remove stray reference to Devel::GlobalDestruction
45
46 0.091006 - 2012-05-16
47   - drop a couple of dependencies by minor releases we don't strictly need
48
49 0.091005 - 2012-05-14
50   - temporary switch to an inlined in_global_destruction to avoid needing
51     to fatpack Sub::Exporter for features we don't use
52   - re-order is documentation to give readonly styles more prominence
53   - a weakened value should still be returned on set (fixes lazy + weak_ref)
54   - add an explicit return to all exported subs so people don't accidentally
55     rely on the return value
56
57 0.091004 - 2012-05-07
58   - also inhale from Mouse
59   - clarify how isa and coerce interact
60   - support isa and coerce together for Moose
61   - guard _accessor_maker_for calls in Moo::Role in case Moo isn't loaded
62   - reset handlemoose state on mutation in case somebody reified the
63     metaclass too early
64
65 0.091003 - 2012-05-06
66   - improve attribute option documentation
67   - update the incompatibilities section since we're less incompatible now
68   - fix coderef naming to avoid confusing autoclean
69
70 0.091002 - 2012-05-05
71   - exclude union roles and same-role-as-self from metaclass inflation
72   - inhale Moose roles before checking for composition conflicts
73   - enable Moo::sification if only Moo::Role is loaded and not Moo
74   - preserve attribute ordering
75   - factor out accessor generation code a bit more to enable extension
76
77 0.091001 - 2012-05-02
78   - bump Role::Tiny dependency to require de-strictures-ed version
79   - fix test failure where Class::XSAccessor is not available
80
81 0.091000 - 2012-04-27
82   - document MX::AttributeShortcuts 009+ support
83   - documentation for the metaclass inflation code
84   - better error message for broken BUILDARGS
85   - provide 'no Moo::sification' to forcibly disable metaclass inflation
86   - switch to Devel::GlobalDestruction to correctly disarm the
87     Moo::sification trigger under threads
88   - make extends after has work
89   - name subs if Sub::Name is available for better stracktraces
90   - undefer all subs before creating a concrete Moose metaclass
91   - fix bug in _load_module where global vars could cause mis-detection
92     of the module already being loaded
93
94 0.009_017 - 2012-04-16
95   - mangle constructor meta-method on inflation so make_immutable works
96   - fix possible infinite loop caused by subconstructor code
97
98 0.009_016 - 2012-04-12
99   - don't accidentally load Moo::HandleMoose during global destruction
100   - better docs for trigger (and initializer's absence)
101
102 0.009_015 - 2012-04-11
103   - Complete support for MooseX::AttributeShortcuts 0.009
104   - Allow Moo classes to compose Moose roles
105   - Introduce Moo::HandleMoose, which should allow Moo classes and roles
106     to be treated as Moose classes/roles. Supported so far:
107     - Some level of attributes and methods for both classes and roles
108     - Required methods in roles
109     - Method modifiers in roles (they're already applied in classes)
110     - Type constraints
111
112 0.009014 - 2012-03-29
113   - Split Role::Tiny out into its own dist
114   - Fix a bug where coercions weren't called on lazy default/builder returns
115   - Switch Moo::Utils to using Module::Runtime, and add the 5.8 %INC
116     leakage fix into Role::Tiny's _load_module to provide partial parity
117   - Update incompatibilities with Moose documentation
118   - Remove Sub::Quote's outstanding queue since it doesn't actually slow
119     things down to do it this way and makes debugging easier.
120   - Revert 'local $@' around require calls to avoid triggering Unknown Error
121   - Explicitly require Role::Tiny in Role::Tiny::With (RT#70446)
122   - Fix spurious 'once' warnings under perl -w
123
124 0.009013 - 2011-12-23
125   - fix up Class::XSAccessor version check to be more robust
126   - improved documentation
127   - fix failures on perls < 5.8.3
128   - fix test failures on cygwin
129
130 0.009012 - 2011-11-15
131   - make Method::Generate::Constructor handle $obj->new
132   - fix bug where constants containing a reference weren't handled correctly
133     (ref(\[]) is 'REF' not 'SCALAR', ref(\v1) is 'VSTRING')
134
135 0.009011 - 2011-10-03
136   - add support for DEMOLISH
137   - add support for BUILDARGS
138
139 0.009010 - 2011-07-20
140   - missing new files for Role::Tiny::With
141
142 0.009009 - 2011-07-20
143   - remove the big scary warning because we seem to be mostly working now
144   - perl based getter dies if @_ > 1 (XSAccessor already did)
145   - add Role::Tiny::With for use in classes
146   - automatically generate constructors in subclasses when required so that
147     subclasses with a BUILD method but no attributes get it honoured
148   - add coerce handling
149
150 0.009008 - 2011-06-03
151   - transfer fix to _load_module to Role::Tiny and make a note it's an inline
152   - Bring back 5.8.1 compat
153
154 0.009007 - 2011-02-25
155   - I botched the copyright. re-disting.
156
157 0.009006 - 2011-02-25
158   - handle non-lazy default and builder when init_arg is undef
159   - add copyright and license info for downstream packagers
160   - weak ref checking for Sub::Quote to avoid bugs on refaddr reuse
161   - Switch composed role names to be a valid package name
162
163 0.9.5 Tue Jan 11 2011
164   - Fix clobberage of runtime-installed wrappers by Sub::Defer
165   - Fix nonMoo constructor firing through multiple layers of Moo
166   - Fix bug where nonMoo is mistakenly detected given a Moo superclass
167     with no attributes (and hence no own constructor)
168
169 0.9.4 Mon Dec 13 2010
170   - Automatic detection on non-Moo superclasses
171
172 0.9.3 Sun Dec 5 2010
173   - Fix _load_module to deal with pre-existing subpackages
174
175 0.9.2 Wed Nov 17 2010
176   - Add explanation of Moo's existence
177   - Change @ISA setting mechanism to deal with a big in 5.10.0's get_linear_isa
178   - Change 5.10 checks to >= to not try and load MRO::Compat on 5.10.0
179   - Make 'perl -Moo' DTRT
180
181 0.9.1 Tue Nov 16 2010
182   - Initial release