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