Fix error message
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
3a50aef0 10.23 2011-02-13
2
3- Fixed a bug where applying a role with class attributes didn't record the
4 role as actually being applied in the meta class (or role) to which it was
5 applied.
6
7
bf83b4c8 80.22 2011-02-02
9
5a8ab40e 10- Explicitly require namespace::clean 0.20 to avoid various some bad
11 interactions between namespace::clean and Package::Stash.
bf83b4c8 12
13
c51798c1 140.21 2010-10-29
15
16- Switch from Test::Exception to Test::Fatal.
17
18
7519f256 190.20 2010-10-07
20
21- A test file tried to load MooseX::Role::Parameterized, which was not listed
22 as a dep. Reported by Andreas Koenig. RT #61957.
23
24
dd23283b 250.19 2010-10-06
26
27- Removed references to MooseX::ClassAttribute::Meta::Method::Accessor, which
28 was removed in 0.18. This caused lots of test failures if you hadn't
29 installed a previous version of this distribution.
30
31
973b0b62 320.18 2010-10-05
9ef90a45 33
34- Changes to work with (and require) Moose 1.15.
35
36
935982fc 370.17 2010-09-26
38
39- Changes to work with (and require) Moose 1.09.
40
41
9c33b9a6 420.16 2010-07-15
43
44- More warnings fixes for next Moose release.
45
46- Fix bad repo metadata.
47
48
c91cf422 490.15 2010-07-14
50
51- Fix bad uri for bugtracker in metadata
52
53
e4fd69af 540.14 2010-07-14
55
56- Use modern Moose APIs, to avoid warnings with the next Moose release.
57
58
2903ee03 590.13 2010-02-11
60
61- Fixed tests that failed if you had an older version of
62 MooseX::AttributeHelpers installed.
63
64
40935001 650.12 2010-02-10
66
67- Fixed so that applying a role with class attributes to an instance works
68 with Moose 0.98.
69
70
119b0ff4 710.11 2010-02-09
e527a2ea 72
73- Roles can now have class attributes, which will be fully initialized when
74 the role is applied to a class.
75
04b89789 76- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
77 MooseX::ClassAttribute::Trait::*.
78
79- Deprecated the get_class_attribute_map method.
80
e49a5022 81- Added a version number to every .pm file.
82
e527a2ea 83
8207dfe7 840.10 2009-08-26
85
86- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
87 attribute value when appropriate just like non-class attributes.
88
89
8a86e910 900.09 2009-07-09
91
92- An attribute with a builder that wasn't also lazy caused an
05e2588c 93 exception when the attribute's accessor was called. Reported by
94 Josh.
8a86e910 95
96
f90a1d73 970.08 2009-04-07
b64c8efa 98
b0e6dc02 99- Make this module work with Moose 0.73_01+.
b64c8efa 100
101- Deprecated compute_all_applicable_class_attributes. Use
102 get_all_class_attributes instead.
103
104
bb7b1e1a 1050.07 2008-11-10
106
107- Fixed a bug where class attributes did not honor the
108 Class::MOP::Attribute properly, so things that used it directly
109 failed. This bug could be tickled by using certain
110 MooseX::AttributeHelpers attribute metaclasses with a class
111 attribute. Fixed by Shawn Moore.
112
113
b2e0e01e 1140.06 2008-09-06
115
116- No code changes, just added a missing prereq for
117 MooseX::AttributeHelpers.
118
119
1200.05 2008-09-05
ba0d667d 121
122* Totally rewritten as proper meta classes, so it supports
123 introspection and all that good stuff. This breaks some old code
124 because there is no longer a "containing class" for class
125 attributes.
126
127
fab23ffc 1280.04 2008-01-21
129
130- An internals change to make this class work with Moose 0.34.
131
132
8d655404 1330.03 2007-12-08
134
135- Split main functionality out of sugar sub class_has(), into
136 process_class_attribute(). This makes it easier to create attributes
137 on behalf of other classes.
138
139
d48c186f 1400.02 2007-11-25
141
142- Inherit from Exporter, rather than trying to import its
143 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
144 only allow subclassing.
145
146
cdd206de 1470.01 2007-11-24
4dee0fd3 148
d48c186f 149- First version, released on an unsuspecting world.