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