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