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