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