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