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