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