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