Remove register_implementation, warn about future deprecation
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
CommitLineData
22d869ff 1Revision history for Perl extension MooseX-AttributeHelpers
18d43c2c 2
c1984b5c 30.20 Thu June 25, 2009
4 - MXAH is moving into core. This module will be deprecated when
5 that finally happens.
6 - Remove register_implementation methods from the traits because
7 we don't want to conflict with cored AttributeHelpers. You'll need to
8 specify the full package name for traits --
9 MooseX::AttributeHelpers::Trait::Counter instead of Counter
cbe09a66 10 - New provided method for hashs: elements (Returns the key, value
c1984b5c 11 pairs in the hash as a flattened list) (plu)
cbe09a66 12
4a0da5ad 130.19 Sun June 14, 2009
14 - No functional changes from 0.18_01
15
7c981b9f 160.18_01 Mon June 1, 2009
17 - Turn our metaclasses into traits, though metaclasses still exist for
18 backwards compatibility (Sartak and doy)
7167e69c 19 - Add accessor to Hash and Array (Sartak)
7c981b9f 20 - Let the user know which constraint they have violated in the confessed
21 message (nperez)
7167e69c 22
9e2db1c2 230.17 Fri April 19, 2009
24 - Add defined to Hash (Evan Carroll).
25
ff830703 260.16 Sun April 5, 2009
45749a22 27 - Add substr to String (Florian Ragwitz).
28
ff830703 290.15 Thu March 26, 2009
1266f990 30 - The splice helper for arrays was completely broken. Reported by
31 Abhijit Mahabal. RT #43343.
ff830703 32
7a93b96e 330.14 Thu October 2, 2008
34 - Run pod tests only for authors
35
2dc1c4f7 360.13 Mon September 1, 2008
37 - No code changes, just a stable release for Moose 0.56.
38
1899eeaa 390.12_01 Wed August 20, 2008
c6f9edf8 40 - fixed some missing Pod::Coverage (stevan)
38430345 41 - fixes to work with Moose 0.55_01 and Class::MOP 0.64_01
42 (nothingmuch)
22d869ff 43
83f92052 440.12 Sun. Jun 29, 2008
b77cfe61 45 - Move get from Array to List (gphat)
46 - Add first and last to List (gphat)
fe68095c 47 - Doc fixes (gphat)
83f92052 48 - fix failing tests due to using DateTime (jasonmay)
49
053ce58d 500.11 Thurs. Jun 26, 2008
51 - add the ability to curry method providers (thanks to jasonmay)
52 - Counter: add set and allow inc and dec to accept args
53 - add Bool as an attribute helper (thanks to jasonmay)
7167e69c 54 - bump all modules to version 0.11 for consistency (Sartak)
96c2370b 55
053ce58d 560.09 Sat. May 24, 2008
57 - remove Module::Build in favor of Module::Install
9e2db1c2 58
e8013350 59 * MooseX::AttributeHelpers::MethodProvider::Hash
053ce58d 60 - delete with multiple keys will now work (thanks to frodwith)
e8013350 61
62 * MooseX::AttributeHelpers::MethodProvider::List
63 - add "join" and "elements" provided methods (thanks to Sartak)
9e2db1c2 64
e8013350 65 * MooseX::AttributeHelpers::MethodProvider::Array
66 - add "splice" provided method
67
680.08 Sat. April 12, 2008
99c62fb8 69 ~~ updates copyright year on all modules ~~
70
532b802c 71 * MooseX::AttributeHelpers::MethodProvider::Hash
72 - fixed bug in non-type constraint version of set
73 method (thanks to frodwith)
74
eca30395 750.07 Tues. Jan. 1, 2008
76 * MooseX::AttributeHelpers::String
77 - Initial version
78 * MooseX::AttributeHelpers::Hash
79 - get and set now support aggregate operations
80
34e30a7e 810.06 Tues. Dec. 7, 2007
999f34a9 82 * MooseX::AttributeHelpers::Base
83 - added the &remove_accessors method to comply with the
84 Class::MOP::Attribute interface
85 - added test for this
86 - the &install_accessors method now also properly assocaites
87 the methods with the attribute, so they are accessible via
88 introspection now.
89
f9b41f2e 900.05 Sat. Nov. 24, 2007
0f31cc28 91 - update Class::MOP dependency
999f34a9 92 - hide the Moose::Meta::Attribute::Custom::* package
0f31cc28 93 declarations from search.cpan.org (when did they change
94 things to start seeing these?? *sigh*)
95
ea60939b 960.04 Fri. Nov. 23, 2007
9a976497 97 * MooseX::AttributeHelpers::Base
98 - changing this to use the new Class::MOP::Attribute
99 reader and write method ref stuff.
999f34a9 100 - fixed this to use find_or_create_type_constraint
9a976497 101 instead of trying to parse stuff on our own.
999f34a9 102
9a976497 103 * MooseX::AttributeHelpers::Collection
999f34a9 104 - this is pretty much empty subclass now cause of
9a976497 105 the find_or_create_type_constraint fix above
999f34a9 106
9a976497 107 + MooseX::AttributeHelpers::Collection::ImmutableHash
108 + MooseX::AttributeHelpers::Collection::Bag
109 - added these two new collection types
110 - added method provider roles for them
111 - added tests for them
999f34a9 112
9a976497 113 * MooseX::AttributeHelpers::MethodProvider::Hash
114 - this is now composed from the ImmutableHash
115 method provider
999f34a9 116
9a976497 117 * t/
118 - fixed the plans on all the tests
119
1200.03 Mon. Sept. 17, 2007
829736f9 121 ~~ more misc. doc updates ~~
999f34a9 122
38abf787 123 * MooseX::AttributeHelpers::Counter
124 - now provides default attribute options for 'is',
125 'isa', 'provides', and 'default' if not specified.
999f34a9 126
38abf787 127 * MooseX::AttributeHelpers::Base
128 - added attribute $name to the params passed to
129 process_options_or_provides(), which gives us more
053ce58d 130 flexibility when writing additional helpers
38abf787 131 - removed check for 'provides' and 'isa' attr
132 options before _process_options. It should be
999f34a9 133 called always.
134
b91f57af 135 * MooseX::AttributeHelpers::MethodProvider::Array
999f34a9 136 - added `delete` and `insert` methods
72a41843 137
c91a1347 1380.02 Thurs. Sept. 13, 2007
139 ~~ some misc. doc updates ~~
140
457dc4fb 141 * MooseX::AttributeHelpers::Base
999f34a9 142 - now providing subrefs for the reader and writer
457dc4fb 143 methods to all the method provider constructors
144 (this should speed things up quite a bit).
145 - all method providers now use this internally
146
147 * MooseX::AttributeHelpers::Counter
999f34a9 148 - added the 'reset' method
149
457dc4fb 150 * MooseX::AttributeHelpers::Collection::Array
999f34a9 151 - Extracted the List method provider role from
457dc4fb 152 Array and made Array consume List.
153
154 + MooseX::AttributeHelpers::Collection::List
155 - created the Collection::List metaclass
999f34a9 156 derived from parts of the old Collection::Array
457dc4fb 157
5431dff2 1580.01 Mon. Aug. 13, 2007
38abf787 159 - module released to CPAN