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