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