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