Skip to content

v7.0.0

Choose a tag to compare

@UniquePanda UniquePanda released this 27 Mar 12:43
· 2 commits to main since this release
2c6575a

[7.0.0]

BREAKING

  • A file that encountered an error doesn't return 1 for its progress anymore. Instead it will return the progress at which it stopped uploading.
  • If a chunk encountered an error in the upload, it is now automatically retried in the final check.
    • Instead of reacting to chunkError or fileError events to manually retry such chunks, you should wait for the failed event.
    • The failed event indicates that Resumable couldn't upload some files, even in the final check. After that you might instruct the user to retry the upload or try to perform your own retries.

Added

  • Add debug request parameters (#51)
  • A failed event is now fired when Resumable is finished but some files couldn't be uploaded (#52)
  • Add chunkStuckTimeout option (#53)

Changed

  • Retry errored chunks in final check (#52)