Add changes.
[gitmo/MooseX-Storage.git] / Changes
1 Revision history for MooseX-Storage
2
3 0.25
4   * Add support for Union types (bumps Moose dep to 0.99)
5
6 0.24
7   * Add additional YAML implementation tests.
8   * Switch from using Best to YAML::Any.
9   * Remove Test::YAML::Valid.
10
11 0.23
12   * Revert whitespace change in tests which breaks the tests if you
13     have Test::YAML::Valid installed.
14
15 0.22
16   * Fix warnings when types do not have a parent type.
17   * allow the use of roles outside MooseX::Storage:: (rjbs)
18   * allow the use of parameterized roles (rjbs)
19
20 0.21
21   * Fix inconsistent dist versions with Perl::Version
22
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
40 0.18
41    * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
42    * Added support for Maybe[...] constraints fixing RT#43165 (plu)
43
44 0.17
45    * Change MooseX::Storage::Engine to use get_all_attributes,
46      rather than the deprecated compute_all_applicable_attributes (t0m)
47
48 0.16
49    * Don't fail tests when Best is unavailable (t0m)
50
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
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
63     * Don't fail tests when YAML is unavailable
64
65     * Use temporary files in test suite, instead of cwd
66
67 0.13 Sat. May 24, 2008
68     * MooseX::Storage::Engine
69       - added find_type_handler_for($name) method 
70         to make finding type handlers easier
71       - improved error messages
72
73     ~ removed Build.PL since Module::Install
74       no longer supports it
75
76 0.12 Fri. March 14, 2008
77
78     - added build_requires for Test::Deep (awwaiid)
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     
88     * MooseX::Storage::Engine
89       MooseX::Storage::Meta::Attribute::DoNotSerialize
90       MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
91       - adding meta-attribute-trait support for 
92         DoNotSerialize
93         - added tests for this
94
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
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
118 0.09 Tue. Oct. 23, 2007
119     * MooseX::Storage::Util
120       - added support to deal with utf8 strings correctly
121       
122     * MooseX::Storage::Engine::File
123       MooseX::Storage::Engine::AtomicFile
124       - fixed utf8 handling when storing string
125         - added tests for this
126      
127     * t/
128       - added an extra test for the utf8 handling
129     
130     * Change build system to Module::Install
131
132 0.08 Wed. Oct. 10, 2007
133     * MooseX::Storage::Format::JSON
134       - added support to deal with utf8 strings correctly
135
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
144
145     * t/
146       - fixed tests in 030_with_checksum.t
147         (thanks to sartak)
148
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
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
166 0.04 Tues. July 3, 2007
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
173 0.03 Wed. June 27, 2007
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
181         - fixed checksum test to skip if Digest::SHA1 
182           (our default) is not available
183
184 0.02 Fri. June 8, 2007
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
191     * MooseX::Storage::Engine
192       - better error reporting when cycles are found
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
197
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
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 :)
205