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