Skip to content

Releases: tus/tus-java-client

0.3.2

13 Dec 22:49
4526de0

Choose a tag to compare

This release changes the default value for the maximum request payload size to a more sensible 1GiB, which should result in better upload performance for most applications.

0.3.2-pre1

14 Mar 10:06

Choose a tag to compare

0.3.2-pre1 Pre-release
Pre-release

This is a prerelease attempting to build the artefacts using OpenJDK 6. Use with caution!

0.3.1

02 Jun 20:04

Choose a tag to compare

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

30 May 18:35

Choose a tag to compare

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

19 Apr 07:09

Choose a tag to compare

  • Test response header's values for not being null before accessing their length to prevent NullPointerExceptions.

0.2.0

24 Jan 17:01

Choose a tag to compare

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

27 Dec 15:48

Choose a tag to compare

  • Add Content-Type header to PATCH requests