Remove Test::TempDir
[gitmo/MooseX-Storage.git] / Changes
CommitLineData
e9739624 1Revision history for MooseX-Storage
e59193fb 2
08d0f48e 30.29
4 * Remove use of Test::TempDir in favor of File::Temp (gphat)
5
004bf3ea 60.28
7 * Make the engine_traits parameter be able to use a '+My::Trait::Name'
8 prefix to specify a trait name which isn't in the
00993f69 9 MooseX::Storage::Engine::Trait namespace
004bf3ea 10 * Misc POD and test cleanups.
11
39535ada 120.27
13 * use of parameterized roles (first added in 0.22) now works in Deferred
14 Example: $object->freeze({ format => [ $role_name => \%args ] })
15
8919e01e 160.26
c557e792 17 * Fix URI for repository in metadata.
049541bd 18 * Fix infinite recursion when collapsing objects which overload stringify
19 to freeze themselves.
c557e792 20
c905cefb 210.25
22 * Add support for Union types (bumps Moose dep to 0.99)
23
68cf3423 240.24
25 * Add additional YAML implementation tests.
26 * Switch from using Best to YAML::Any.
27 * Remove Test::YAML::Valid.
28
0e45b8f5 290.23
30 * Revert whitespace change in tests which breaks the tests if you
31 have Test::YAML::Valid installed.
32
75b4d0b3 330.22
e0f8f2ee 34 * Fix warnings when types do not have a parent type.
9ff679e4 35 * allow the use of roles outside MooseX::Storage:: (rjbs)
36 * allow the use of parameterized roles (rjbs)
e0f8f2ee 37
14e5132a 380.21
39 * Fix inconsistent dist versions with Perl::Version
40
e43a61ed 410.20
42 * Add support for Storage( traits => [...] ) with a MooseX::Storage::Traits::XX
43 namespace to alter the behaviour of the storage engine.
44 (Suggestions for how to make this less fugly appreciated)
45 * Add feature to disable cycle checking, either via engine trait or option
46 * add docs & tests (including 1 TODO test)
47 * Add feature to only serialize attributes whose predicate returns 'true'
48 * Implement the unpack( $data, inject => {...} ) feature.
49 * add docs & tests
50 * Move Base::WithChecksum to build upon Basic.pm, avoid code duplication
51 * Add extra test to ensure restoring fails if required argument isn't provided
52 * Fix a bug where if a required constructor argument was not serialized, it was
53 impossible to ->unpack again.
54
550.19
56 * Skip pod tests when not in author mode
57
ef87e4a6 580.18
8f677182 59 * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
60 * Added support for Maybe[...] constraints fixing RT#43165 (plu)
ef87e4a6 61
f4ffa4ef 620.17
63 * Change MooseX::Storage::Engine to use get_all_attributes,
64 rather than the deprecated compute_all_applicable_attributes (t0m)
65
5aaf0d46 660.16
67 * Don't fail tests when Best is unavailable (t0m)
68
f9143059 690.15
70 * MooseX::Storage
71 - Remove use of deprecated alias_method routine
72 which was causing issues when you used multiple
73 Roles which used MooseX::Storage (t0m).
74
df7bb436 750.14
76 * MooseX::Storage::Engine
77 - cycles are now tracked by refaddr instead
78 of stringified object, which broke for any
79 overloaded objects (Thanks to Jonathan Rockway)
80
cfd008fa 81 * Don't fail tests when YAML is unavailable
82
83 * Use temporary files in test suite, instead of cwd
84
6d0abbe8 850.13 Sat. May 24, 2008
3defafb9 86 * MooseX::Storage::Engine
87 - added find_type_handler_for($name) method
88 to make finding type handlers easier
89 - improved error messages
90
6d0abbe8 91 ~ removed Build.PL since Module::Install
92 no longer supports it
93
4fa64e86 940.12 Fri. March 14, 2008
eaa26357 95
96 - added build_requires for Test::Deep (awwaiid)
4fa64e86 97 - upped the Moose dependency to support the custom
98 meta-attribute-traits
99
100 * t/
101 - fixing all the tests to properly skip if optional
102 features are not being used, this should help get
103 rid of all our CPANtester failures
104 - tested against 5.10 as well
105
04990d7a 106 * MooseX::Storage::Engine
107 MooseX::Storage::Meta::Attribute::DoNotSerialize
4fa64e86 108 MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
109 - adding meta-attribute-trait support for
110 DoNotSerialize
111 - added tests for this
eaa26357 112
cfee09ad 1130.11 Thurs. Jan. 10, 2008
114
115 - upped the Test::JSON dependency
116 so that we use the version that
117 supports JSON::Any
118 - upped the JSON::Any requirement
119 - minor test cleanups to handle
120 optional dependencies better
121
122 * MooseX::Storage::Engine
123 - the numbers now have to numify (+0) in the
124 expand/collapse so that certain JSON engines
125 will not choke on them
126
1270.10 Thurs. Jan. 10, 2008
1f3074ea 128 ~~ updated copyright information ~~
129
130 * MooseX::Storage::Deferred
131 - added this role, which allows you to wait until
132 you actually call a method to determine what
133 formatter and/or IO engine you want to use
134 - added tests for this
135
399f3500 1360.09 Tue. Oct. 23, 2007
6f491fae 137 * MooseX::Storage::Util
138 - added support to deal with utf8 strings correctly
6237d568 139
140 * MooseX::Storage::Engine::File
141 MooseX::Storage::Engine::AtomicFile
142 - fixed utf8 handling when storing string
143 - added tests for this
9740e0b7 144
145 * t/
9237d6b4 146 - added an extra test for the utf8 handling
399f3500 147
148 * Change build system to Module::Install
6f491fae 149
1500.08 Wed. Oct. 10, 2007
6c9f2c85 151 * MooseX::Storage::Format::JSON
152 - added support to deal with utf8 strings correctly
153
124c2ba5 1540.07 Thurs. Sept. 27, 2007
155 + MooseX::Storage::Format::Storable
156 - this will use Storable to freeze/thaw objects
157 - added tests for this
158
159 + MooseX::Storage::IO::StorableFile
160 - this will use Storable to load/store objects
161 - added tests for this
4747c531 162
163 * t/
164 - fixed tests in 030_with_checksum.t
165 (thanks to sartak)
166
917411c2 1670.06 Tues. Aug. 7, 2007
168 * MooseX::Storage::Engine
169 - added the Bool type and fixed a few bugs
170 that it exposed (thanks to Sartak)
171 - added tests for this
172
a7f358fb 1730.05 Sun. July 15. 2007
174 * MooseX::Storage::Base::WithChecksum
175 - Fixed minor issue where the WithChecksum would
176 choke with a bad checksum due to odd Data::Dumper
177 output.
178
179 * t/
180 - forced JSON::Any in the basic JSON tests to use
181 JSON.pm since this is what Test::JSON uses and
182 subtle (and annoying) issues can arise.
183
8cd124d3 1840.04 Tues. July 3, 2007
021c860a 185 * MooseX::Storage::Util
186 - made this more robust when it tries
187 to use YAML and JSON loaders and fails
188 to find one
189 - fixed tests to reflect this
190
b04cbd47 1910.03 Wed. June 27, 2007
69b45b7d 192 * MooseX::Storage::Util
193 - this is a collection of useful tools
194 for working with MooseX::Storage data
195 - added docs and test
196
197 * t/
198 - added test for a custom type handler
bc0c5bf9 199 - fixed checksum test to skip if Digest::SHA1
200 (our default) is not available
1c6ac775 201
c86a46cc 2020.02 Fri. June 8, 2007
c4a322ec 203 * MooseX::Storage::Base::WithChecksum
204 - added a simple base role which makes a checksum of
205 the data structure before packing, and checks the
206 checksum before unpacking.
207 - added tests for this
208
45d9a73c 209 * MooseX::Storage::Engine
210 - better error reporting when cycles are found
c1830046 211 - class names are now stored as the full identifier
212 (<class>-<version>-<authority>) and are checked
213 when they are expanded.
214 - added docs and tests for this
45d9a73c 215
06a66732 216 * MooseX::Storage::Engine::IO::(AtomicFile, File)
217 - added checks to make sure the file gets opened correctly
218 and dies if it does not.
219
7b428d1f 2200.01 Mon. April 30, 2007
221 This was Chris's idea originally (blame him), and
222 we expanded on it to create what you see here :)
e59193fb 223