Changes for 0.20
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
7519f256 10.20 2010-10-07
2
3- A test file tried to load MooseX::Role::Parameterized, which was not listed
4 as a dep. Reported by Andreas Koenig. RT #61957.
5
6
dd23283b 70.19 2010-10-06
8
9- Removed references to MooseX::ClassAttribute::Meta::Method::Accessor, which
10 was removed in 0.18. This caused lots of test failures if you hadn't
11 installed a previous version of this distribution.
12
13
973b0b62 140.18 2010-10-05
9ef90a45 15
16- Changes to work with (and require) Moose 1.15.
17
18
935982fc 190.17 2010-09-26
20
21- Changes to work with (and require) Moose 1.09.
22
23
9c33b9a6 240.16 2010-07-15
25
26- More warnings fixes for next Moose release.
27
28- Fix bad repo metadata.
29
30
c91cf422 310.15 2010-07-14
32
33- Fix bad uri for bugtracker in metadata
34
35
e4fd69af 360.14 2010-07-14
37
38- Use modern Moose APIs, to avoid warnings with the next Moose release.
39
40
2903ee03 410.13 2010-02-11
42
43- Fixed tests that failed if you had an older version of
44 MooseX::AttributeHelpers installed.
45
46
40935001 470.12 2010-02-10
48
49- Fixed so that applying a role with class attributes to an instance works
50 with Moose 0.98.
51
52
119b0ff4 530.11 2010-02-09
e527a2ea 54
55- Roles can now have class attributes, which will be fully initialized when
56 the role is applied to a class.
57
04b89789 58- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
59 MooseX::ClassAttribute::Trait::*.
60
61- Deprecated the get_class_attribute_map method.
62
e49a5022 63- Added a version number to every .pm file.
64
e527a2ea 65
8207dfe7 660.10 2009-08-26
67
68- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
69 attribute value when appropriate just like non-class attributes.
70
71
8a86e910 720.09 2009-07-09
73
74- An attribute with a builder that wasn't also lazy caused an
05e2588c 75 exception when the attribute's accessor was called. Reported by
76 Josh.
8a86e910 77
78
f90a1d73 790.08 2009-04-07
b64c8efa 80
b0e6dc02 81- Make this module work with Moose 0.73_01+.
b64c8efa 82
83- Deprecated compute_all_applicable_class_attributes. Use
84 get_all_class_attributes instead.
85
86
bb7b1e1a 870.07 2008-11-10
88
89- Fixed a bug where class attributes did not honor the
90 Class::MOP::Attribute properly, so things that used it directly
91 failed. This bug could be tickled by using certain
92 MooseX::AttributeHelpers attribute metaclasses with a class
93 attribute. Fixed by Shawn Moore.
94
95
b2e0e01e 960.06 2008-09-06
97
98- No code changes, just added a missing prereq for
99 MooseX::AttributeHelpers.
100
101
1020.05 2008-09-05
ba0d667d 103
104* Totally rewritten as proper meta classes, so it supports
105 introspection and all that good stuff. This breaks some old code
106 because there is no longer a "containing class" for class
107 attributes.
108
109
fab23ffc 1100.04 2008-01-21
111
112- An internals change to make this class work with Moose 0.34.
113
114
8d655404 1150.03 2007-12-08
116
117- Split main functionality out of sugar sub class_has(), into
118 process_class_attribute(). This makes it easier to create attributes
119 on behalf of other classes.
120
121
d48c186f 1220.02 2007-11-25
123
124- Inherit from Exporter, rather than trying to import its
125 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
126 only allow subclassing.
127
128
cdd206de 1290.01 2007-11-24
4dee0fd3 130
d48c186f 131- First version, released on an unsuspecting world.