fix whitespace to make "dzil authordeps --missing" happy (see dist-zilla issue#196)
[gitmo/MooseX-Storage.git] / Changes
CommitLineData
d3671a48 1Revision history for {{$dist->name}}
2
3{{$NEXT}}
d29321d0 4 * re-release as stable (full working Dist::Zilla conversion)
814698b4 5
60.38-TRIAL 2013-07-20 09:42:03 PDT-0700 (Karen Etheridge)
8725bb5d 7 * re-release with new compile test, which properly declares all its prerequisites
26a10d69 8
90.37-TRIAL 2013-07-19 17:41:17 PDT-0700 (Karen Etheridge)
fdc71a7a 10 * fixed compile tests so that modules using optional features are skipped
11 (from 0.36-TRIAL)
4d941613 12
130.36-TRIAL 2013-07-16 21:41:39 PDT-0700 (Karen Etheridge)
1ba47903 14 * convert to Dist::Zilla, with new optional prereq handling
e59193fb 15
bba46bb5 160.35 2013-07-15
30d5da5c 17 * properly skip optional tests when the required JSON backends aren't
18 available
19
e7ab79ca 200.34 2013-06-20
b9f532ee 21 * JSON storage works when Cpanel::JSON::XS is the only JSON backend installed
22
8e1415ef 230.33 2013-03-29
6f80d403 24 * always JSONify data with sorted keys, to handle hash order randomization
25 introduced in 5.17.* (RT#84287, Karen Etheridge)
26
8e1415ef 270.32 2012-12-04
7d5ab57c 28 * Change to use core Digest and Digest::SHA dists, rather than Digest::SHA1.
e44b5f54 29 RT#69811
0edcbfee 30 * Create a JSON::Any object, so setting $ENV{JSON_ANY_CONFIG} works.
e44b5f54 31 Adjust tests that were setting the wrong values and the default
32 happened to work.
cd4cef76 33 * Don't rely on hash key order in tests (RT#81695)
7d5ab57c 34
8e1415ef 350.31 2012-02-28
cb534011 36 * Add example for add_custom_type_handler to the MooseX::Storage::Engine docs. (perigrin)
37
9ca35902 38 * Incorrect documentation for ->unpack method's inject parameter fixed.
39
9d3c60f5 40 * The test suite now uses Test::Fatal instead of Test::Exception (Karen
41 Etheridge).
42
8e1415ef 430.30 2011-04-29
9566cef2 44 * Make Makefile.PL features work again. RT#67170
45
8e1415ef 460.29 2010-11-17
08d0f48e 47 * Remove use of Test::TempDir in favor of File::Temp (gphat)
48
8e1415ef 490.28 2010-10-03
004bf3ea 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
00993f69 52 MooseX::Storage::Engine::Trait namespace
004bf3ea 53 * Misc POD and test cleanups.
54
8e1415ef 550.27 2010-04-15
39535ada 56 * use of parameterized roles (first added in 0.22) now works in Deferred
57 Example: $object->freeze({ format => [ $role_name => \%args ] })
58
8e1415ef 590.26 2010-03-25
c557e792 60 * Fix URI for repository in metadata.
049541bd 61 * Fix infinite recursion when collapsing objects which overload stringify
62 to freeze themselves.
c557e792 63
8e1415ef 640.25 2010-03-09
c905cefb 65 * Add support for Union types (bumps Moose dep to 0.99)
66
8e1415ef 670.24 2010-01-11
68cf3423 68 * Add additional YAML implementation tests.
69 * Switch from using Best to YAML::Any.
70 * Remove Test::YAML::Valid.
71
8e1415ef 720.23 2009-11-10
0e45b8f5 73 * Revert whitespace change in tests which breaks the tests if you
74 have Test::YAML::Valid installed.
75
8e1415ef 760.22 2009-11-05
e0f8f2ee 77 * Fix warnings when types do not have a parent type.
9ff679e4 78 * allow the use of roles outside MooseX::Storage:: (rjbs)
79 * allow the use of parameterized roles (rjbs)
e0f8f2ee 80
8e1415ef 810.21 2009-07-14
14e5132a 82 * Fix inconsistent dist versions with Perl::Version
83
8e1415ef 840.20 2009-07-14
e43a61ed 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
8e1415ef 980.19 2009-07-14
e43a61ed 99 * Skip pod tests when not in author mode
100
8e1415ef 1010.18 2009-06-02
8f677182 102 * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
103 * Added support for Maybe[...] constraints fixing RT#43165 (plu)
ef87e4a6 104
8e1415ef 1050.17 2009-04-06
f4ffa4ef 106 * Change MooseX::Storage::Engine to use get_all_attributes,
107 rather than the deprecated compute_all_applicable_attributes (t0m)
5aaf0d46 108 * Don't fail tests when Best is unavailable (t0m)
109
8e1415ef 1100.15 2008-09-29
f9143059 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
8e1415ef 1160.14 2008-06-22
df7bb436 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
cfd008fa 122 * Don't fail tests when YAML is unavailable
123
124 * Use temporary files in test suite, instead of cwd
125
8e1415ef 1260.13 2008-05-24
3defafb9 127 * MooseX::Storage::Engine
128 - added find_type_handler_for($name) method
129 to make finding type handlers easier
130 - improved error messages
131
6d0abbe8 132 ~ removed Build.PL since Module::Install
133 no longer supports it
134
8e1415ef 1350.12 2008-03-14
eaa26357 136 - added build_requires for Test::Deep (awwaiid)
4fa64e86 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
04990d7a 146 * MooseX::Storage::Engine
147 MooseX::Storage::Meta::Attribute::DoNotSerialize
4fa64e86 148 MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
149 - adding meta-attribute-trait support for
150 DoNotSerialize
151 - added tests for this
eaa26357 152
8e1415ef 1530.11 2008-01-10
cfee09ad 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
8e1415ef 1660.10 2009-01-10
1f3074ea 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
8e1415ef 1750.09 2007-10-23
6f491fae 176 * MooseX::Storage::Util
177 - added support to deal with utf8 strings correctly
6237d568 178
179 * MooseX::Storage::Engine::File
180 MooseX::Storage::Engine::AtomicFile
181 - fixed utf8 handling when storing string
182 - added tests for this
9740e0b7 183
184 * t/
9237d6b4 185 - added an extra test for the utf8 handling
399f3500 186
187 * Change build system to Module::Install
6f491fae 188
8e1415ef 1890.08 2007-10-10
6c9f2c85 190 * MooseX::Storage::Format::JSON
191 - added support to deal with utf8 strings correctly
192
8e1415ef 1930.07 2007-09-27
124c2ba5 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
4747c531 201
202 * t/
203 - fixed tests in 030_with_checksum.t
204 (thanks to sartak)
205
8e1415ef 2060.06 2007-08-07
917411c2 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
8e1415ef 2120.05 2007-07-15
a7f358fb 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
8e1415ef 2230.04 2007-07-03
021c860a 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
8e1415ef 2300.03 2007-06-27
69b45b7d 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
bc0c5bf9 238 - fixed checksum test to skip if Digest::SHA1
239 (our default) is not available
1c6ac775 240
8e1415ef 2410.02 2007-06-08
c4a322ec 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
45d9a73c 248 * MooseX::Storage::Engine
249 - better error reporting when cycles are found
c1830046 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
45d9a73c 254
06a66732 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
8e1415ef 2590.01 2007-04-30
7b428d1f 260 This was Chris's idea originally (blame him), and
261 we expanded on it to create what you see here :)
e59193fb 262