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