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