Add test file from ether (it passes now)
[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
cf0c6419 5 applied. RT #59610.
3a50aef0 6
9b31a1ba 7- Applying multiple roles to a class lost all class attributes from those
cf0c6419 8 roles. Fixed by Andrew Rodland. RT #59572.
9b31a1ba 9
3a50aef0 10
bf83b4c8 110.22 2011-02-02
12
5a8ab40e 13- Explicitly require namespace::clean 0.20 to avoid various some bad
14 interactions between namespace::clean and Package::Stash.
bf83b4c8 15
16
c51798c1 170.21 2010-10-29
18
19- Switch from Test::Exception to Test::Fatal.
20
21
7519f256 220.20 2010-10-07
23
24- A test file tried to load MooseX::Role::Parameterized, which was not listed
25 as a dep. Reported by Andreas Koenig. RT #61957.
26
27
dd23283b 280.19 2010-10-06
29
30- Removed references to MooseX::ClassAttribute::Meta::Method::Accessor, which
31 was removed in 0.18. This caused lots of test failures if you hadn't
32 installed a previous version of this distribution.
33
34
973b0b62 350.18 2010-10-05
9ef90a45 36
37- Changes to work with (and require) Moose 1.15.
38
39
935982fc 400.17 2010-09-26
41
42- Changes to work with (and require) Moose 1.09.
43
44
9c33b9a6 450.16 2010-07-15
46
47- More warnings fixes for next Moose release.
48
49- Fix bad repo metadata.
50
51
c91cf422 520.15 2010-07-14
53
54- Fix bad uri for bugtracker in metadata
55
56
e4fd69af 570.14 2010-07-14
58
59- Use modern Moose APIs, to avoid warnings with the next Moose release.
60
61
2903ee03 620.13 2010-02-11
63
64- Fixed tests that failed if you had an older version of
65 MooseX::AttributeHelpers installed.
66
67
40935001 680.12 2010-02-10
69
70- Fixed so that applying a role with class attributes to an instance works
71 with Moose 0.98.
72
73
119b0ff4 740.11 2010-02-09
e527a2ea 75
76- Roles can now have class attributes, which will be fully initialized when
77 the role is applied to a class.
78
04b89789 79- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
80 MooseX::ClassAttribute::Trait::*.
81
82- Deprecated the get_class_attribute_map method.
83
e49a5022 84- Added a version number to every .pm file.
85
e527a2ea 86
8207dfe7 870.10 2009-08-26
88
89- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
90 attribute value when appropriate just like non-class attributes.
91
92
8a86e910 930.09 2009-07-09
94
95- An attribute with a builder that wasn't also lazy caused an
05e2588c 96 exception when the attribute's accessor was called. Reported by
97 Josh.
8a86e910 98
99
f90a1d73 1000.08 2009-04-07
b64c8efa 101
b0e6dc02 102- Make this module work with Moose 0.73_01+.
b64c8efa 103
104- Deprecated compute_all_applicable_class_attributes. Use
105 get_all_class_attributes instead.
106
107
bb7b1e1a 1080.07 2008-11-10
109
110- Fixed a bug where class attributes did not honor the
111 Class::MOP::Attribute properly, so things that used it directly
112 failed. This bug could be tickled by using certain
113 MooseX::AttributeHelpers attribute metaclasses with a class
114 attribute. Fixed by Shawn Moore.
115
116
b2e0e01e 1170.06 2008-09-06
118
119- No code changes, just added a missing prereq for
120 MooseX::AttributeHelpers.
121
122
1230.05 2008-09-05
ba0d667d 124
125* Totally rewritten as proper meta classes, so it supports
126 introspection and all that good stuff. This breaks some old code
127 because there is no longer a "containing class" for class
128 attributes.
129
130
fab23ffc 1310.04 2008-01-21
132
133- An internals change to make this class work with Moose 0.34.
134
135
8d655404 1360.03 2007-12-08
137
138- Split main functionality out of sugar sub class_has(), into
139 process_class_attribute(). This makes it easier to create attributes
140 on behalf of other classes.
141
142
d48c186f 1430.02 2007-11-25
144
145- Inherit from Exporter, rather than trying to import its
146 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
147 only allow subclassing.
148
149
cdd206de 1500.01 2007-11-24
4dee0fd3 151
d48c186f 152- First version, released on an unsuspecting world.