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