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