Make Makefile.PL features work again. RT#67170
[gitmo/MooseX-Storage.git] / Changes
1 Revision history for MooseX-Storage
2
3 0.30
4   * Make Makefile.PL features work again. RT#67170
5
6 0.29
7   * Remove use of Test::TempDir in favor of File::Temp (gphat)
8
9 0.28
10   * Make the engine_traits parameter be able to use a '+My::Trait::Name'
11     prefix to specify a trait name which isn't in the
12     MooseX::Storage::Engine::Trait namespace
13   * Misc POD and test cleanups.
14
15 0.27
16   * use of parameterized roles (first added in 0.22) now works in Deferred
17     Example: $object->freeze({ format => [ $role_name => \%args ] })
18
19 0.26
20   * Fix URI for repository in metadata.
21   * Fix infinite recursion when collapsing objects which overload stringify
22     to freeze themselves.
23
24 0.25
25   * Add support for Union types (bumps Moose dep to 0.99)
26
27 0.24
28   * Add additional YAML implementation tests.
29   * Switch from using Best to YAML::Any.
30   * Remove Test::YAML::Valid.
31
32 0.23
33   * Revert whitespace change in tests which breaks the tests if you
34     have Test::YAML::Valid installed.
35
36 0.22
37   * Fix warnings when types do not have a parent type.
38   * allow the use of roles outside MooseX::Storage:: (rjbs)
39   * allow the use of parameterized roles (rjbs)
40
41 0.21
42   * Fix inconsistent dist versions with Perl::Version
43
44 0.20
45   * Add support for Storage( traits => [...] ) with a MooseX::Storage::Traits::XX
46     namespace to alter the behaviour of the storage engine.
47     (Suggestions for how to make this less fugly appreciated)
48   * Add feature to disable cycle checking, either via engine trait or option
49     * add docs & tests (including 1 TODO test)
50   * Add feature to only serialize attributes whose predicate returns 'true'
51   * Implement the unpack( $data, inject => {...} ) feature.
52     * add docs & tests
53   * Move Base::WithChecksum to build upon Basic.pm, avoid code duplication
54   * Add extra test to ensure restoring fails if required argument isn't provided
55   * Fix a bug where if a required constructor argument was not serialized, it was
56     impossible to ->unpack again.
57
58 0.19
59   * Skip pod tests when not in author mode
60
61 0.18
62    * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
63    * Added support for Maybe[...] constraints fixing RT#43165 (plu)
64
65 0.17
66    * Change MooseX::Storage::Engine to use get_all_attributes,
67      rather than the deprecated compute_all_applicable_attributes (t0m)
68
69 0.16
70    * Don't fail tests when Best is unavailable (t0m)
71
72 0.15
73     * MooseX::Storage
74       - Remove use of deprecated alias_method routine
75         which was causing issues when you used multiple
76         Roles which used MooseX::Storage (t0m).
77
78 0.14
79     * MooseX::Storage::Engine
80       - cycles are now tracked by refaddr instead 
81         of stringified object, which broke for any
82         overloaded objects (Thanks to Jonathan Rockway)
83
84     * Don't fail tests when YAML is unavailable
85
86     * Use temporary files in test suite, instead of cwd
87
88 0.13 Sat. May 24, 2008
89     * MooseX::Storage::Engine
90       - added find_type_handler_for($name) method 
91         to make finding type handlers easier
92       - improved error messages
93
94     ~ removed Build.PL since Module::Install
95       no longer supports it
96
97 0.12 Fri. March 14, 2008
98
99     - added build_requires for Test::Deep (awwaiid)
100     - upped the Moose dependency to support the custom
101       meta-attribute-traits
102     
103     * t/
104       - fixing all the tests to properly skip if optional 
105         features are not being used, this should help get
106         rid of all our CPANtester failures
107         - tested against 5.10 as well
108     
109     * MooseX::Storage::Engine
110       MooseX::Storage::Meta::Attribute::DoNotSerialize
111       MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
112       - adding meta-attribute-trait support for 
113         DoNotSerialize
114         - added tests for this
115
116 0.11 Thurs. Jan. 10, 2008
117
118     - upped the Test::JSON dependency 
119       so that we use the version that 
120       supports JSON::Any
121     - upped the JSON::Any requirement 
122     - minor test cleanups to handle
123       optional dependencies better
124
125     * MooseX::Storage::Engine
126       - the numbers now have to numify (+0) in the 
127         expand/collapse so that certain JSON engines
128         will not choke on them
129
130 0.10 Thurs. Jan. 10, 2008
131     ~~ updated copyright information ~~
132
133     * MooseX::Storage::Deferred
134       - added this role, which allows you to wait until
135         you actually call a method to determine what 
136         formatter and/or IO engine you want to use
137         - added tests for this
138
139 0.09 Tue. Oct. 23, 2007
140     * MooseX::Storage::Util
141       - added support to deal with utf8 strings correctly
142       
143     * MooseX::Storage::Engine::File
144       MooseX::Storage::Engine::AtomicFile
145       - fixed utf8 handling when storing string
146         - added tests for this
147      
148     * t/
149       - added an extra test for the utf8 handling
150     
151     * Change build system to Module::Install
152
153 0.08 Wed. Oct. 10, 2007
154     * MooseX::Storage::Format::JSON
155       - added support to deal with utf8 strings correctly
156
157 0.07 Thurs. Sept. 27, 2007
158     + MooseX::Storage::Format::Storable
159       - this will use Storable to freeze/thaw objects
160         - added tests for this
161     
162     + MooseX::Storage::IO::StorableFile
163       - this will use Storable to load/store objects    
164         - added tests for this
165
166     * t/
167       - fixed tests in 030_with_checksum.t
168         (thanks to sartak)
169
170 0.06 Tues. Aug. 7, 2007
171     * MooseX::Storage::Engine
172       - added the Bool type and fixed a few bugs
173         that it exposed (thanks to Sartak)
174         - added tests for this
175
176 0.05 Sun. July 15. 2007
177     * MooseX::Storage::Base::WithChecksum
178       - Fixed minor issue where the WithChecksum would 
179         choke with a bad checksum due to odd Data::Dumper
180         output.
181     
182     * t/
183       - forced JSON::Any in the basic JSON tests to use 
184         JSON.pm since this is what Test::JSON uses and 
185         subtle (and annoying) issues can arise.
186
187 0.04 Tues. July 3, 2007
188     * MooseX::Storage::Util
189         - made this more robust when it tries
190           to use YAML and JSON loaders and fails
191           to find one
192             - fixed tests to reflect this
193
194 0.03 Wed. June 27, 2007
195     * MooseX::Storage::Util
196         - this is a collection of useful tools 
197           for working with MooseX::Storage data
198             - added docs and test
199
200     * t/
201         - added test for a custom type handler
202         - fixed checksum test to skip if Digest::SHA1 
203           (our default) is not available
204
205 0.02 Fri. June 8, 2007
206     * MooseX::Storage::Base::WithChecksum
207       - added a simple base role which makes a checksum of 
208         the data structure before packing, and checks the
209         checksum before unpacking.
210         - added tests for this
211
212     * MooseX::Storage::Engine
213       - better error reporting when cycles are found
214       - class names are now stored as the full identifier
215         (<class>-<version>-<authority>) and are checked
216         when they are expanded.
217         - added docs and tests for this
218
219     * MooseX::Storage::Engine::IO::(AtomicFile, File)
220       - added checks to make sure the file gets opened correctly
221         and dies if it does not.
222
223 0.01  Mon. April 30, 2007
224     This was Chris's idea originally (blame him), and 
225     we expanded on it to create what you see here :)
226