Bump versions
[gitmo/MooseX-Storage.git] / Changes
1 Revision history for MooseX-Storage
2
3 0.22
4   * Fix warnings when types do not have a parent type.
5   * allow the use of roles outside MooseX::Storage:: (rjbs)
6   * allow the use of parameterized roles (rjbs)
7
8 0.21
9   * Fix inconsistent dist versions with Perl::Version
10
11 0.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
25 0.19
26   * Skip pod tests when not in author mode
27
28 0.18
29    * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
30    * Added support for Maybe[...] constraints fixing RT#43165 (plu)
31
32 0.17
33    * Change MooseX::Storage::Engine to use get_all_attributes,
34      rather than the deprecated compute_all_applicable_attributes (t0m)
35
36 0.16
37    * Don't fail tests when Best is unavailable (t0m)
38
39 0.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
45 0.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
51     * Don't fail tests when YAML is unavailable
52
53     * Use temporary files in test suite, instead of cwd
54
55 0.13 Sat. May 24, 2008
56     * MooseX::Storage::Engine
57       - added find_type_handler_for($name) method 
58         to make finding type handlers easier
59       - improved error messages
60
61     ~ removed Build.PL since Module::Install
62       no longer supports it
63
64 0.12 Fri. March 14, 2008
65
66     - added build_requires for Test::Deep (awwaiid)
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     
76     * MooseX::Storage::Engine
77       MooseX::Storage::Meta::Attribute::DoNotSerialize
78       MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
79       - adding meta-attribute-trait support for 
80         DoNotSerialize
81         - added tests for this
82
83 0.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
97 0.10 Thurs. Jan. 10, 2008
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
106 0.09 Tue. Oct. 23, 2007
107     * MooseX::Storage::Util
108       - added support to deal with utf8 strings correctly
109       
110     * MooseX::Storage::Engine::File
111       MooseX::Storage::Engine::AtomicFile
112       - fixed utf8 handling when storing string
113         - added tests for this
114      
115     * t/
116       - added an extra test for the utf8 handling
117     
118     * Change build system to Module::Install
119
120 0.08 Wed. Oct. 10, 2007
121     * MooseX::Storage::Format::JSON
122       - added support to deal with utf8 strings correctly
123
124 0.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
132
133     * t/
134       - fixed tests in 030_with_checksum.t
135         (thanks to sartak)
136
137 0.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
143 0.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
154 0.04 Tues. July 3, 2007
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
161 0.03 Wed. June 27, 2007
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
169         - fixed checksum test to skip if Digest::SHA1 
170           (our default) is not available
171
172 0.02 Fri. June 8, 2007
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
179     * MooseX::Storage::Engine
180       - better error reporting when cycles are found
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
185
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
190 0.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 :)
193