Update ChangeLog with more stuff that has happened since previous release
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
CommitLineData
22d869ff 1Revision history for Perl extension MooseX-AttributeHelpers
2
532b802c 30.08
99c62fb8 4 ~~ updates copyright year on all modules ~~
f66aa1f1 5 - remove Module::Build support in favor of ExtUtils::MakeMaker
99c62fb8 6
532b802c 7 * MooseX::AttributeHelpers::MethodProvider::Hash
8 - fixed bug in non-type constraint version of set
9 method (thanks to frodwith)
f66aa1f1 10 - delete with multiple keys will now work (thanks to frodwith)
11 * MooseX::AttributeHelpers::MethodProvider::List
12 - add "join" and "elements" provided methods (thanks to Sartak)
13 * MooseX::AttributeHelpers::MethodProvider::Array
14 - add "splice" provided method
532b802c 15
eca30395 160.07 Tues. Jan. 1, 2008
17 * MooseX::AttributeHelpers::String
18 - Initial version
19 * MooseX::AttributeHelpers::Hash
20 - get and set now support aggregate operations
21
34e30a7e 220.06 Tues. Dec. 7, 2007
999f34a9 23 * MooseX::AttributeHelpers::Base
24 - added the &remove_accessors method to comply with the
25 Class::MOP::Attribute interface
26 - added test for this
27 - the &install_accessors method now also properly assocaites
28 the methods with the attribute, so they are accessible via
29 introspection now.
30
f9b41f2e 310.05 Sat. Nov. 24, 2007
0f31cc28 32 - update Class::MOP dependency
999f34a9 33 - hide the Moose::Meta::Attribute::Custom::* package
0f31cc28 34 declarations from search.cpan.org (when did they change
35 things to start seeing these?? *sigh*)
36
ea60939b 370.04 Fri. Nov. 23, 2007
9a976497 38 * MooseX::AttributeHelpers::Base
39 - changing this to use the new Class::MOP::Attribute
40 reader and write method ref stuff.
999f34a9 41 - fixed this to use find_or_create_type_constraint
9a976497 42 instead of trying to parse stuff on our own.
999f34a9 43
9a976497 44 * MooseX::AttributeHelpers::Collection
999f34a9 45 - this is pretty much empty subclass now cause of
9a976497 46 the find_or_create_type_constraint fix above
999f34a9 47
9a976497 48 + MooseX::AttributeHelpers::Collection::ImmutableHash
49 + MooseX::AttributeHelpers::Collection::Bag
50 - added these two new collection types
51 - added method provider roles for them
52 - added tests for them
999f34a9 53
9a976497 54 * MooseX::AttributeHelpers::MethodProvider::Hash
55 - this is now composed from the ImmutableHash
56 method provider
999f34a9 57
9a976497 58 * t/
59 - fixed the plans on all the tests
60
610.03 Mon. Sept. 17, 2007
829736f9 62 ~~ more misc. doc updates ~~
999f34a9 63
38abf787 64 * MooseX::AttributeHelpers::Counter
65 - now provides default attribute options for 'is',
66 'isa', 'provides', and 'default' if not specified.
999f34a9 67
38abf787 68 * MooseX::AttributeHelpers::Base
69 - added attribute $name to the params passed to
70 process_options_or_provides(), which gives us more
2dee86e9 71 flexibility when writing additional helpers
38abf787 72 - removed check for 'provides' and 'isa' attr
73 options before _process_options. It should be
999f34a9 74 called always.
75
b91f57af 76 * MooseX::AttributeHelpers::MethodProvider::Array
999f34a9 77 - added `delete` and `insert` methods
72a41843 78
c91a1347 790.02 Thurs. Sept. 13, 2007
80 ~~ some misc. doc updates ~~
81
457dc4fb 82 * MooseX::AttributeHelpers::Base
999f34a9 83 - now providing subrefs for the reader and writer
457dc4fb 84 methods to all the method provider constructors
85 (this should speed things up quite a bit).
86 - all method providers now use this internally
87
88 * MooseX::AttributeHelpers::Counter
999f34a9 89 - added the 'reset' method
90
457dc4fb 91 * MooseX::AttributeHelpers::Collection::Array
999f34a9 92 - Extracted the List method provider role from
457dc4fb 93 Array and made Array consume List.
94
95 + MooseX::AttributeHelpers::Collection::List
96 - created the Collection::List metaclass
999f34a9 97 derived from parts of the old Collection::Array
457dc4fb 98
5431dff2 990.01 Mon. Aug. 13, 2007
38abf787 100 - module released to CPAN