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