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