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