MooseX-Storage-0.38-TRIAL
[gitmo/MooseX-Storage.git] / Changes
CommitLineData
d3671a48 1Revision history for {{$dist->name}}
2
3{{$NEXT}}
814698b4 4
50.38-TRIAL 2013-07-20 09:42:03 PDT-0700 (Karen Etheridge)
8725bb5d 6 * re-release with new compile test, which properly declares all its prerequisites
26a10d69 7
80.37-TRIAL 2013-07-19 17:41:17 PDT-0700 (Karen Etheridge)
fdc71a7a 9 * fixed compile tests so that modules using optional features are skipped
10 (from 0.36-TRIAL)
4d941613 11
120.36-TRIAL 2013-07-16 21:41:39 PDT-0700 (Karen Etheridge)
1ba47903 13 * convert to Dist::Zilla, with new optional prereq handling
e59193fb 14
bba46bb5 150.35 2013-07-15
30d5da5c 16 * properly skip optional tests when the required JSON backends aren't
17 available
18
e7ab79ca 190.34 2013-06-20
b9f532ee 20 * JSON storage works when Cpanel::JSON::XS is the only JSON backend installed
21
8e1415ef 220.33 2013-03-29
6f80d403 23 * always JSONify data with sorted keys, to handle hash order randomization
24 introduced in 5.17.* (RT#84287, Karen Etheridge)
25
8e1415ef 260.32 2012-12-04
7d5ab57c 27 * Change to use core Digest and Digest::SHA dists, rather than Digest::SHA1.
e44b5f54 28 RT#69811
0edcbfee 29 * Create a JSON::Any object, so setting $ENV{JSON_ANY_CONFIG} works.
e44b5f54 30 Adjust tests that were setting the wrong values and the default
31 happened to work.
cd4cef76 32 * Don't rely on hash key order in tests (RT#81695)
7d5ab57c 33
8e1415ef 340.31 2012-02-28
cb534011 35 * Add example for add_custom_type_handler to the MooseX::Storage::Engine docs. (perigrin)
36
9ca35902 37 * Incorrect documentation for ->unpack method's inject parameter fixed.
38
9d3c60f5 39 * The test suite now uses Test::Fatal instead of Test::Exception (Karen
40 Etheridge).
41
8e1415ef 420.30 2011-04-29
9566cef2 43 * Make Makefile.PL features work again. RT#67170
44
8e1415ef 450.29 2010-11-17
08d0f48e 46 * Remove use of Test::TempDir in favor of File::Temp (gphat)
47
8e1415ef 480.28 2010-10-03
004bf3ea 49 * Make the engine_traits parameter be able to use a '+My::Trait::Name'
50 prefix to specify a trait name which isn't in the
00993f69 51 MooseX::Storage::Engine::Trait namespace
004bf3ea 52 * Misc POD and test cleanups.
53
8e1415ef 540.27 2010-04-15
39535ada 55 * use of parameterized roles (first added in 0.22) now works in Deferred
56 Example: $object->freeze({ format => [ $role_name => \%args ] })
57
8e1415ef 580.26 2010-03-25
c557e792 59 * Fix URI for repository in metadata.
049541bd 60 * Fix infinite recursion when collapsing objects which overload stringify
61 to freeze themselves.
c557e792 62
8e1415ef 630.25 2010-03-09
c905cefb 64 * Add support for Union types (bumps Moose dep to 0.99)
65
8e1415ef 660.24 2010-01-11
68cf3423 67 * Add additional YAML implementation tests.
68 * Switch from using Best to YAML::Any.
69 * Remove Test::YAML::Valid.
70
8e1415ef 710.23 2009-11-10
0e45b8f5 72 * Revert whitespace change in tests which breaks the tests if you
73 have Test::YAML::Valid installed.
74
8e1415ef 750.22 2009-11-05
e0f8f2ee 76 * Fix warnings when types do not have a parent type.
9ff679e4 77 * allow the use of roles outside MooseX::Storage:: (rjbs)
78 * allow the use of parameterized roles (rjbs)
e0f8f2ee 79
8e1415ef 800.21 2009-07-14
14e5132a 81 * Fix inconsistent dist versions with Perl::Version
82
8e1415ef 830.20 2009-07-14
e43a61ed 84 * Add support for Storage( traits => [...] ) with a MooseX::Storage::Traits::XX
85 namespace to alter the behaviour of the storage engine.
86 (Suggestions for how to make this less fugly appreciated)
87 * Add feature to disable cycle checking, either via engine trait or option
88 * add docs & tests (including 1 TODO test)
89 * Add feature to only serialize attributes whose predicate returns 'true'
90 * Implement the unpack( $data, inject => {...} ) feature.
91 * add docs & tests
92 * Move Base::WithChecksum to build upon Basic.pm, avoid code duplication
93 * Add extra test to ensure restoring fails if required argument isn't provided
94 * Fix a bug where if a required constructor argument was not serialized, it was
95 impossible to ->unpack again.
96
8e1415ef 970.19 2009-07-14
e43a61ed 98 * Skip pod tests when not in author mode
99
8e1415ef 1000.18 2009-06-02
8f677182 101 * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
102 * Added support for Maybe[...] constraints fixing RT#43165 (plu)
ef87e4a6 103
8e1415ef 1040.17 2009-04-06
f4ffa4ef 105 * Change MooseX::Storage::Engine to use get_all_attributes,
106 rather than the deprecated compute_all_applicable_attributes (t0m)
5aaf0d46 107 * Don't fail tests when Best is unavailable (t0m)
108
8e1415ef 1090.15 2008-09-29
f9143059 110 * MooseX::Storage
111 - Remove use of deprecated alias_method routine
112 which was causing issues when you used multiple
113 Roles which used MooseX::Storage (t0m).
114
8e1415ef 1150.14 2008-06-22
df7bb436 116 * MooseX::Storage::Engine
117 - cycles are now tracked by refaddr instead
118 of stringified object, which broke for any
119 overloaded objects (Thanks to Jonathan Rockway)
120
cfd008fa 121 * Don't fail tests when YAML is unavailable
122
123 * Use temporary files in test suite, instead of cwd
124
8e1415ef 1250.13 2008-05-24
3defafb9 126 * MooseX::Storage::Engine
127 - added find_type_handler_for($name) method
128 to make finding type handlers easier
129 - improved error messages
130
6d0abbe8 131 ~ removed Build.PL since Module::Install
132 no longer supports it
133
8e1415ef 1340.12 2008-03-14
eaa26357 135 - added build_requires for Test::Deep (awwaiid)
4fa64e86 136 - upped the Moose dependency to support the custom
137 meta-attribute-traits
138
139 * t/
140 - fixing all the tests to properly skip if optional
141 features are not being used, this should help get
142 rid of all our CPANtester failures
143 - tested against 5.10 as well
144
04990d7a 145 * MooseX::Storage::Engine
146 MooseX::Storage::Meta::Attribute::DoNotSerialize
4fa64e86 147 MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
148 - adding meta-attribute-trait support for
149 DoNotSerialize
150 - added tests for this
eaa26357 151
8e1415ef 1520.11 2008-01-10
cfee09ad 153 - upped the Test::JSON dependency
154 so that we use the version that
155 supports JSON::Any
156 - upped the JSON::Any requirement
157 - minor test cleanups to handle
158 optional dependencies better
159
160 * MooseX::Storage::Engine
161 - the numbers now have to numify (+0) in the
162 expand/collapse so that certain JSON engines
163 will not choke on them
164
8e1415ef 1650.10 2009-01-10
1f3074ea 166 ~~ updated copyright information ~~
167
168 * MooseX::Storage::Deferred
169 - added this role, which allows you to wait until
170 you actually call a method to determine what
171 formatter and/or IO engine you want to use
172 - added tests for this
173
8e1415ef 1740.09 2007-10-23
6f491fae 175 * MooseX::Storage::Util
176 - added support to deal with utf8 strings correctly
6237d568 177
178 * MooseX::Storage::Engine::File
179 MooseX::Storage::Engine::AtomicFile
180 - fixed utf8 handling when storing string
181 - added tests for this
9740e0b7 182
183 * t/
9237d6b4 184 - added an extra test for the utf8 handling
399f3500 185
186 * Change build system to Module::Install
6f491fae 187
8e1415ef 1880.08 2007-10-10
6c9f2c85 189 * MooseX::Storage::Format::JSON
190 - added support to deal with utf8 strings correctly
191
8e1415ef 1920.07 2007-09-27
124c2ba5 193 + MooseX::Storage::Format::Storable
194 - this will use Storable to freeze/thaw objects
195 - added tests for this
196
197 + MooseX::Storage::IO::StorableFile
198 - this will use Storable to load/store objects
199 - added tests for this
4747c531 200
201 * t/
202 - fixed tests in 030_with_checksum.t
203 (thanks to sartak)
204
8e1415ef 2050.06 2007-08-07
917411c2 206 * MooseX::Storage::Engine
207 - added the Bool type and fixed a few bugs
208 that it exposed (thanks to Sartak)
209 - added tests for this
210
8e1415ef 2110.05 2007-07-15
a7f358fb 212 * MooseX::Storage::Base::WithChecksum
213 - Fixed minor issue where the WithChecksum would
214 choke with a bad checksum due to odd Data::Dumper
215 output.
216
217 * t/
218 - forced JSON::Any in the basic JSON tests to use
219 JSON.pm since this is what Test::JSON uses and
220 subtle (and annoying) issues can arise.
221
8e1415ef 2220.04 2007-07-03
021c860a 223 * MooseX::Storage::Util
224 - made this more robust when it tries
225 to use YAML and JSON loaders and fails
226 to find one
227 - fixed tests to reflect this
228
8e1415ef 2290.03 2007-06-27
69b45b7d 230 * MooseX::Storage::Util
231 - this is a collection of useful tools
232 for working with MooseX::Storage data
233 - added docs and test
234
235 * t/
236 - added test for a custom type handler
bc0c5bf9 237 - fixed checksum test to skip if Digest::SHA1
238 (our default) is not available
1c6ac775 239
8e1415ef 2400.02 2007-06-08
c4a322ec 241 * MooseX::Storage::Base::WithChecksum
242 - added a simple base role which makes a checksum of
243 the data structure before packing, and checks the
244 checksum before unpacking.
245 - added tests for this
246
45d9a73c 247 * MooseX::Storage::Engine
248 - better error reporting when cycles are found
c1830046 249 - class names are now stored as the full identifier
250 (<class>-<version>-<authority>) and are checked
251 when they are expanded.
252 - added docs and tests for this
45d9a73c 253
06a66732 254 * MooseX::Storage::Engine::IO::(AtomicFile, File)
255 - added checks to make sure the file gets opened correctly
256 and dies if it does not.
257
8e1415ef 2580.01 2007-04-30
7b428d1f 259 This was Chris's idea originally (blame him), and
260 we expanded on it to create what you see here :)
e59193fb 261