3d6990810fd3c81e6ee424d4f3902b4120a4abb7
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
1 Revision history for Perl extension MooseX-AttributeHelpers
2
3     - New provided method for hashs: elements (Returns the key, value
4       pairs in the hash as a flattened list)
5
6 0.19 Sun June 14, 2009
7     - No functional changes from 0.18_01
8
9 0.18_01 Mon June 1, 2009
10         - Turn our metaclasses into traits, though metaclasses still exist for
11           backwards compatibility (Sartak and doy)
12     - Add accessor to Hash and Array (Sartak)
13         - Let the user know which constraint they have violated in the confessed
14         message (nperez)
15
16 0.17 Fri April 19, 2009
17     - Add defined to Hash (Evan Carroll).
18
19 0.16 Sun April 5, 2009
20     - Add substr to String (Florian Ragwitz).
21
22 0.15 Thu March 26, 2009
23     - The splice helper for arrays was completely broken. Reported by
24       Abhijit Mahabal. RT #43343.
25
26 0.14 Thu October 2, 2008
27     - Run pod tests only for authors
28
29 0.13 Mon September 1, 2008
30     - No code changes, just a stable release for Moose 0.56.
31
32 0.12_01 Wed August 20, 2008
33     - fixed some missing Pod::Coverage (stevan)
34     - fixes to work with Moose 0.55_01 and Class::MOP 0.64_01
35       (nothingmuch)
36
37 0.12 Sun. Jun 29, 2008
38     - Move get from Array to List (gphat)
39     - Add first and last to List (gphat)
40     - Doc fixes (gphat)
41     - fix failing tests due to using DateTime (jasonmay)
42
43 0.11 Thurs. Jun 26, 2008
44     - add the ability to curry method providers (thanks to jasonmay)
45     - Counter: add set and allow inc and dec to accept args
46     - add Bool as an attribute helper (thanks to jasonmay)
47         - bump all modules to version 0.11 for consistency (Sartak)
48
49 0.09 Sat. May 24, 2008
50     - remove Module::Build in favor of Module::Install
51
52     * MooseX::AttributeHelpers::MethodProvider::Hash
53       - delete with multiple keys will now work (thanks to frodwith)
54
55     * MooseX::AttributeHelpers::MethodProvider::List
56       - add "join" and "elements" provided methods (thanks to Sartak)
57
58     * MooseX::AttributeHelpers::MethodProvider::Array
59       - add "splice" provided method
60
61 0.08 Sat. April 12, 2008
62     ~~ updates copyright year on all modules ~~
63
64     * MooseX::AttributeHelpers::MethodProvider::Hash
65       - fixed bug in non-type constraint version of set
66         method (thanks to frodwith)
67
68 0.07 Tues. Jan. 1, 2008
69     * MooseX::AttributeHelpers::String
70       - Initial version
71     * MooseX::AttributeHelpers::Hash
72       - get and set now support aggregate operations
73
74 0.06 Tues. Dec. 7, 2007
75     * MooseX::AttributeHelpers::Base
76       - added the &remove_accessors method to comply with the
77         Class::MOP::Attribute interface
78         - added test for this
79       - the &install_accessors method now also properly assocaites
80         the methods with the attribute, so they are accessible via
81         introspection now.
82
83 0.05 Sat. Nov. 24, 2007
84     - update Class::MOP dependency
85     - hide the Moose::Meta::Attribute::Custom::* package
86       declarations from search.cpan.org (when did they change
87       things to start seeing these?? *sigh*)
88
89 0.04 Fri. Nov. 23, 2007
90     * MooseX::AttributeHelpers::Base
91       - changing this to use the new Class::MOP::Attribute
92         reader and write method ref stuff.
93       - fixed this to use find_or_create_type_constraint
94         instead of trying to parse stuff on our own.
95
96     * MooseX::AttributeHelpers::Collection
97       - this is pretty much empty subclass now cause of
98         the find_or_create_type_constraint fix above
99
100     + MooseX::AttributeHelpers::Collection::ImmutableHash
101     + MooseX::AttributeHelpers::Collection::Bag
102       - added these two new collection types
103         - added method provider roles for them
104         - added tests for them
105
106     * MooseX::AttributeHelpers::MethodProvider::Hash
107       - this is now composed from the ImmutableHash
108         method provider
109
110     * t/
111       - fixed the plans on all the tests
112
113 0.03 Mon. Sept. 17, 2007
114     ~~ more misc. doc updates ~~
115
116     * MooseX::AttributeHelpers::Counter
117       - now provides default attribute options for 'is',
118       'isa', 'provides', and 'default' if not specified.
119
120     * MooseX::AttributeHelpers::Base
121       - added attribute $name to the params passed to
122         process_options_or_provides(), which gives us more
123         flexibility when writing additional helpers
124       - removed check for 'provides' and 'isa' attr
125         options before _process_options. It should be
126         called always.
127
128     * MooseX::AttributeHelpers::MethodProvider::Array
129       - added `delete` and `insert` methods
130
131 0.02 Thurs. Sept. 13, 2007
132     ~~ some misc. doc updates ~~
133
134     * MooseX::AttributeHelpers::Base
135       - now providing subrefs for the reader and writer
136         methods to all the method provider constructors
137         (this should speed things up quite a bit).
138         - all method providers now use this internally
139
140     * MooseX::AttributeHelpers::Counter
141       - added the 'reset' method
142
143     * MooseX::AttributeHelpers::Collection::Array
144       - Extracted the List method provider role from
145         Array and made Array consume List.
146
147     + MooseX::AttributeHelpers::Collection::List
148       - created the Collection::List metaclass
149         derived from parts of the old Collection::Array
150
151 0.01 Mon. Aug. 13, 2007
152     - module released to CPAN