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