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