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