Don't rely on hash order in tests (RT#81564)
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
CommitLineData
22d869ff 1Revision history for Perl extension MooseX-AttributeHelpers
18d43c2c 2
ea8717c9 3 - Don't rely on hash order in tests (RT#81564)
4
e0d340ca 50.23 Fri Jan 1, 2010
6 - A small internals fix to prevent breakage with the next version of
7 Moose. (Dave Rolsky)
8
f94676b6 90.22 Mon Sep 14, 2009
1b8bf95a 10 - Fix to work with Moose 0.90. Ignore meta when auto-providing a method
b4499cad 11 provider's methods. (Dave Rolsky)
1b8bf95a 12
b3b21873 130.21 Sun July 19, 2009
d5e62cc7 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
c1984b5c 200.20 Thu June 25, 2009
c8e6275b 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
cbe09a66 27 - New provided method for hashs: elements (Returns the key, value
c1984b5c 28 pairs in the hash as a flattened list) (plu)
cbe09a66 29
4a0da5ad 300.19 Sun June 14, 2009
31 - No functional changes from 0.18_01
32
7c981b9f 330.18_01 Mon June 1, 2009
c8e6275b 34 - Turn our metaclasses into traits, though metaclasses still exist for
35 backwards compatibility (Sartak and doy)
7167e69c 36 - Add accessor to Hash and Array (Sartak)
c8e6275b 37 - Let the user know which constraint they have violated in the confessed
38 message (nperez)
7167e69c 39
9e2db1c2 400.17 Fri April 19, 2009
41 - Add defined to Hash (Evan Carroll).
42
ff830703 430.16 Sun April 5, 2009
45749a22 44 - Add substr to String (Florian Ragwitz).
45
ff830703 460.15 Thu March 26, 2009
1266f990 47 - The splice helper for arrays was completely broken. Reported by
48 Abhijit Mahabal. RT #43343.
ff830703 49
7a93b96e 500.14 Thu October 2, 2008
51 - Run pod tests only for authors
52
2dc1c4f7 530.13 Mon September 1, 2008
54 - No code changes, just a stable release for Moose 0.56.
55
1899eeaa 560.12_01 Wed August 20, 2008
c6f9edf8 57 - fixed some missing Pod::Coverage (stevan)
38430345 58 - fixes to work with Moose 0.55_01 and Class::MOP 0.64_01
59 (nothingmuch)
22d869ff 60
83f92052 610.12 Sun. Jun 29, 2008
b77cfe61 62 - Move get from Array to List (gphat)
63 - Add first and last to List (gphat)
fe68095c 64 - Doc fixes (gphat)
83f92052 65 - fix failing tests due to using DateTime (jasonmay)
66
053ce58d 670.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)
7167e69c 71 - bump all modules to version 0.11 for consistency (Sartak)
96c2370b 72
053ce58d 730.09 Sat. May 24, 2008
74 - remove Module::Build in favor of Module::Install
9e2db1c2 75
e8013350 76 * MooseX::AttributeHelpers::MethodProvider::Hash
053ce58d 77 - delete with multiple keys will now work (thanks to frodwith)
e8013350 78
79 * MooseX::AttributeHelpers::MethodProvider::List
80 - add "join" and "elements" provided methods (thanks to Sartak)
9e2db1c2 81
e8013350 82 * MooseX::AttributeHelpers::MethodProvider::Array
83 - add "splice" provided method
84
850.08 Sat. April 12, 2008
99c62fb8 86 ~~ updates copyright year on all modules ~~
87
532b802c 88 * MooseX::AttributeHelpers::MethodProvider::Hash
89 - fixed bug in non-type constraint version of set
90 method (thanks to frodwith)
91
eca30395 920.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
34e30a7e 980.06 Tues. Dec. 7, 2007
999f34a9 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
f9b41f2e 1070.05 Sat. Nov. 24, 2007
0f31cc28 108 - update Class::MOP dependency
999f34a9 109 - hide the Moose::Meta::Attribute::Custom::* package
0f31cc28 110 declarations from search.cpan.org (when did they change
111 things to start seeing these?? *sigh*)
112
ea60939b 1130.04 Fri. Nov. 23, 2007
9a976497 114 * MooseX::AttributeHelpers::Base
115 - changing this to use the new Class::MOP::Attribute
116 reader and write method ref stuff.
999f34a9 117 - fixed this to use find_or_create_type_constraint
9a976497 118 instead of trying to parse stuff on our own.
999f34a9 119
9a976497 120 * MooseX::AttributeHelpers::Collection
999f34a9 121 - this is pretty much empty subclass now cause of
9a976497 122 the find_or_create_type_constraint fix above
999f34a9 123
9a976497 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
999f34a9 129
9a976497 130 * MooseX::AttributeHelpers::MethodProvider::Hash
131 - this is now composed from the ImmutableHash
132 method provider
999f34a9 133
9a976497 134 * t/
135 - fixed the plans on all the tests
136
1370.03 Mon. Sept. 17, 2007
829736f9 138 ~~ more misc. doc updates ~~
999f34a9 139
38abf787 140 * MooseX::AttributeHelpers::Counter
141 - now provides default attribute options for 'is',
142 'isa', 'provides', and 'default' if not specified.
999f34a9 143
38abf787 144 * MooseX::AttributeHelpers::Base
145 - added attribute $name to the params passed to
146 process_options_or_provides(), which gives us more
053ce58d 147 flexibility when writing additional helpers
38abf787 148 - removed check for 'provides' and 'isa' attr
149 options before _process_options. It should be
999f34a9 150 called always.
151
b91f57af 152 * MooseX::AttributeHelpers::MethodProvider::Array
999f34a9 153 - added `delete` and `insert` methods
72a41843 154
c91a1347 1550.02 Thurs. Sept. 13, 2007
156 ~~ some misc. doc updates ~~
157
457dc4fb 158 * MooseX::AttributeHelpers::Base
999f34a9 159 - now providing subrefs for the reader and writer
457dc4fb 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
999f34a9 165 - added the 'reset' method
166
457dc4fb 167 * MooseX::AttributeHelpers::Collection::Array
999f34a9 168 - Extracted the List method provider role from
457dc4fb 169 Array and made Array consume List.
170
171 + MooseX::AttributeHelpers::Collection::List
172 - created the Collection::List metaclass
999f34a9 173 derived from parts of the old Collection::Array
457dc4fb 174
5431dff2 1750.01 Mon. Aug. 13, 2007
38abf787 176 - module released to CPAN