forked from archiecobbs/s3backer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES
162 lines (119 loc) · 7 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
Version 1.4.1 released May 4, 2015
- Fix use-after-free bug configuring base URL (github issue #44)
Version 1.4.0 released April 17, 2015
- Added support for authentication version 4 (issue #51)
- Added support for credentials via IAM role from EC2 meta-data (issue #48)
- Fixed bug where `--erase' did not clear the mounted flag
- Moved from Google project hosting to GitHub
- Fixed compile problem on FreeBSD
Version 1.3.7 (r496) released 18 July 2013
- Add `--keyLength' for overriding generated encryption key length
Version 1.3.6 (r493) released 16 July 2013
- Fix use of MAX_HOST_NAME in http_io.c (issue #42)
- Fix encryption key generation bug (on some systems)
Version 1.3.5 (r485) released 29 May 2013
- Check for duplicate mount at startup (issue #10)
- Remove obsolete backward-compatibility block size check
Version 1.3.4 (r476) released 2 Apr 2013
- Support FUSE fallocate() call to zero unused blocks
Version 1.3.3 (r463) released 7 Apr 2012
- Fix bug in validation of --baseURL parameter (issue #34)
- Accept 404 Not Found as a valid response to a DELETE (issue #35)
- Added a fix for building on Mac OS X (issue #32)
Version 1.3.2 (r451) released 14 May 2011
- Added `--directIO' flag to disable kernel caching of the backed file.
- Fixed bug where the stats file was not up to date (issue #26).
- Fixed bug with `--blockCacheMaxDirty' not working (issue #25).
- Added automatic block cache disk file resizing (issue #23).
- Added `--maxUploadSpeed' and `--maxDownloadSpeed' flags.
- Added `-rrs' flag to support Reduced Redundancy Storage.
- Fixed missing warning for `--baseURL' when missing trailing slash.
Version 1.3.1 (r413) released 19 Oct 2009
- Added `--blockCacheMaxDirty' flag.
- Fixed cURL handle leak when cancelling in-progress writes.
- Updated Mac OS X build instructions and added Snow Leopard support.
Version 1.3.0 (r392) released 27 Sep 2009
- Added support for local cache files that can persist across restarts.
- Added built-in support for encryption and authentication.
- In-progress writes are now cancelled when a duplicate write occurs.
- Changed default for `--blockCacheWriteDelay' from zero to 250ms.
- Fix obscure and unlikely deadlock bug in ec_protect.c.
- Allow configurable compression level via --compress=LEVEL.
- Fix bug that caused spurious "impossible expected MD5" log messages.
Version 1.2.3 (r333) released 15 May 2009
- Added `--vhost' flag for virtual hosted style URLs in all requests.
- Don't send LOG_DEBUG messages to syslog unless --debug flag given.
- Fix race condition when generating HTTP Date: headers.
- Allow command line flags to be specified in /etc/fstab.
Version 1.2.2 (r316) released 20 Dec 2008
- Added `--compress' flag enabling compression of file blocks.
Note: compressed blocks are not compatible with versions < 1.2.2.
- Disable the MD5 cache when the `--readOnly' flag is given.
- Make `--md5CacheTime=0' really mean `infinite' as promised in man page.
- Added `--debug-http' flag for debugging HTTP headers.
- Don't let block and MD5 caches be configured larger than necessary.
- Fixed a few minor issues with statistics reporting.
Version 1.2.1 (r300) released 23 Oct 2008
- Added `--erase' and `--quiet' command line flags.
- Added `--blockCacheSync' command line flag.
- Fixed extra copying slowdown when using large block sizes (issue #5).
- Eliminate extra copy of blocks when written by block_cache worker threads.
- Fixed bug in EC layer where dirty data might not be flushed at shutdown.
- Fixed bug where 'http' was shown instead of 'https' in mount(8) output
when the --ssl flag was given.
Version 1.2.0 (r248) released 12 Sep 2008
- Use new custom hash table implementation; this removes glib dependency.
- Replaced `--assumeEmpty' flag with safer and more useful `--listBlocks'.
- Fixed bug where the zero block optimization got disabled when the
MD5 cache was disabled.
- Supply `-o allow_other' option by default, since default mode is 0600.
- Fixed bug where cp(1)'ing the backed file gave `Illegal seek' error.
- Use FUSE version 25 API so code builds on older O/S distributions.
Version 1.1.1 (r202) released 5 Aug 2008
- Added `--ssl' as an alias for `--baseURL https://s3.amazonaws.com/'.
- Added `--insecure' and `--cacert' flags to configure cURL SSL checks.
- Implemented `--blockCacheWriteDelay' and `--blockCacheTimeout' flags.
- Implemented read-ahead using `--readAhead' and `--readAheadTrigger' flags.
- Set FUSE max_readahead option to zero by default since we do it too now.
- Added new `--test' flag which turns on local test mode.
- Display the URL, bucket, and prefix in the output of mount(8).
- Fixed bug where an error during auto-detection would cause a segfault.
- Fixed bug where read errors from the underlying store were being ignored
by the block cache layer.
Version 1.1.0 (r150) released 26 July 2008
- Added a block cache with parallel writes which vastly improves performance.
- Added a new `stats' file to the filesystem containing various statistics.
- Added `--noAutoDetect' flag to disable auto-detection at startup.
- Fixed a few small race conditions and memory leaks.
- Return zeroes for unwritten blocks with `assumeEmpty'.
Version 1.0.5 (r111) released 15 July 2008
- Avoid reuse of CURL instance after receiving any HTTP error (issue #3)
- On MacOS, prevent kernel timeouts prior to our own timeout (issue #2)
- Replaced `--connectTimeout' and `--ioTimeout' with `--timeout' because
CURL's I/O timeout includes in it the connection time as well.
Version 1.0.4 (r82) released 9 July 2008
- Retry on all HTTP error codes, not just 500 or greater. Tests show that
a valid request can return a 4xx response due to network issues.
- Added `--fileMode' and `--readOnly' flags.
- Added `--assumeEmpty' flag.
- Support 'E' for 'exabytes'.
- Port to Mac OS (issue #1)
Version 1.0.3 (r39) released 30 June 2008
- Implement exponential backoff: replace ``--maxRetry'' and ``--retryPause''
with ``--initialRetryPause'' and ``--maxRetryPause''.
- Fix `--accessType' flag which was not being properly handled.
- Improvements to the man page.
Version 1.0.2 (r25) released 20 June 2008
- Fix bug in setting User-Agent HTTP header.
- Fix glitch in man page.
Version 1.0.1 (r18) released 20 June 2008
- Store filesystem size in meta-data associated with the first block and
use it to auto-detect filesystem block and file sizes if not specified.
As a result, `--size' flag is now optional.
- Log a warning and zero remaining bytes when we encounter a short read.
- Add User-Agent HTTP header to all HTTP requests.
- Include SVN revision in version string.
- Don't log every HTTP operation unless `-d' is passed.
- Added `--force' flag.
Version 1.0.0 released 19 June 2008
- Initial release