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