Update changes for 0.23
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
1 Revision history for Perl extension MooseX-AttributeHelpers
2
3 0.23 Fri Jan 1, 2010
4     - A small internals fix to prevent breakage with the next version of
5       Moose. (Dave Rolsky)
6
7 0.22 Mon Sep 14, 2009
8     - Fix to work with Moose 0.90. Ignore meta when auto-providing a method
9       provider's methods. (Dave Rolsky)
10         
11 0.21 Sun July 19, 2009
12     - Add length to String (Florian Ragwitz).
13     - Specify build dependency on Test::Moose (Closes RT#47258) (Florian Ragwitz).
14     - Fix the error message you get on unknown 'curries' parameters to tell you
15       what it really expected (Florian Ragwitz).
16     - Doc typo fix in Collection::Bag (Sartak).
17
18 0.20 Thu June 25, 2009
19     - MXAH is moving into core. This module will be deprecated when
20       that finally happens.
21     - Remove register_implementation methods from the traits because
22       we don't want to conflict with cored AttributeHelpers. You'll need to
23       specify the full package name for traits --
24       MooseX::AttributeHelpers::Trait::Counter instead of Counter
25     - New provided method for hashs: elements (Returns the key, value
26       pairs in the hash as a flattened list) (plu)
27
28 0.19 Sun June 14, 2009
29     - No functional changes from 0.18_01
30
31 0.18_01 Mon June 1, 2009
32     - Turn our metaclasses into traits, though metaclasses still exist for
33       backwards compatibility (Sartak and doy)
34     - Add accessor to Hash and Array (Sartak)
35     - Let the user know which constraint they have violated in the confessed
36       message (nperez)
37
38 0.17 Fri April 19, 2009
39     - Add defined to Hash (Evan Carroll).
40
41 0.16 Sun April 5, 2009
42     - Add substr to String (Florian Ragwitz).
43
44 0.15 Thu March 26, 2009
45     - The splice helper for arrays was completely broken. Reported by
46       Abhijit Mahabal. RT #43343.
47
48 0.14 Thu October 2, 2008
49     - Run pod tests only for authors
50
51 0.13 Mon September 1, 2008
52     - No code changes, just a stable release for Moose 0.56.
53
54 0.12_01 Wed August 20, 2008
55     - fixed some missing Pod::Coverage (stevan)
56     - fixes to work with Moose 0.55_01 and Class::MOP 0.64_01
57       (nothingmuch)
58
59 0.12 Sun. Jun 29, 2008
60     - Move get from Array to List (gphat)
61     - Add first and last to List (gphat)
62     - Doc fixes (gphat)
63     - fix failing tests due to using DateTime (jasonmay)
64
65 0.11 Thurs. Jun 26, 2008
66     - add the ability to curry method providers (thanks to jasonmay)
67     - Counter: add set and allow inc and dec to accept args
68     - add Bool as an attribute helper (thanks to jasonmay)
69         - bump all modules to version 0.11 for consistency (Sartak)
70
71 0.09 Sat. May 24, 2008
72     - remove Module::Build in favor of Module::Install
73
74     * MooseX::AttributeHelpers::MethodProvider::Hash
75       - delete with multiple keys will now work (thanks to frodwith)
76
77     * MooseX::AttributeHelpers::MethodProvider::List
78       - add "join" and "elements" provided methods (thanks to Sartak)
79
80     * MooseX::AttributeHelpers::MethodProvider::Array
81       - add "splice" provided method
82
83 0.08 Sat. April 12, 2008
84     ~~ updates copyright year on all modules ~~
85
86     * MooseX::AttributeHelpers::MethodProvider::Hash
87       - fixed bug in non-type constraint version of set
88         method (thanks to frodwith)
89
90 0.07 Tues. Jan. 1, 2008
91     * MooseX::AttributeHelpers::String
92       - Initial version
93     * MooseX::AttributeHelpers::Hash
94       - get and set now support aggregate operations
95
96 0.06 Tues. Dec. 7, 2007
97     * MooseX::AttributeHelpers::Base
98       - added the &remove_accessors method to comply with the
99         Class::MOP::Attribute interface
100         - added test for this
101       - the &install_accessors method now also properly assocaites
102         the methods with the attribute, so they are accessible via
103         introspection now.
104
105 0.05 Sat. Nov. 24, 2007
106     - update Class::MOP dependency
107     - hide the Moose::Meta::Attribute::Custom::* package
108       declarations from search.cpan.org (when did they change
109       things to start seeing these?? *sigh*)
110
111 0.04 Fri. Nov. 23, 2007
112     * MooseX::AttributeHelpers::Base
113       - changing this to use the new Class::MOP::Attribute
114         reader and write method ref stuff.
115       - fixed this to use find_or_create_type_constraint
116         instead of trying to parse stuff on our own.
117
118     * MooseX::AttributeHelpers::Collection
119       - this is pretty much empty subclass now cause of
120         the find_or_create_type_constraint fix above
121
122     + MooseX::AttributeHelpers::Collection::ImmutableHash
123     + MooseX::AttributeHelpers::Collection::Bag
124       - added these two new collection types
125         - added method provider roles for them
126         - added tests for them
127
128     * MooseX::AttributeHelpers::MethodProvider::Hash
129       - this is now composed from the ImmutableHash
130         method provider
131
132     * t/
133       - fixed the plans on all the tests
134
135 0.03 Mon. Sept. 17, 2007
136     ~~ more misc. doc updates ~~
137
138     * MooseX::AttributeHelpers::Counter
139       - now provides default attribute options for 'is',
140       'isa', 'provides', and 'default' if not specified.
141
142     * MooseX::AttributeHelpers::Base
143       - added attribute $name to the params passed to
144         process_options_or_provides(), which gives us more
145         flexibility when writing additional helpers
146       - removed check for 'provides' and 'isa' attr
147         options before _process_options. It should be
148         called always.
149
150     * MooseX::AttributeHelpers::MethodProvider::Array
151       - added `delete` and `insert` methods
152
153 0.02 Thurs. Sept. 13, 2007
154     ~~ some misc. doc updates ~~
155
156     * MooseX::AttributeHelpers::Base
157       - now providing subrefs for the reader and writer
158         methods to all the method provider constructors
159         (this should speed things up quite a bit).
160         - all method providers now use this internally
161
162     * MooseX::AttributeHelpers::Counter
163       - added the 'reset' method
164
165     * MooseX::AttributeHelpers::Collection::Array
166       - Extracted the List method provider role from
167         Array and made Array consume List.
168
169     + MooseX::AttributeHelpers::Collection::List
170       - created the Collection::List metaclass
171         derived from parts of the old Collection::Array
172
173 0.01 Mon. Aug. 13, 2007
174     - module released to CPAN