754ef60085b7c57b75cf8d408a58b897c9d286b1
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
1 Revision history for Perl extension MooseX-AttributeHelpers
2
3 0.10
4         - add Bool as an attribute helper (thanks to jasonmay)
5
6 0.09 Sat. May, 24, 2008
7         - remove Module::Build in favor of Module::Install
8         
9     * MooseX::AttributeHelpers::MethodProvider::Hash
10           - delete with multiple keys will now work (thanks to frodwith)
11
12     * MooseX::AttributeHelpers::MethodProvider::List
13       - add "join" and "elements" provided methods (thanks to Sartak)
14     
15     * MooseX::AttributeHelpers::MethodProvider::Array
16       - add "splice" provided method
17
18 0.08 Sat. April 12, 2008
19     ~~ updates copyright year on all modules ~~
20
21     * MooseX::AttributeHelpers::MethodProvider::Hash
22       - fixed bug in non-type constraint version of set
23         method (thanks to frodwith)
24
25 0.07 Tues. Jan. 1, 2008
26     * MooseX::AttributeHelpers::String
27       - Initial version
28     * MooseX::AttributeHelpers::Hash
29       - get and set now support aggregate operations
30
31 0.06 Tues. Dec. 7, 2007
32     * MooseX::AttributeHelpers::Base
33       - added the &remove_accessors method to comply with the
34         Class::MOP::Attribute interface
35         - added test for this
36       - the &install_accessors method now also properly assocaites
37         the methods with the attribute, so they are accessible via
38         introspection now.
39
40 0.05 Sat. Nov. 24, 2007
41     - update Class::MOP dependency
42     - hide the Moose::Meta::Attribute::Custom::* package
43       declarations from search.cpan.org (when did they change
44       things to start seeing these?? *sigh*)
45
46 0.04 Fri. Nov. 23, 2007
47     * MooseX::AttributeHelpers::Base
48       - changing this to use the new Class::MOP::Attribute
49         reader and write method ref stuff.
50       - fixed this to use find_or_create_type_constraint
51         instead of trying to parse stuff on our own.
52
53     * MooseX::AttributeHelpers::Collection
54       - this is pretty much empty subclass now cause of
55         the find_or_create_type_constraint fix above
56
57     + MooseX::AttributeHelpers::Collection::ImmutableHash
58     + MooseX::AttributeHelpers::Collection::Bag
59       - added these two new collection types
60         - added method provider roles for them
61         - added tests for them
62
63     * MooseX::AttributeHelpers::MethodProvider::Hash
64       - this is now composed from the ImmutableHash
65         method provider
66
67     * t/
68       - fixed the plans on all the tests
69
70 0.03 Mon. Sept. 17, 2007
71     ~~ more misc. doc updates ~~
72
73     * MooseX::AttributeHelpers::Counter
74       - now provides default attribute options for 'is',
75       'isa', 'provides', and 'default' if not specified.
76
77     * MooseX::AttributeHelpers::Base
78       - added attribute $name to the params passed to
79         process_options_or_provides(), which gives us more
80             flexibility when writing additional helpers
81       - removed check for 'provides' and 'isa' attr
82         options before _process_options. It should be
83         called always.
84
85     * MooseX::AttributeHelpers::MethodProvider::Array
86       - added `delete` and `insert` methods
87
88 0.02 Thurs. Sept. 13, 2007
89     ~~ some misc. doc updates ~~
90
91     * MooseX::AttributeHelpers::Base
92       - now providing subrefs for the reader and writer
93         methods to all the method provider constructors
94         (this should speed things up quite a bit).
95         - all method providers now use this internally
96
97     * MooseX::AttributeHelpers::Counter
98       - added the 'reset' method
99
100     * MooseX::AttributeHelpers::Collection::Array
101       - Extracted the List method provider role from
102         Array and made Array consume List.
103
104     + MooseX::AttributeHelpers::Collection::List
105       - created the Collection::List metaclass
106         derived from parts of the old Collection::Array
107
108 0.01 Mon. Aug. 13, 2007
109     - module released to CPAN