Move get to List and add first/last.
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
CommitLineData
22d869ff 1Revision history for Perl extension MooseX-AttributeHelpers
2
3f58c364 30.12
b77cfe61 4 - Move get from Array to List (gphat)
5 - Add first and last to List (gphat)
fe68095c 6 - Doc fixes (gphat)
053ce58d 70.11 Thurs. Jun 26, 2008
8 - add the ability to curry method providers (thanks to jasonmay)
9 - Counter: add set and allow inc and dec to accept args
10 - add Bool as an attribute helper (thanks to jasonmay)
1ccccb1f 11 - bump all modules to version 0.11 for consistency (sartak)
96c2370b 12
053ce58d 130.09 Sat. May 24, 2008
14 - remove Module::Build in favor of Module::Install
15
e8013350 16 * MooseX::AttributeHelpers::MethodProvider::Hash
053ce58d 17 - delete with multiple keys will now work (thanks to frodwith)
e8013350 18
19 * MooseX::AttributeHelpers::MethodProvider::List
20 - add "join" and "elements" provided methods (thanks to Sartak)
21
22 * MooseX::AttributeHelpers::MethodProvider::Array
23 - add "splice" provided method
24
250.08 Sat. April 12, 2008
99c62fb8 26 ~~ updates copyright year on all modules ~~
27
532b802c 28 * MooseX::AttributeHelpers::MethodProvider::Hash
29 - fixed bug in non-type constraint version of set
30 method (thanks to frodwith)
31
eca30395 320.07 Tues. Jan. 1, 2008
33 * MooseX::AttributeHelpers::String
34 - Initial version
35 * MooseX::AttributeHelpers::Hash
36 - get and set now support aggregate operations
37
34e30a7e 380.06 Tues. Dec. 7, 2007
999f34a9 39 * MooseX::AttributeHelpers::Base
40 - added the &remove_accessors method to comply with the
41 Class::MOP::Attribute interface
42 - added test for this
43 - the &install_accessors method now also properly assocaites
44 the methods with the attribute, so they are accessible via
45 introspection now.
46
f9b41f2e 470.05 Sat. Nov. 24, 2007
0f31cc28 48 - update Class::MOP dependency
999f34a9 49 - hide the Moose::Meta::Attribute::Custom::* package
0f31cc28 50 declarations from search.cpan.org (when did they change
51 things to start seeing these?? *sigh*)
52
ea60939b 530.04 Fri. Nov. 23, 2007
9a976497 54 * MooseX::AttributeHelpers::Base
55 - changing this to use the new Class::MOP::Attribute
56 reader and write method ref stuff.
999f34a9 57 - fixed this to use find_or_create_type_constraint
9a976497 58 instead of trying to parse stuff on our own.
999f34a9 59
9a976497 60 * MooseX::AttributeHelpers::Collection
999f34a9 61 - this is pretty much empty subclass now cause of
9a976497 62 the find_or_create_type_constraint fix above
999f34a9 63
9a976497 64 + MooseX::AttributeHelpers::Collection::ImmutableHash
65 + MooseX::AttributeHelpers::Collection::Bag
66 - added these two new collection types
67 - added method provider roles for them
68 - added tests for them
999f34a9 69
9a976497 70 * MooseX::AttributeHelpers::MethodProvider::Hash
71 - this is now composed from the ImmutableHash
72 method provider
999f34a9 73
9a976497 74 * t/
75 - fixed the plans on all the tests
76
770.03 Mon. Sept. 17, 2007
829736f9 78 ~~ more misc. doc updates ~~
999f34a9 79
38abf787 80 * MooseX::AttributeHelpers::Counter
81 - now provides default attribute options for 'is',
82 'isa', 'provides', and 'default' if not specified.
999f34a9 83
38abf787 84 * MooseX::AttributeHelpers::Base
85 - added attribute $name to the params passed to
86 process_options_or_provides(), which gives us more
053ce58d 87 flexibility when writing additional helpers
38abf787 88 - removed check for 'provides' and 'isa' attr
89 options before _process_options. It should be
999f34a9 90 called always.
91
b91f57af 92 * MooseX::AttributeHelpers::MethodProvider::Array
999f34a9 93 - added `delete` and `insert` methods
72a41843 94
c91a1347 950.02 Thurs. Sept. 13, 2007
96 ~~ some misc. doc updates ~~
97
457dc4fb 98 * MooseX::AttributeHelpers::Base
999f34a9 99 - now providing subrefs for the reader and writer
457dc4fb 100 methods to all the method provider constructors
101 (this should speed things up quite a bit).
102 - all method providers now use this internally
103
104 * MooseX::AttributeHelpers::Counter
999f34a9 105 - added the 'reset' method
106
457dc4fb 107 * MooseX::AttributeHelpers::Collection::Array
999f34a9 108 - Extracted the List method provider role from
457dc4fb 109 Array and made Array consume List.
110
111 + MooseX::AttributeHelpers::Collection::List
112 - created the Collection::List metaclass
999f34a9 113 derived from parts of the old Collection::Array
457dc4fb 114
5431dff2 1150.01 Mon. Aug. 13, 2007
38abf787 116 - module released to CPAN