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