MogileFS::Pool#use always returns nil
[ruby-mogilefs-client.git] / History.txt
blob3866a1a49c21a39f73651cc5db73b56b33c1a1a3
1 = 2.0.0
3 * use a set of standard exceptions based on MogileFS::Error,
4   this is an incompatible API change (hence the 2.0.0 version number).
5 * remove NFS support since it's gone in MogileFS 2.x and NFS is horrible
6 * mog timeouts and retries increased
7 * more consistent handling of bad sockets, all sockets used internally
8   are now explicitly non-blocking and IO.select is used for timeouts
9   instead of using threads behind our backs
10 * remove open-uri and net/http dependencies, they were bad with large files
11 * add paths_size() method, allowing single mogilefsd call to get size and paths
12 * add read-only MogileFS::Mysql driver, allowing mogilefsd to be bypassed
13 * use TCP_NODELAY when available on sockets that require low latency
14 * use TCP_CORK on bulk transfers to improve bandwidth usage
15 * better HTTP error handling
16 * verify_uris method in new MogileFS::Network module which allows
17   async verification of several URIs at once on the client side.
18 * handle multiple device failover correctly on HTTP uploads
19 * initial big_file read support (should be mogtool(1)-compatible)
20 * unit tests can be run in parallel using GNU Make, 3x faster on a Core2 Duo
21 * unit tests modified to use real sockets for easier verification of
22   timeout and error condition handling.
24 = 1.3.1
26 * Fix missing MogileFS::Util include for sysrwloop in MogileFS::MogileFS
28 = 1.3.0
30 * Fixed MogileFS#rename.  Bug #14465 submitted by Justin Dossey.
31 * Removed infinite loop in MogileFS::HTTPFile#store_file.  Patch #13789
32   submitted by  Andy Lo-A-Foe.
33 * Made MogileFS#get_file_data timeout configurable.  Bug #13490 submitted by
34   Andy Lo-A-Foe.
35 * Add MogileFS#size.  Feature Request #14484 submitted by Justin Dossey.
36 * Fix MogileFS#get_file_data to return the data for HTTP mode.  Bug #7133
37   submitted by John Wanko.
38 * New maintainer: Eric Wong
39 * Add `mog' command-line tool as a demo/example
40 * Lower memory consumption with large files
41 * Allow get_file_data to accept a block for large files
42 * Fix each_keys loop termination condition
43 * Apply error handling patch from Matthew Willson.  Bug #15987
44 * Merge large file patch from Andy Lo-A-Foe.  Bug #13764
46 = 1.2.1
48 * Switched to Hoe.
49 * Moved to p4.
50 * Fixed bug #7273 in HTTP mode of client where data would not get
51   returned.  Submitted by Matthew Willson.
53 = 1.2.0
55 * Changes lost to time.