Releases: tus/tusd
Releases · tus/tusd
0.7.0
This minor release contains some bugfixes but - most importantly - also officially introduces the hook system:
- Improve test coverage and restructure nested tests
- Use platform-independent paths inside file storage
- Fix negative connection count metric
- Make S3 endpoint configurable using flag
- Document and release hook system
- Add UploadProgress event and post-receive hook
- Allow data stores to set HTTP error codes
- Correct parsing Upload-Concat for final uploads
0.6.0
* Respond with the correct 200 OK code for HEAD requests * Add support for Creation With Upload extension * Catch errors from non-existing hook files when executing * Move to gevendor(1) for managing dependencies * Add proper, formatted logging * Handle errors from unlocking filelocks properly * Use Go1.7 for cross compiling release binaries
0.5.2
0.5.1
This patch release contains a small fix a regression introduced in the last
release. The build system was not able to inject the correct version number,
build commit and build date into the binary which caused the tusd -version
command to not output useful information. With this patch this issue is closed.
0.5.0
0.4.0
0.3.0
The third minor release of tusd, the official reference implementation for tus, brings minor feature additions and patches with it:
- Do not pass empty chunk for finished uploads to data store
- Suggest original filename if available when downloading uploads
- Use correct response code for CORS preflight requests
- Added option to disable timeouts (#46)
0.2.0
This is the second minor release of tusd and brings some pretty neat features along with it:
- Added StoreComposer to enable simpler composing of complex store setup
- Added the post-finish and post-terminate hook (experimental)
- Added a greeting for request at the root path
- Improved README and documentation to match latest code
- Fixed data races in MemoryLocker using mutex
- Fixed description of -max-size flag
- Fixed missing ID for S3Store.GetInfo()
0.1.2
0.1.1: Expose additional interfaces in LimitedStore
Previously if a DataStore would be embedded as a TerminaterDataStore inside a LimitedStore. This makes additional interfaces, such as GetReaderDataStore, inaccessible since we are not able to cast a LimitedStore to GetReaderDataStore. The solution was to manually expose the specific methods although this is definitly not the nicest solution.