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