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