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