Revert "Whitespace trim tests", this was clearly retarded of
[gitmo/MooseX-Storage.git] / Changes
CommitLineData
e9739624 1Revision history for MooseX-Storage
e59193fb 2
75b4d0b3 30.22
e0f8f2ee 4 * Fix warnings when types do not have a parent type.
9ff679e4 5 * allow the use of roles outside MooseX::Storage:: (rjbs)
6 * allow the use of parameterized roles (rjbs)
e0f8f2ee 7
14e5132a 80.21
9 * Fix inconsistent dist versions with Perl::Version
10
e43a61ed 110.20
12 * Add support for Storage( traits => [...] ) with a MooseX::Storage::Traits::XX
13 namespace to alter the behaviour of the storage engine.
14 (Suggestions for how to make this less fugly appreciated)
15 * Add feature to disable cycle checking, either via engine trait or option
16 * add docs & tests (including 1 TODO test)
17 * Add feature to only serialize attributes whose predicate returns 'true'
18 * Implement the unpack( $data, inject => {...} ) feature.
19 * add docs & tests
20 * Move Base::WithChecksum to build upon Basic.pm, avoid code duplication
21 * Add extra test to ensure restoring fails if required argument isn't provided
22 * Fix a bug where if a required constructor argument was not serialized, it was
23 impossible to ->unpack again.
24
250.19
26 * Skip pod tests when not in author mode
27
ef87e4a6 280.18
8f677182 29 * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
30 * Added support for Maybe[...] constraints fixing RT#43165 (plu)
ef87e4a6 31
f4ffa4ef 320.17
33 * Change MooseX::Storage::Engine to use get_all_attributes,
34 rather than the deprecated compute_all_applicable_attributes (t0m)
35
5aaf0d46 360.16
37 * Don't fail tests when Best is unavailable (t0m)
38
f9143059 390.15
40 * MooseX::Storage
41 - Remove use of deprecated alias_method routine
42 which was causing issues when you used multiple
43 Roles which used MooseX::Storage (t0m).
44
df7bb436 450.14
46 * MooseX::Storage::Engine
47 - cycles are now tracked by refaddr instead
48 of stringified object, which broke for any
49 overloaded objects (Thanks to Jonathan Rockway)
50
cfd008fa 51 * Don't fail tests when YAML is unavailable
52
53 * Use temporary files in test suite, instead of cwd
54
6d0abbe8 550.13 Sat. May 24, 2008
3defafb9 56 * MooseX::Storage::Engine
57 - added find_type_handler_for($name) method
58 to make finding type handlers easier
59 - improved error messages
60
6d0abbe8 61 ~ removed Build.PL since Module::Install
62 no longer supports it
63
4fa64e86 640.12 Fri. March 14, 2008
eaa26357 65
66 - added build_requires for Test::Deep (awwaiid)
4fa64e86 67 - upped the Moose dependency to support the custom
68 meta-attribute-traits
69
70 * t/
71 - fixing all the tests to properly skip if optional
72 features are not being used, this should help get
73 rid of all our CPANtester failures
74 - tested against 5.10 as well
75
04990d7a 76 * MooseX::Storage::Engine
77 MooseX::Storage::Meta::Attribute::DoNotSerialize
4fa64e86 78 MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
79 - adding meta-attribute-trait support for
80 DoNotSerialize
81 - added tests for this
eaa26357 82
cfee09ad 830.11 Thurs. Jan. 10, 2008
84
85 - upped the Test::JSON dependency
86 so that we use the version that
87 supports JSON::Any
88 - upped the JSON::Any requirement
89 - minor test cleanups to handle
90 optional dependencies better
91
92 * MooseX::Storage::Engine
93 - the numbers now have to numify (+0) in the
94 expand/collapse so that certain JSON engines
95 will not choke on them
96
970.10 Thurs. Jan. 10, 2008
1f3074ea 98 ~~ updated copyright information ~~
99
100 * MooseX::Storage::Deferred
101 - added this role, which allows you to wait until
102 you actually call a method to determine what
103 formatter and/or IO engine you want to use
104 - added tests for this
105
399f3500 1060.09 Tue. Oct. 23, 2007
6f491fae 107 * MooseX::Storage::Util
108 - added support to deal with utf8 strings correctly
6237d568 109
110 * MooseX::Storage::Engine::File
111 MooseX::Storage::Engine::AtomicFile
112 - fixed utf8 handling when storing string
113 - added tests for this
9740e0b7 114
115 * t/
9237d6b4 116 - added an extra test for the utf8 handling
399f3500 117
118 * Change build system to Module::Install
6f491fae 119
1200.08 Wed. Oct. 10, 2007
6c9f2c85 121 * MooseX::Storage::Format::JSON
122 - added support to deal with utf8 strings correctly
123
124c2ba5 1240.07 Thurs. Sept. 27, 2007
125 + MooseX::Storage::Format::Storable
126 - this will use Storable to freeze/thaw objects
127 - added tests for this
128
129 + MooseX::Storage::IO::StorableFile
130 - this will use Storable to load/store objects
131 - added tests for this
4747c531 132
133 * t/
134 - fixed tests in 030_with_checksum.t
135 (thanks to sartak)
136
917411c2 1370.06 Tues. Aug. 7, 2007
138 * MooseX::Storage::Engine
139 - added the Bool type and fixed a few bugs
140 that it exposed (thanks to Sartak)
141 - added tests for this
142
a7f358fb 1430.05 Sun. July 15. 2007
144 * MooseX::Storage::Base::WithChecksum
145 - Fixed minor issue where the WithChecksum would
146 choke with a bad checksum due to odd Data::Dumper
147 output.
148
149 * t/
150 - forced JSON::Any in the basic JSON tests to use
151 JSON.pm since this is what Test::JSON uses and
152 subtle (and annoying) issues can arise.
153
8cd124d3 1540.04 Tues. July 3, 2007
021c860a 155 * MooseX::Storage::Util
156 - made this more robust when it tries
157 to use YAML and JSON loaders and fails
158 to find one
159 - fixed tests to reflect this
160
b04cbd47 1610.03 Wed. June 27, 2007
69b45b7d 162 * MooseX::Storage::Util
163 - this is a collection of useful tools
164 for working with MooseX::Storage data
165 - added docs and test
166
167 * t/
168 - added test for a custom type handler
bc0c5bf9 169 - fixed checksum test to skip if Digest::SHA1
170 (our default) is not available
1c6ac775 171
c86a46cc 1720.02 Fri. June 8, 2007
c4a322ec 173 * MooseX::Storage::Base::WithChecksum
174 - added a simple base role which makes a checksum of
175 the data structure before packing, and checks the
176 checksum before unpacking.
177 - added tests for this
178
45d9a73c 179 * MooseX::Storage::Engine
180 - better error reporting when cycles are found
c1830046 181 - class names are now stored as the full identifier
182 (<class>-<version>-<authority>) and are checked
183 when they are expanded.
184 - added docs and tests for this
45d9a73c 185
06a66732 186 * MooseX::Storage::Engine::IO::(AtomicFile, File)
187 - added checks to make sure the file gets opened correctly
188 and dies if it does not.
189
7b428d1f 1900.01 Mon. April 30, 2007
191 This was Chris's idea originally (blame him), and
192 we expanded on it to create what you see here :)
e59193fb 193