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