Fix issue I'm seeing in MX::Storage when using it in multiple roles which I combine.
[gitmo/MooseX-Storage.git] / Changes
CommitLineData
e9739624 1Revision history for MooseX-Storage
e59193fb 2
f9143059 30.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
df7bb436 90.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
cfd008fa 15 * Don't fail tests when YAML is unavailable
16
17 * Use temporary files in test suite, instead of cwd
18
6d0abbe8 190.13 Sat. May 24, 2008
3defafb9 20 * MooseX::Storage::Engine
21 - added find_type_handler_for($name) method
22 to make finding type handlers easier
23 - improved error messages
24
6d0abbe8 25 ~ removed Build.PL since Module::Install
26 no longer supports it
27
4fa64e86 280.12 Fri. March 14, 2008
eaa26357 29
30 - added build_requires for Test::Deep (awwaiid)
4fa64e86 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
04990d7a 40 * MooseX::Storage::Engine
41 MooseX::Storage::Meta::Attribute::DoNotSerialize
4fa64e86 42 MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize
43 - adding meta-attribute-trait support for
44 DoNotSerialize
45 - added tests for this
eaa26357 46
cfee09ad 470.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
610.10 Thurs. Jan. 10, 2008
1f3074ea 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
399f3500 700.09 Tue. Oct. 23, 2007
6f491fae 71 * MooseX::Storage::Util
72 - added support to deal with utf8 strings correctly
6237d568 73
74 * MooseX::Storage::Engine::File
75 MooseX::Storage::Engine::AtomicFile
76 - fixed utf8 handling when storing string
77 - added tests for this
9740e0b7 78
79 * t/
9237d6b4 80 - added an extra test for the utf8 handling
399f3500 81
82 * Change build system to Module::Install
6f491fae 83
840.08 Wed. Oct. 10, 2007
6c9f2c85 85 * MooseX::Storage::Format::JSON
86 - added support to deal with utf8 strings correctly
87
124c2ba5 880.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
4747c531 96
97 * t/
98 - fixed tests in 030_with_checksum.t
99 (thanks to sartak)
100
917411c2 1010.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
a7f358fb 1070.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
8cd124d3 1180.04 Tues. July 3, 2007
021c860a 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
b04cbd47 1250.03 Wed. June 27, 2007
69b45b7d 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
bc0c5bf9 133 - fixed checksum test to skip if Digest::SHA1
134 (our default) is not available
1c6ac775 135
c86a46cc 1360.02 Fri. June 8, 2007
c4a322ec 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
45d9a73c 143 * MooseX::Storage::Engine
144 - better error reporting when cycles are found
c1830046 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
45d9a73c 149
06a66732 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
7b428d1f 1540.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 :)
e59193fb 157