Releases: tus/tus-java-client
Releases · tus/tus-java-client
0.3.2-pre1
This is a prerelease attempting to build the artefacts using OpenJDK 6. Use with caution!
0.3.1
This small release only contains one patch will cause a new upload
to be automatically be created when using the TusClient#resumeOrCreateUpload
method and if the original upload cannot be found anymore since the tus server
sends back the 404 Not Found
status code (see #3).
0.3.0
This minor release contains some pretty neat features mostly focusing on a better uploading experience:
- Added
TusExecutor
for automatic retries and resumes
- Added
@NotNull
and @Nullable
annotations for some methods
- Added
TusClient#setHeaders
for custom headers in requests
- Added filename into metadata by default
- Added
Expect: 100-continue
header for faster error handling
0.2.1
- Test response header's values for not being null before accessing their length to prevent NullPointerExceptions.
0.2.0
This minor release adds the TusUploader#setChunkSize()
and
TusUploader#uploadChunk()
methods while deprecating the original
TusUploader#uploadChunk(int)
method in order to reduce memory
allocations by resuing internal buffers.
0.1.4
- Add Content-Type header to
PATCH
requests