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