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