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