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