Skip to content

Releases: muxinc/upchunk

v3.4.0

25 Apr 15:43
6eb2a1b
Compare
Choose a tag to compare
  • Feature: Add useLargeFileWorkaround option to fallback to reading entire file into memory for cases where ReadableStream fails due to file size.

v3.3.3

18 Apr 21:40
cb396df
Compare
Choose a tag to compare
  • 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

28 Jan 22:43
c2fff83
Compare
Choose a tag to compare

What's Changed

New Contributors

v3.3.1

17 Jan 20:49
3a05942
Compare
Choose a tag to compare

Bug Fixes

  • Use Range response header to ensure all bytes were received. by @skidder in #125

New Contributors

Full Changelog: v3.3.0...v3.3.1

UMD dist bundles

15 Nov 23:15
c9860d6
Compare
Choose a tag to compare
  • Replaces a simple iife bundle with a umd-based equivalent in order to have a better support matrix for build tools and related that don't yet respect things like exports package.json.

Change createUpload export to work around build issues

15 Nov 19:25
463ce3b
Compare
Choose a tag to compare
  • Includes changes from @mmvsk #115
  • Suspect this will either fully or partially solve the issues brought up in #88

UpChunk.createUpload static method

17 May 17:23
73eec05
Compare
Choose a tag to compare
  • Feat: Adds createUpload as a static method to the UpChunk class definition for easier import usage and JS class conventions.

Support custom headers

27 Feb 19:26
abe8b82
Compare
Choose a tag to compare

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

26 Jan 20:21
731665a
Compare
Choose a tag to compare

Bug was introduced that improperly applied min/max chunk size. Relevant for dynamic chunk sizing.

TypeScript Compatibility Fixes

20 Jan 14:35
26a9a1f
Compare
Choose a tag to compare

Fix: Refactored to use some older TypeScript syntax to ensure greater backwards compatibility.