Update changes
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
e527a2ea 10.11
2
3- Roles can now have class attributes, which will be fully initialized when
4 the role is applied to a class.
5
04b89789 6- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
7 MooseX::ClassAttribute::Trait::*.
8
9- Deprecated the get_class_attribute_map method.
10
e49a5022 11- Added a version number to every .pm file.
12
e527a2ea 13
8207dfe7 140.10 2009-08-26
15
16- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
17 attribute value when appropriate just like non-class attributes.
18
19
8a86e910 200.09 2009-07-09
21
22- An attribute with a builder that wasn't also lazy caused an
05e2588c 23 exception when the attribute's accessor was called. Reported by
24 Josh.
8a86e910 25
26
f90a1d73 270.08 2009-04-07
b64c8efa 28
b0e6dc02 29- Make this module work with Moose 0.73_01+.
b64c8efa 30
31- Deprecated compute_all_applicable_class_attributes. Use
32 get_all_class_attributes instead.
33
34
bb7b1e1a 350.07 2008-11-10
36
37- Fixed a bug where class attributes did not honor the
38 Class::MOP::Attribute properly, so things that used it directly
39 failed. This bug could be tickled by using certain
40 MooseX::AttributeHelpers attribute metaclasses with a class
41 attribute. Fixed by Shawn Moore.
42
43
b2e0e01e 440.06 2008-09-06
45
46- No code changes, just added a missing prereq for
47 MooseX::AttributeHelpers.
48
49
500.05 2008-09-05
ba0d667d 51
52* Totally rewritten as proper meta classes, so it supports
53 introspection and all that good stuff. This breaks some old code
54 because there is no longer a "containing class" for class
55 attributes.
56
57
fab23ffc 580.04 2008-01-21
59
60- An internals change to make this class work with Moose 0.34.
61
62
8d655404 630.03 2007-12-08
64
65- Split main functionality out of sugar sub class_has(), into
66 process_class_attribute(). This makes it easier to create attributes
67 on behalf of other classes.
68
69
d48c186f 700.02 2007-11-25
71
72- Inherit from Exporter, rather than trying to import its
73 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
74 only allow subclassing.
75
76
cdd206de 770.01 2007-11-24
4dee0fd3 78
d48c186f 79- First version, released on an unsuspecting world.