fuckingyuval
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
1 Revision history for Perl extension MooseX-AttributeHelpers
2
3 0.08
4     * MooseX::AttributeHelpers::MethodProvider::Hash
5       - fixed bug in non-type constraint version of set
6         method (thanks to frodwith)
7
8 0.07 Tues. Jan. 1, 2008
9     * MooseX::AttributeHelpers::String
10       - Initial version
11     * MooseX::AttributeHelpers::Hash
12       - get and set now support aggregate operations
13
14 0.06 Tues. Dec. 7, 2007
15     * MooseX::AttributeHelpers::Base
16       - added the &remove_accessors method to comply with the
17         Class::MOP::Attribute interface
18         - added test for this
19       - the &install_accessors method now also properly assocaites
20         the methods with the attribute, so they are accessible via
21         introspection now.
22
23 0.05 Sat. Nov. 24, 2007
24     - update Class::MOP dependency
25     - hide the Moose::Meta::Attribute::Custom::* package
26       declarations from search.cpan.org (when did they change
27       things to start seeing these?? *sigh*)
28
29 0.04 Fri. Nov. 23, 2007
30     * MooseX::AttributeHelpers::Base
31       - changing this to use the new Class::MOP::Attribute
32         reader and write method ref stuff.
33       - fixed this to use find_or_create_type_constraint
34         instead of trying to parse stuff on our own.
35
36     * MooseX::AttributeHelpers::Collection
37       - this is pretty much empty subclass now cause of
38         the find_or_create_type_constraint fix above
39
40     + MooseX::AttributeHelpers::Collection::ImmutableHash
41     + MooseX::AttributeHelpers::Collection::Bag
42       - added these two new collection types
43         - added method provider roles for them
44         - added tests for them
45
46     * MooseX::AttributeHelpers::MethodProvider::Hash
47       - this is now composed from the ImmutableHash
48         method provider
49
50     * t/
51       - fixed the plans on all the tests
52
53 0.03 Mon. Sept. 17, 2007
54     ~~ more misc. doc updates ~~
55
56     * MooseX::AttributeHelpers::Counter
57       - now provides default attribute options for 'is',
58       'isa', 'provides', and 'default' if not specified.
59
60     * MooseX::AttributeHelpers::Base
61       - added attribute $name to the params passed to
62         process_options_or_provides(), which gives us more
63             flexibility when writing additional helpers
64       - removed check for 'provides' and 'isa' attr
65         options before _process_options. It should be
66         called always.
67
68     * MooseX::AttributeHelpers::MethodProvider::Array
69       - added `delete` and `insert` methods
70
71 0.02 Thurs. Sept. 13, 2007
72     ~~ some misc. doc updates ~~
73
74     * MooseX::AttributeHelpers::Base
75       - now providing subrefs for the reader and writer
76         methods to all the method provider constructors
77         (this should speed things up quite a bit).
78         - all method providers now use this internally
79
80     * MooseX::AttributeHelpers::Counter
81       - added the 'reset' method
82
83     * MooseX::AttributeHelpers::Collection::Array
84       - Extracted the List method provider role from
85         Array and made Array consume List.
86
87     + MooseX::AttributeHelpers::Collection::List
88       - created the Collection::List metaclass
89         derived from parts of the old Collection::Array
90
91 0.01 Mon. Aug. 13, 2007
92     - module released to CPAN