Update changes
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
CommitLineData
22d869ff 1Revision history for Perl extension MooseX-AttributeHelpers
18d43c2c 2
7167e69c 30.18
4 - Add accessor to Hash and Array (Sartak)
5
9e2db1c2 60.17 Fri April 19, 2009
7 - Add defined to Hash (Evan Carroll).
8
ff830703 90.16 Sun April 5, 2009
45749a22 10 - Add substr to String (Florian Ragwitz).
11
ff830703 120.15 Thu March 26, 2009
1266f990 13 - The splice helper for arrays was completely broken. Reported by
14 Abhijit Mahabal. RT #43343.
ff830703 15
7a93b96e 160.14 Thu October 2, 2008
17 - Run pod tests only for authors
18
2dc1c4f7 190.13 Mon September 1, 2008
20 - No code changes, just a stable release for Moose 0.56.
21
1899eeaa 220.12_01 Wed August 20, 2008
c6f9edf8 23 - fixed some missing Pod::Coverage (stevan)
38430345 24 - fixes to work with Moose 0.55_01 and Class::MOP 0.64_01
25 (nothingmuch)
22d869ff 26
83f92052 270.12 Sun. Jun 29, 2008
b77cfe61 28 - Move get from Array to List (gphat)
29 - Add first and last to List (gphat)
fe68095c 30 - Doc fixes (gphat)
83f92052 31 - fix failing tests due to using DateTime (jasonmay)
32
053ce58d 330.11 Thurs. Jun 26, 2008
34 - add the ability to curry method providers (thanks to jasonmay)
35 - Counter: add set and allow inc and dec to accept args
36 - add Bool as an attribute helper (thanks to jasonmay)
7167e69c 37 - bump all modules to version 0.11 for consistency (Sartak)
96c2370b 38
053ce58d 390.09 Sat. May 24, 2008
40 - remove Module::Build in favor of Module::Install
9e2db1c2 41
e8013350 42 * MooseX::AttributeHelpers::MethodProvider::Hash
053ce58d 43 - delete with multiple keys will now work (thanks to frodwith)
e8013350 44
45 * MooseX::AttributeHelpers::MethodProvider::List
46 - add "join" and "elements" provided methods (thanks to Sartak)
9e2db1c2 47
e8013350 48 * MooseX::AttributeHelpers::MethodProvider::Array
49 - add "splice" provided method
50
510.08 Sat. April 12, 2008
99c62fb8 52 ~~ updates copyright year on all modules ~~
53
532b802c 54 * MooseX::AttributeHelpers::MethodProvider::Hash
55 - fixed bug in non-type constraint version of set
56 method (thanks to frodwith)
57
eca30395 580.07 Tues. Jan. 1, 2008
59 * MooseX::AttributeHelpers::String
60 - Initial version
61 * MooseX::AttributeHelpers::Hash
62 - get and set now support aggregate operations
63
34e30a7e 640.06 Tues. Dec. 7, 2007
999f34a9 65 * MooseX::AttributeHelpers::Base
66 - added the &remove_accessors method to comply with the
67 Class::MOP::Attribute interface
68 - added test for this
69 - the &install_accessors method now also properly assocaites
70 the methods with the attribute, so they are accessible via
71 introspection now.
72
f9b41f2e 730.05 Sat. Nov. 24, 2007
0f31cc28 74 - update Class::MOP dependency
999f34a9 75 - hide the Moose::Meta::Attribute::Custom::* package
0f31cc28 76 declarations from search.cpan.org (when did they change
77 things to start seeing these?? *sigh*)
78
ea60939b 790.04 Fri. Nov. 23, 2007
9a976497 80 * MooseX::AttributeHelpers::Base
81 - changing this to use the new Class::MOP::Attribute
82 reader and write method ref stuff.
999f34a9 83 - fixed this to use find_or_create_type_constraint
9a976497 84 instead of trying to parse stuff on our own.
999f34a9 85
9a976497 86 * MooseX::AttributeHelpers::Collection
999f34a9 87 - this is pretty much empty subclass now cause of
9a976497 88 the find_or_create_type_constraint fix above
999f34a9 89
9a976497 90 + MooseX::AttributeHelpers::Collection::ImmutableHash
91 + MooseX::AttributeHelpers::Collection::Bag
92 - added these two new collection types
93 - added method provider roles for them
94 - added tests for them
999f34a9 95
9a976497 96 * MooseX::AttributeHelpers::MethodProvider::Hash
97 - this is now composed from the ImmutableHash
98 method provider
999f34a9 99
9a976497 100 * t/
101 - fixed the plans on all the tests
102
1030.03 Mon. Sept. 17, 2007
829736f9 104 ~~ more misc. doc updates ~~
999f34a9 105
38abf787 106 * MooseX::AttributeHelpers::Counter
107 - now provides default attribute options for 'is',
108 'isa', 'provides', and 'default' if not specified.
999f34a9 109
38abf787 110 * MooseX::AttributeHelpers::Base
111 - added attribute $name to the params passed to
112 process_options_or_provides(), which gives us more
053ce58d 113 flexibility when writing additional helpers
38abf787 114 - removed check for 'provides' and 'isa' attr
115 options before _process_options. It should be
999f34a9 116 called always.
117
b91f57af 118 * MooseX::AttributeHelpers::MethodProvider::Array
999f34a9 119 - added `delete` and `insert` methods
72a41843 120
c91a1347 1210.02 Thurs. Sept. 13, 2007
122 ~~ some misc. doc updates ~~
123
457dc4fb 124 * MooseX::AttributeHelpers::Base
999f34a9 125 - now providing subrefs for the reader and writer
457dc4fb 126 methods to all the method provider constructors
127 (this should speed things up quite a bit).
128 - all method providers now use this internally
129
130 * MooseX::AttributeHelpers::Counter
999f34a9 131 - added the 'reset' method
132
457dc4fb 133 * MooseX::AttributeHelpers::Collection::Array
999f34a9 134 - Extracted the List method provider role from
457dc4fb 135 Array and made Array consume List.
136
137 + MooseX::AttributeHelpers::Collection::List
138 - created the Collection::List metaclass
999f34a9 139 derived from parts of the old Collection::Array
457dc4fb 140
5431dff2 1410.01 Mon. Aug. 13, 2007
38abf787 142 - module released to CPAN