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