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