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