Releases: muxinc/upchunk
Releases · muxinc/upchunk
v3.5.0
What's Changed
- fix: handle edge case for resuming chunk upload case where multiple chunks have previously been uploaded. by @cjpillsbury in #141
- feat: dispatch error when endpoint promise fails to provide a string by @decepulis in #151
New Contributors
- @decepulis made their first contribution in #151
Full Changelog: v3.4.0...v3.5.0
v3.4.0
- Feature: Add
useLargeFileWorkaroundoption to fallback to reading entire file into memory for cases whereReadableStreamfails due to file size.
v3.3.3
- Fix: Clean up some error state edge cases.
- Fix: Re-notify progress for failed chunk uploads
- Fix: Clean up offline state cases and expose offline as a readonly property
- Fix: Account for error case and notify error for failures on
ReadableStream::getReader()read()(e.g. https://bugs.webkit.org/show_bug.cgi?id=272600)
v3.3.2
What's Changed
- Add response objects into failure events details. by @mr-sanders in #129
New Contributors
- @mr-sanders made their first contribution in #129
v3.3.1
UMD dist bundles
- Replaces a simple
iifebundle with aumd-based equivalent in order to have a better support matrix for build tools and related that don't yet respect things likeexportspackage.json.
Change createUpload export to work around build issues
UpChunk.createUpload static method
- Feat: Adds
createUploadas a static method to theUpChunkclass definition for easier import usage and JS class conventions.
Support custom headers
This release adds the ability to add extra custom headers via the headers config property, either as a static set of a headers or a function that (synchronously or asynchronously) yields the headers.
Bug Fix for Min/Max Chunksize
Bug was introduced that improperly applied min/max chunk size. Relevant for dynamic chunk sizing.