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