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