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