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