Changes for 0.24
[gitmo/MooseX-ClassAttribute.git] / Changes
1 0.24
2
3 - This release provides forward compatibility with Moose 1.99+. It will still
4   work with Moose 1.23 as well. Partially based on work originally done by
5   Moritz Onken.
6
7
8 0.23   2011-02-13
9
10 - Fixed a bug where applying a role with class attributes didn't record the
11   role as actually being applied in the meta class (or role) to which it was
12   applied. Reported by Karen Etheridge. RT #59610.
13
14 - Applying multiple roles to a class lost all class attributes from those
15   roles. Fixed by Andrew Rodland. RT #59572.
16
17
18 0.22   2011-02-02
19
20 - Explicitly require namespace::clean 0.20 to avoid some bad interactions
21   between namespace::clean and Package::Stash.
22
23
24 0.21   2010-10-29
25
26 - Switch from Test::Exception to Test::Fatal.
27
28
29 0.20   2010-10-07
30
31 - A test file tried to load MooseX::Role::Parameterized, which was not listed
32   as a dep. Reported by Andreas Koenig. RT #61957.
33
34
35 0.19   2010-10-06
36
37 - Removed references to MooseX::ClassAttribute::Meta::Method::Accessor, which
38   was removed in 0.18. This caused lots of test failures if you hadn't
39   installed a previous version of this distribution.
40
41
42 0.18   2010-10-05
43
44 - Changes to work with (and require) Moose 1.15.
45
46
47 0.17   2010-09-26
48
49 - Changes to work with (and require) Moose 1.09.
50
51
52 0.16   2010-07-15
53
54 - More warnings fixes for next Moose release.
55
56 - Fix bad repo metadata.
57
58
59 0.15   2010-07-14
60
61 - Fix bad uri for bugtracker in metadata
62
63
64 0.14   2010-07-14
65
66 - Use modern Moose APIs, to avoid warnings with the next Moose release.
67
68
69 0.13   2010-02-11
70
71 - Fixed tests that failed if you had an older version of
72   MooseX::AttributeHelpers installed.
73
74
75 0.12   2010-02-10
76
77 - Fixed so that applying a role with class attributes to an instance works
78   with Moose 0.98.
79
80
81 0.11   2010-02-09
82
83 - Roles can now have class attributes, which will be fully initialized when
84   the role is applied to a class.
85
86 - Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
87   MooseX::ClassAttribute::Trait::*.
88
89 - Deprecated the get_class_attribute_map method.
90
91 - Added a version number to every .pm file.
92
93
94 0.10   2009-08-26
95
96 - Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
97   attribute value when appropriate just like non-class attributes.
98
99
100 0.09   2009-07-09
101
102 - An attribute with a builder that wasn't also lazy caused an
103   exception when the attribute's accessor was called. Reported by
104   Josh.
105
106
107 0.08   2009-04-07
108
109 - Make this module work with Moose 0.73_01+.
110
111 - Deprecated compute_all_applicable_class_attributes. Use
112   get_all_class_attributes instead.
113
114
115 0.07   2008-11-10
116
117 - Fixed a bug where class attributes did not honor the
118   Class::MOP::Attribute properly, so things that used it directly
119   failed. This bug could be tickled by using certain
120   MooseX::AttributeHelpers attribute metaclasses with a class
121   attribute. Fixed by Shawn Moore.
122
123
124 0.06   2008-09-06
125
126 - No code changes, just added a missing prereq for
127   MooseX::AttributeHelpers.
128
129
130 0.05   2008-09-05
131
132 * Totally rewritten as proper meta classes, so it supports
133   introspection and all that good stuff. This breaks some old code
134   because there is no longer a "containing class" for class
135   attributes.
136
137
138 0.04   2008-01-21
139
140 - An internals change to make this class work with Moose 0.34.
141
142
143 0.03   2007-12-08
144
145 - Split main functionality out of sugar sub class_has(), into
146   process_class_attribute(). This makes it easier to create attributes
147   on behalf of other classes.
148
149
150 0.02   2007-11-25
151
152 - Inherit from Exporter, rather than trying to import its
153   import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
154   only allow subclassing.
155
156
157 0.01   2007-11-24
158
159 - First version, released on an unsuspecting world.