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