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