initial spike towards sub naming to collaborate with namespace checks in DBIC
[gitmo/Moo.git] / Changes
1   - name subs if Sub::Name is available for better stracktraces
2   - undefer all subs before creating a concrete Moose metaclass
3   - fix bug in _load_module where global vars could cause mis-detection
4     of the module already being loaded
5
6 0.009_017 - 2012-04-16
7   - mangle constructor meta-method on inflation so make_immutable works
8   - fix possible infinite loop caused by subconstructor code
9
10 0.009_016 - 2012-04-12
11   - don't accidentally load Moo::HandleMoose during global destruction
12   - better docs for trigger (and initializer's absence)
13
14 0.009_015 - 2012-04-11
15   - Complete support for MooseX::AttributeShortcuts 0.009
16   - Allow Moo classes to compose Moose roles
17   - Introduce Moo::HandleMoose, which should allow Moo classes and roles
18     to be treated as Moose classes/roles. Supported so far:
19     - Some level of attributes and methods for both classes and roles
20     - Required methods in roles
21     - Method modifiers in roles (they're already applied in classes)
22     - Type constraints
23
24 0.009014 - 2012-03-29
25   - Split Role::Tiny out into its own dist
26   - Fix a bug where coercions weren't called on lazy default/builder returns
27   - Switch Moo::Utils to using Module::Runtime, and add the 5.8 %INC
28     leakage fix into Role::Tiny's _load_module to provide partial parity
29   - Update incompatibilities with Moose documentation
30   - Remove Sub::Quote's outstanding queue since it doesn't actually slow
31     things down to do it this way and makes debugging easier.
32   - Revert 'local $@' around require calls to avoid triggering Unknown Error
33   - Explicitly require Role::Tiny in Role::Tiny::With (RT#70446)
34   - Fix spurious 'once' warnings under perl -w
35
36 0.009013 - 2011-12-23
37   - fix up Class::XSAccessor version check to be more robust
38   - improved documentation
39   - fix failures on perls < 5.8.3
40   - fix test failures on cygwin
41
42 0.009012 - 2011-11-15
43   - make Method::Generate::Constructor handle $obj->new
44   - fix bug where constants containing a reference weren't handled correctly
45     (ref(\[]) is 'REF' not 'SCALAR', ref(\v1) is 'VSTRING')
46
47 0.009011 - 2011-10-03
48   - add support for DEMOLISH
49   - add support for BUILDARGS
50
51 0.009010 - 2011-07-20
52   - missing new files for Role::Tiny::With
53
54 0.009009 - 2011-07-20
55   - remove the big scary warning because we seem to be mostly working now
56   - perl based getter dies if @_ > 1 (XSAccessor already did)
57   - add Role::Tiny::With for use in classes
58   - automatically generate constructors in subclasses when required so that
59     subclasses with a BUILD method but no attributes get it honoured
60   - add coerce handling
61
62 0.009008 - 2011-06-03
63   - transfer fix to _load_module to Role::Tiny and make a note it's an inline
64   - Bring back 5.8.1 compat
65
66 0.009007 - 2011-02-25
67   - I botched the copyright. re-disting.
68
69 0.009006 - 2011-02-25
70   - handle non-lazy default and builder when init_arg is undef
71   - add copyright and license info for downstream packagers
72   - weak ref checking for Sub::Quote to avoid bugs on refaddr reuse
73   - Switch composed role names to be a valid package name
74
75 0.9.5 Tue Jan 11 2011
76   - Fix clobberage of runtime-installed wrappers by Sub::Defer
77   - Fix nonMoo constructor firing through multiple layers of Moo
78   - Fix bug where nonMoo is mistakenly detected given a Moo superclass
79     with no attributes (and hence no own constructor)
80
81 0.9.4 Mon Dec 13 2010
82   - Automatic detection on non-Moo superclasses
83
84 0.9.3 Sun Dec 5 2010
85   - Fix _load_module to deal with pre-existing subpackages
86
87 0.9.2 Wed Nov 17 2010
88   - Add explanation of Moo's existence
89   - Change @ISA setting mechanism to deal with a big in 5.10.0's get_linear_isa
90   - Change 5.10 checks to >= to not try and load MRO::Compat on 5.10.0
91   - Make 'perl -Moo' DTRT
92
93 0.9.1 Tue Nov 16 2010
94   - Initial release