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