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