From 472cc9352d1f08e7597d15e633c2bbfe1cdb844b Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 8 Nov 2023 23:42:11 +0000
Subject: [PATCH] Release: uppy@3.19.0 (#4781)
| Package | Version | Package | Version |
| ---------------------- | ------- | ---------------------- | ------- |
| @uppy/aws-s3 | 3.5.0 | @uppy/provider-views | 3.7.0 |
| @uppy/aws-s3-multipart | 3.9.0 | @uppy/react | 3.2.0 |
| @uppy/companion | 4.11.0 | @uppy/transloadit | 3.4.0 |
| @uppy/companion-client | 3.6.0 | @uppy/tus | 3.4.0 |
| @uppy/core | 3.7.0 | @uppy/url | 3.4.0 |
| @uppy/dashboard | 3.7.0 | @uppy/utils | 5.6.0 |
| @uppy/image-editor | 2.3.0 | @uppy/xhr-upload | 3.5.0 |
| @uppy/locales | 3.4.0 | uppy | 3.19.0 |
- @uppy/dashboard: Remove uppy-Dashboard-isFixed when uppy.close() is invoked (Artur Paikin / #4775)
- @uppy/core,@uppy/dashboard: don't cancel all files when clicking "done" (Mikael Finstad / #4771)
- @uppy/utils: refactor to TS (Antoine du Hamel / #4699)
- @uppy/locales: locales: add ca_ES (ordago / #4772)
- @uppy/companion: Companion+client stability fixes, error handling and retry (Mikael Finstad / #4734)
- @uppy/companion: add getBucket metadata argument (Mikael Finstad / #4770)
- @uppy/core: simplify types with class generic (JokcyLou / #4761)
- @uppy/image-editor: More image editor improvements (Evgenia Karunus / #4676)
- @uppy/react: add useUppyState (Merlijn Vos / #4711)
---
BUNDLE-README.md | 2 +-
CHANGELOG.md | 26 ++++
README.md | 126 +++++++++---------
examples/aws-nodejs/public/drag.html | 4 +-
examples/aws-nodejs/public/index.html | 4 +-
examples/cdn-example/index.html | 6 +-
.../uppy-with-companion/client/index.html | 4 +-
packages/@uppy/aws-s3-multipart/package.json | 2 +-
packages/@uppy/aws-s3/package.json | 2 +-
packages/@uppy/companion-client/package.json | 2 +-
packages/@uppy/companion/CHANGELOG.md | 8 ++
packages/@uppy/companion/package.json | 2 +-
packages/@uppy/core/CHANGELOG.md | 8 ++
packages/@uppy/core/package.json | 2 +-
packages/@uppy/dashboard/CHANGELOG.md | 8 ++
packages/@uppy/dashboard/package.json | 2 +-
packages/@uppy/image-editor/CHANGELOG.md | 7 +
packages/@uppy/image-editor/package.json | 2 +-
packages/@uppy/locales/CHANGELOG.md | 7 +
packages/@uppy/locales/package.json | 2 +-
packages/@uppy/provider-views/package.json | 2 +-
packages/@uppy/react/CHANGELOG.md | 7 +
packages/@uppy/react/package.json | 2 +-
packages/@uppy/transloadit/package.json | 2 +-
packages/@uppy/tus/package.json | 2 +-
packages/@uppy/url/package.json | 2 +-
packages/@uppy/utils/CHANGELOG.md | 7 +
packages/@uppy/utils/package.json | 2 +-
packages/@uppy/xhr-upload/package.json | 2 +-
packages/uppy/package.json | 2 +-
30 files changed, 167 insertions(+), 89 deletions(-)
diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 5db642a81..d36d0e6fe 100644
--- a/BUNDLE-README.md
+++ b/BUNDLE-README.md
@@ -1,7 +1,7 @@
# Uppy
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can use
-this from a CDN (``) or bundle it with your webapp.
+this from a CDN (``) or bundle it with your webapp.
Note that the recommended way to use Uppy is to install it with yarn/npm and use a
bundler like Webpack so that you can create a smaller custom build with only the
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b2fc3e0b1..40f767d35 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,32 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 3.19.0
+
+Released: 2023-11-08
+
+| Package | Version | Package | Version |
+| ---------------------- | ------- | ---------------------- | ------- |
+| @uppy/aws-s3 | 3.5.0 | @uppy/provider-views | 3.7.0 |
+| @uppy/aws-s3-multipart | 3.9.0 | @uppy/react | 3.2.0 |
+| @uppy/companion | 4.11.0 | @uppy/transloadit | 3.4.0 |
+| @uppy/companion-client | 3.6.0 | @uppy/tus | 3.4.0 |
+| @uppy/core | 3.7.0 | @uppy/url | 3.4.0 |
+| @uppy/dashboard | 3.7.0 | @uppy/utils | 5.6.0 |
+| @uppy/image-editor | 2.3.0 | @uppy/xhr-upload | 3.5.0 |
+| @uppy/locales | 3.4.0 | uppy | 3.19.0 |
+
+- @uppy/dashboard: Remove uppy-Dashboard-isFixed when uppy.close() is invoked (Artur Paikin / #4775)
+- @uppy/core,@uppy/dashboard: don't cancel all files when clicking "done" (Mikael Finstad / #4771)
+- @uppy/utils: refactor to TS (Antoine du Hamel / #4699)
+- @uppy/locales: locales: add ca_ES (ordago / #4772)
+- @uppy/companion: Companion+client stability fixes, error handling and retry (Mikael Finstad / #4734)
+- @uppy/companion: add getBucket metadata argument (Mikael Finstad / #4770)
+- @uppy/core: simplify types with class generic (JokcyLou / #4761)
+- @uppy/image-editor: More image editor improvements (Evgenia Karunus / #4676)
+- @uppy/react: add useUppyState (Merlijn Vos / #4711)
+
+
## 3.18.1
Released: 2023-10-23
diff --git a/README.md b/README.md
index f05054ab0..b51eedd27 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ const uppy = new Uppy()
npm install @uppy/core @uppy/dashboard @uppy/tus
```
-Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.18.1/uppy.min.css), either to your HTML page’s `
` or include in JS, if your bundler of choice supports it.
+Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.19.0/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it.
Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object.
@@ -73,12 +73,12 @@ Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edg
```html
-
+
+
```
## FAQ
@@ -311,9 +311,9 @@ Use Uppy in your project? [Let us know](https://github.com/transloadit/uppy/issu
:---: |:---: |:---: |:---: |:---: |:---: |
[muhammadInam](https://github.com/muhammadInam) |[rettgerst](https://github.com/rettgerst) |[Acconut](https://github.com/Acconut) |[mkabatek](https://github.com/mkabatek) |[jukakoski](https://github.com/jukakoski) |[olemoign](https://github.com/olemoign) |
-[
](https://github.com/ajschmidt8) |[
](https://github.com/superhawk610) |[
](https://github.com/abannach) |[
](https://github.com/adamelmore) |[
](https://github.com/ajh-sr) |[
](https://github.com/adamvigneault) |
+[
](https://github.com/ajschmidt8) |[
](https://github.com/superhawk610) |[
](https://github.com/abannach) |[
](https://github.com/adamdottv) |[
](https://github.com/ajh-sr) |[
](https://github.com/adamvigneault) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[ajschmidt8](https://github.com/ajschmidt8) |[superhawk610](https://github.com/superhawk610) |[abannach](https://github.com/abannach) |[adamelmore](https://github.com/adamelmore) |[ajh-sr](https://github.com/ajh-sr) |[adamvigneault](https://github.com/adamvigneault) |
+[ajschmidt8](https://github.com/ajschmidt8) |[superhawk610](https://github.com/superhawk610) |[abannach](https://github.com/abannach) |[adamdottv](https://github.com/adamdottv) |[ajh-sr](https://github.com/ajh-sr) |[adamvigneault](https://github.com/adamvigneault) |
[
](https://github.com/Adrrei) |[
](https://github.com/adritasharma) |[
](https://github.com/ahmadissa) |[
](https://github.com/asmt3) |[
](https://github.com/alexnj) |[
](https://github.com/aalepis) |
:---: |:---: |:---: |:---: |:---: |:---: |
@@ -379,117 +379,117 @@ Use Uppy in your project? [Let us know](https://github.com/transloadit/uppy/issu
:---: |:---: |:---: |:---: |:---: |:---: |
[janwilts](https://github.com/janwilts) |[vith](https://github.com/vith) |[jessica-coursera](https://github.com/jessica-coursera) |[Jmales](https://github.com/Jmales) |[theJoeBiz](https://github.com/theJoeBiz) |[profsmallpine](https://github.com/profsmallpine) |
-[
](https://github.com/chromacoma) |[
](https://github.com/jsanchez034) |[
](https://github.com/jonathanarbely) |[
](https://github.com/jderrough) |[
](https://github.com/jorgeepc) |[
](https://github.com/jszobody) |
+[
](https://github.com/chromacoma) |[
](https://github.com/Jokcy) |[
](https://github.com/jsanchez034) |[
](https://github.com/jonathanarbely) |[
](https://github.com/jderrough) |[
](https://github.com/jorgeepc) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[chromacoma](https://github.com/chromacoma) |[jsanchez034](https://github.com/jsanchez034) |[jonathanarbely](https://github.com/jonathanarbely) |[jderrough](https://github.com/jderrough) |[jorgeepc](https://github.com/jorgeepc) |[jszobody](https://github.com/jszobody) |
+[chromacoma](https://github.com/chromacoma) |[Jokcy](https://github.com/Jokcy) |[jsanchez034](https://github.com/jsanchez034) |[jonathanarbely](https://github.com/jonathanarbely) |[jderrough](https://github.com/jderrough) |[jorgeepc](https://github.com/jorgeepc) |
-[
](https://github.com/jbelej) |[
](https://github.com/jcalonso) |[
](https://github.com/jmontoyaa) |[
](https://github.com/mellow-fellow) |[
](https://github.com/jvelten) |[
](https://github.com/tykarol) |
+[
](https://github.com/jszobody) |[
](https://github.com/jbelej) |[
](https://github.com/jcalonso) |[
](https://github.com/jmontoyaa) |[
](https://github.com/mellow-fellow) |[
](https://github.com/jvelten) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[jbelej](https://github.com/jbelej) |[jcalonso](https://github.com/jcalonso) |[jmontoyaa](https://github.com/jmontoyaa) |[mellow-fellow](https://github.com/mellow-fellow) |[jvelten](https://github.com/jvelten) |[tykarol](https://github.com/tykarol) |
+[jszobody](https://github.com/jszobody) |[jbelej](https://github.com/jbelej) |[jcalonso](https://github.com/jcalonso) |[jmontoyaa](https://github.com/jmontoyaa) |[mellow-fellow](https://github.com/mellow-fellow) |[jvelten](https://github.com/jvelten) |
-[
](https://github.com/kaspermeinema) |[
](https://github.com/firesharkstudios) |[
](https://github.com/kergekacsa) |[
](https://github.com/kevin-west-10x) |[
](https://github.com/kidonng) |[
](https://github.com/elkebab) |
+[
](https://github.com/tykarol) |[
](https://github.com/kaspermeinema) |[
](https://github.com/firesharkstudios) |[
](https://github.com/kergekacsa) |[
](https://github.com/kevin-west-10x) |[
](https://github.com/kidonng) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[kaspermeinema](https://github.com/kaspermeinema) |[firesharkstudios](https://github.com/firesharkstudios) |[kergekacsa](https://github.com/kergekacsa) |[kevin-west-10x](https://github.com/kevin-west-10x) |[kidonng](https://github.com/kidonng) |[elkebab](https://github.com/elkebab) |
+[tykarol](https://github.com/tykarol) |[kaspermeinema](https://github.com/kaspermeinema) |[firesharkstudios](https://github.com/firesharkstudios) |[kergekacsa](https://github.com/kergekacsa) |[kevin-west-10x](https://github.com/kevin-west-10x) |[kidonng](https://github.com/kidonng) |
-[
](https://github.com/kyleparisi) |[
](https://github.com/labohkip81) |[
](https://github.com/hoangbits) |[
](https://github.com/leaanthony) |[
](https://github.com/larowlan) |[
](https://github.com/dviry) |
+[
](https://github.com/elkebab) |[
](https://github.com/kyleparisi) |[
](https://github.com/labohkip81) |[
](https://github.com/hoangbits) |[
](https://github.com/leaanthony) |[
](https://github.com/larowlan) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[kyleparisi](https://github.com/kyleparisi) |[labohkip81](https://github.com/labohkip81) |[hoangbits](https://github.com/hoangbits) |[leaanthony](https://github.com/leaanthony) |[larowlan](https://github.com/larowlan) |[dviry](https://github.com/dviry) |
+[elkebab](https://github.com/elkebab) |[kyleparisi](https://github.com/kyleparisi) |[labohkip81](https://github.com/labohkip81) |[hoangbits](https://github.com/hoangbits) |[leaanthony](https://github.com/leaanthony) |[larowlan](https://github.com/larowlan) |
-[
](https://github.com/galli-leo) |[
](https://github.com/leods92) |[
](https://github.com/dolphinigle) |[
](https://github.com/louim) |[
](https://github.com/ombr) |[
](https://github.com/lucaperret) |
+[
](https://github.com/dviry) |[
](https://github.com/galli-leo) |[
](https://github.com/leods92) |[
](https://github.com/dolphinigle) |[
](https://github.com/louim) |[
](https://github.com/ombr) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[galli-leo](https://github.com/galli-leo) |[leods92](https://github.com/leods92) |[dolphinigle](https://github.com/dolphinigle) |[louim](https://github.com/louim) |[ombr](https://github.com/ombr) |[lucaperret](https://github.com/lucaperret) |
+[dviry](https://github.com/dviry) |[galli-leo](https://github.com/galli-leo) |[leods92](https://github.com/leods92) |[dolphinigle](https://github.com/dolphinigle) |[louim](https://github.com/louim) |[ombr](https://github.com/ombr) |
-[
](https://github.com/lucax88x) |[
](https://github.com/marc-mabe) |[
](https://github.com/onhate) |[
](https://github.com/mperrando) |[
](https://github.com/marcosthejew) |[
](https://github.com/marcusforsberg) |
+[
](https://github.com/lucaperret) |[
](https://github.com/lucax88x) |[
](https://github.com/marc-mabe) |[
](https://github.com/onhate) |[
](https://github.com/mperrando) |[
](https://github.com/marcosthejew) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[lucax88x](https://github.com/lucax88x) |[marc-mabe](https://github.com/marc-mabe) |[onhate](https://github.com/onhate) |[mperrando](https://github.com/mperrando) |[marcosthejew](https://github.com/marcosthejew) |[marcusforsberg](https://github.com/marcusforsberg) |
+[lucaperret](https://github.com/lucaperret) |[lucax88x](https://github.com/lucax88x) |[marc-mabe](https://github.com/marc-mabe) |[onhate](https://github.com/onhate) |[mperrando](https://github.com/mperrando) |[marcosthejew](https://github.com/marcosthejew) |
-[
](https://github.com/martin-brennan) |[
](https://github.com/masaok) |[
](https://github.com/masumulu28) |[
](https://github.com/mateuscruz) |[
](https://github.com/mattfik) |[
](https://github.com/mjesuele) |
+[
](https://github.com/marcusforsberg) |[
](https://github.com/martin-brennan) |[
](https://github.com/masaok) |[
](https://github.com/masumulu28) |[
](https://github.com/mateuscruz) |[
](https://github.com/mattfik) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[martin-brennan](https://github.com/martin-brennan) |[masaok](https://github.com/masaok) |[masumulu28](https://github.com/masumulu28) |[mateuscruz](https://github.com/mateuscruz) |[mattfik](https://github.com/mattfik) |[mjesuele](https://github.com/mjesuele) |
+[marcusforsberg](https://github.com/marcusforsberg) |[martin-brennan](https://github.com/martin-brennan) |[masaok](https://github.com/masaok) |[masumulu28](https://github.com/masumulu28) |[mateuscruz](https://github.com/mateuscruz) |[mattfik](https://github.com/mattfik) |
-[
](https://github.com/matthewhartstonge) |[
](https://github.com/mauricioribeiro) |[
](https://github.com/hrsh) |[
](https://github.com/mhulet) |[
](https://github.com/mkopinsky) |[
](https://github.com/ken-kuro) |
+[
](https://github.com/mjesuele) |[
](https://github.com/matthewhartstonge) |[
](https://github.com/mauricioribeiro) |[
](https://github.com/hrsh) |[
](https://github.com/mhulet) |[
](https://github.com/mkopinsky) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[matthewhartstonge](https://github.com/matthewhartstonge) |[mauricioribeiro](https://github.com/mauricioribeiro) |[hrsh](https://github.com/hrsh) |[mhulet](https://github.com/mhulet) |[mkopinsky](https://github.com/mkopinsky) |[ken-kuro](https://github.com/ken-kuro) |
+[mjesuele](https://github.com/mjesuele) |[matthewhartstonge](https://github.com/matthewhartstonge) |[mauricioribeiro](https://github.com/mauricioribeiro) |[hrsh](https://github.com/hrsh) |[mhulet](https://github.com/mhulet) |[mkopinsky](https://github.com/mkopinsky) |
-[
](https://github.com/achmiral) |[
](https://github.com/boudra) |[
](https://github.com/mnafees) |[
](https://github.com/shahimclt) |[
](https://github.com/mogzol) |[
](https://github.com/navruzm) |
+[
](https://github.com/ken-kuro) |[
](https://github.com/achmiral) |[
](https://github.com/boudra) |[
](https://github.com/mnafees) |[
](https://github.com/shahimclt) |[
](https://github.com/mogzol) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[achmiral](https://github.com/achmiral) |[boudra](https://github.com/boudra) |[mnafees](https://github.com/mnafees) |[shahimclt](https://github.com/shahimclt) |[mogzol](https://github.com/mogzol) |[navruzm](https://github.com/navruzm) |
+[ken-kuro](https://github.com/ken-kuro) |[achmiral](https://github.com/achmiral) |[boudra](https://github.com/boudra) |[mnafees](https://github.com/mnafees) |[shahimclt](https://github.com/shahimclt) |[mogzol](https://github.com/mogzol) |
-[
](https://github.com/marton-laszlo-attila) |[
](https://github.com/pleasespammelater) |[
](https://github.com/naveed-ahmad) |[
](https://github.com/trungcva10a6tn) |[
](https://github.com/nicojones) |[
](https://github.com/coreprocess) |
+[
](https://github.com/navruzm) |[
](https://github.com/marton-laszlo-attila) |[
](https://github.com/pleasespammelater) |[
](https://github.com/naveed-ahmad) |[
](https://github.com/trungcva10a6tn) |[
](https://github.com/nicojones) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[marton-laszlo-attila](https://github.com/marton-laszlo-attila) |[pleasespammelater](https://github.com/pleasespammelater) |[naveed-ahmad](https://github.com/naveed-ahmad) |[trungcva10a6tn](https://github.com/trungcva10a6tn) |[nicojones](https://github.com/nicojones) |[coreprocess](https://github.com/coreprocess) |
+[navruzm](https://github.com/navruzm) |[marton-laszlo-attila](https://github.com/marton-laszlo-attila) |[pleasespammelater](https://github.com/pleasespammelater) |[naveed-ahmad](https://github.com/naveed-ahmad) |[trungcva10a6tn](https://github.com/trungcva10a6tn) |[nicojones](https://github.com/nicojones) |
-[
](https://github.com/nil1511) |[
](https://github.com/leftdevel) |[
](https://github.com/Ozodbek1405) |[
](https://github.com/cryptic022) |[
](https://github.com/ParsaArvanehPA) |[
](https://github.com/pascalwengerter) |
+[
](https://github.com/coreprocess) |[
](https://github.com/nil1511) |[
](https://github.com/leftdevel) |[
](https://github.com/Ozodbek1405) |[
](https://github.com/cryptic022) |[
](https://github.com/ParsaArvanehPA) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[nil1511](https://github.com/nil1511) |[leftdevel](https://github.com/leftdevel) |[Ozodbek1405](https://github.com/Ozodbek1405) |[cryptic022](https://github.com/cryptic022) |[ParsaArvanehPA](https://github.com/ParsaArvanehPA) |[pascalwengerter](https://github.com/pascalwengerter) |
+[coreprocess](https://github.com/coreprocess) |[nil1511](https://github.com/nil1511) |[leftdevel](https://github.com/leftdevel) |[Ozodbek1405](https://github.com/Ozodbek1405) |[cryptic022](https://github.com/cryptic022) |[ParsaArvanehPA](https://github.com/ParsaArvanehPA) |
-[
](https://github.com/patricklindsay) |[
](https://github.com/plneto) |[
](https://github.com/pedrofs) |[
](https://github.com/pmusaraj) |[
](https://github.com/phillipalexander) |[
](https://github.com/ppadmavilasom) |
+[
](https://github.com/pascalwengerter) |[
](https://github.com/patricklindsay) |[
](https://github.com/plneto) |[
](https://github.com/pedrofs) |[
](https://github.com/pmusaraj) |[
](https://github.com/phillipalexander) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[patricklindsay](https://github.com/patricklindsay) |[plneto](https://github.com/plneto) |[pedrofs](https://github.com/pedrofs) |[pmusaraj](https://github.com/pmusaraj) |[phillipalexander](https://github.com/phillipalexander) |[ppadmavilasom](https://github.com/ppadmavilasom) |
+[pascalwengerter](https://github.com/pascalwengerter) |[patricklindsay](https://github.com/patricklindsay) |[plneto](https://github.com/plneto) |[pedrofs](https://github.com/pedrofs) |[pmusaraj](https://github.com/pmusaraj) |[phillipalexander](https://github.com/phillipalexander) |
-[
](https://github.com/Pzoco) |[
](https://github.com/eman8519) |[
](https://github.com/luarmr) |[
](https://github.com/raulibanez) |[
](https://github.com/refo) |[
](https://github.com/SxDx) |
+[
](https://github.com/ppadmavilasom) |[
](https://github.com/Pzoco) |[
](https://github.com/eman8519) |[
](https://github.com/luarmr) |[
](https://github.com/raulibanez) |[
](https://github.com/refo) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[Pzoco](https://github.com/Pzoco) |[eman8519](https://github.com/eman8519) |[luarmr](https://github.com/luarmr) |[raulibanez](https://github.com/raulibanez) |[refo](https://github.com/refo) |[SxDx](https://github.com/SxDx) |
+[ppadmavilasom](https://github.com/ppadmavilasom) |[Pzoco](https://github.com/Pzoco) |[eman8519](https://github.com/eman8519) |[luarmr](https://github.com/luarmr) |[raulibanez](https://github.com/raulibanez) |[refo](https://github.com/refo) |
-[
](https://github.com/robwilson1) |[
](https://github.com/scherroman) |[
](https://github.com/rossng) |[
](https://github.com/rart) |[
](https://github.com/GNURub) |[
](https://github.com/fortunto2) |
+[
](https://github.com/SxDx) |[
](https://github.com/robwilson1) |[
](https://github.com/scherroman) |[
](https://github.com/rossng) |[
](https://github.com/rart) |[
](https://github.com/GNURub) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[robwilson1](https://github.com/robwilson1) |[scherroman](https://github.com/scherroman) |[rossng](https://github.com/rossng) |[rart](https://github.com/rart) |[GNURub](https://github.com/GNURub) |[fortunto2](https://github.com/fortunto2) |
+[SxDx](https://github.com/SxDx) |[robwilson1](https://github.com/robwilson1) |[scherroman](https://github.com/scherroman) |[rossng](https://github.com/rossng) |[rart](https://github.com/rart) |[GNURub](https://github.com/GNURub) |
-[
](https://github.com/samuelcolburn) |[
](https://github.com/sdebacker) |[
](https://github.com/sebasegovia01) |[
](https://github.com/sergei-zelinsky) |[
](https://github.com/szh) |[
](https://github.com/SpazzMarticus) |
+[
](https://github.com/fortunto2) |[
](https://github.com/samuelcolburn) |[
](https://github.com/sdebacker) |[
](https://github.com/sebasegovia01) |[
](https://github.com/sergei-zelinsky) |[
](https://github.com/szh) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[samuelcolburn](https://github.com/samuelcolburn) |[sdebacker](https://github.com/sdebacker) |[sebasegovia01](https://github.com/sebasegovia01) |[sergei-zelinsky](https://github.com/sergei-zelinsky) |[szh](https://github.com/szh) |[SpazzMarticus](https://github.com/SpazzMarticus) |
+[fortunto2](https://github.com/fortunto2) |[samuelcolburn](https://github.com/samuelcolburn) |[sdebacker](https://github.com/sdebacker) |[sebasegovia01](https://github.com/sebasegovia01) |[sergei-zelinsky](https://github.com/sergei-zelinsky) |[szh](https://github.com/szh) |
-[
](https://github.com/waptik) |[
](https://github.com/quigebo) |[
](https://github.com/amaitu) |[
](https://github.com/steverob) |[
](https://github.com/sjauld) |[
](https://github.com/strayer) |
+[
](https://github.com/SpazzMarticus) |[
](https://github.com/waptik) |[
](https://github.com/quigebo) |[
](https://github.com/amaitu) |[
](https://github.com/steverob) |[
](https://github.com/sjauld) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[waptik](https://github.com/waptik) |[quigebo](https://github.com/quigebo) |[amaitu](https://github.com/amaitu) |[steverob](https://github.com/steverob) |[sjauld](https://github.com/sjauld) |[strayer](https://github.com/strayer) |
+[SpazzMarticus](https://github.com/SpazzMarticus) |[waptik](https://github.com/waptik) |[quigebo](https://github.com/quigebo) |[amaitu](https://github.com/amaitu) |[steverob](https://github.com/steverob) |[sjauld](https://github.com/sjauld) |
-[
](https://github.com/taj) |[
](https://github.com/Tashows) |[
](https://github.com/tcgj) |[
](https://github.com/twarlop) |[
](https://github.com/tmaier) |[
](https://github.com/WIStudent) |
+[
](https://github.com/strayer) |[
](https://github.com/taj) |[
](https://github.com/Tashows) |[
](https://github.com/tcgj) |[
](https://github.com/twarlop) |[
](https://github.com/tmaier) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[taj](https://github.com/taj) |[Tashows](https://github.com/Tashows) |[tcgj](https://github.com/tcgj) |[twarlop](https://github.com/twarlop) |[tmaier](https://github.com/tmaier) |[WIStudent](https://github.com/WIStudent) |
+[strayer](https://github.com/strayer) |[taj](https://github.com/taj) |[Tashows](https://github.com/Tashows) |[tcgj](https://github.com/tcgj) |[twarlop](https://github.com/twarlop) |[tmaier](https://github.com/tmaier) |
-[
](https://github.com/tomsaleeba) |[
](https://github.com/tomekp) |[
](https://github.com/tvaliasek) |[
](https://github.com/top-master) |[
](https://github.com/vially) |[
](https://github.com/valentinoli) |
+[
](https://github.com/WIStudent) |[
](https://github.com/tomsaleeba) |[
](https://github.com/tomekp) |[
](https://github.com/tvaliasek) |[
](https://github.com/top-master) |[
](https://github.com/vially) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[tomsaleeba](https://github.com/tomsaleeba) |[tomekp](https://github.com/tomekp) |[tvaliasek](https://github.com/tvaliasek) |[top-master](https://github.com/top-master) |[vially](https://github.com/vially) |[valentinoli](https://github.com/valentinoli) |
+[WIStudent](https://github.com/WIStudent) |[tomsaleeba](https://github.com/tomsaleeba) |[tomekp](https://github.com/tomekp) |[tvaliasek](https://github.com/tvaliasek) |[top-master](https://github.com/top-master) |[vially](https://github.com/vially) |
-[
](https://github.com/stiig) |[
](https://github.com/nagyv) |[
](https://github.com/dwnste) |[
](https://github.com/weston-sankey-mark43) |[
](https://github.com/willycamargo) |[
](https://github.com/xhocquet) |
+[
](https://github.com/valentinoli) |[
](https://github.com/stiig) |[
](https://github.com/nagyv) |[
](https://github.com/dwnste) |[
](https://github.com/weston-sankey-mark43) |[
](https://github.com/willycamargo) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[stiig](https://github.com/stiig) |[nagyv](https://github.com/nagyv) |[dwnste](https://github.com/dwnste) |[weston-sankey-mark43](https://github.com/weston-sankey-mark43) |[willycamargo](https://github.com/willycamargo) |[xhocquet](https://github.com/xhocquet) |
+[valentinoli](https://github.com/valentinoli) |[stiig](https://github.com/stiig) |[nagyv](https://github.com/nagyv) |[dwnste](https://github.com/dwnste) |[weston-sankey-mark43](https://github.com/weston-sankey-mark43) |[willycamargo](https://github.com/willycamargo) |
-[
](https://github.com/YehudaKremer) |[
](https://github.com/zachconner) |[
](https://github.com/zlawson-ut) |[
](https://github.com/zackbloom) |[
](https://github.com/sartoshi-foot-dao) |[
](https://github.com/aduh95-test-account) |
+[
](https://github.com/xhocquet) |[
](https://github.com/YehudaKremer) |[
](https://github.com/zachconner) |[
](https://github.com/zlawson-ut) |[
](https://github.com/zackbloom) |[
](https://github.com/sartoshi-foot-dao) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[YehudaKremer](https://github.com/YehudaKremer) |[zachconner](https://github.com/zachconner) |[zlawson-ut](https://github.com/zlawson-ut) |[zackbloom](https://github.com/zackbloom) |[sartoshi-foot-dao](https://github.com/sartoshi-foot-dao) |[aduh95-test-account](https://github.com/aduh95-test-account) |
+[xhocquet](https://github.com/xhocquet) |[YehudaKremer](https://github.com/YehudaKremer) |[zachconner](https://github.com/zachconner) |[zlawson-ut](https://github.com/zlawson-ut) |[zackbloom](https://github.com/zackbloom) |[sartoshi-foot-dao](https://github.com/sartoshi-foot-dao) |
-[
](https://github.com/agreene-coursera) |[
](https://github.com/alfatv) |[
](https://github.com/arggh) |[
](https://github.com/avalla) |[
](https://github.com/c0b41) |[
](https://github.com/canvasbh) |
+[
](https://github.com/aduh95-test-account) |[
](https://github.com/agreene-coursera) |[
](https://github.com/alfatv) |[
](https://github.com/arggh) |[
](https://github.com/avalla) |[
](https://github.com/c0b41) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[agreene-coursera](https://github.com/agreene-coursera) |[alfatv](https://github.com/alfatv) |[arggh](https://github.com/arggh) |[avalla](https://github.com/avalla) |[c0b41](https://github.com/c0b41) |[canvasbh](https://github.com/canvasbh) |
+[aduh95-test-account](https://github.com/aduh95-test-account) |[agreene-coursera](https://github.com/agreene-coursera) |[alfatv](https://github.com/alfatv) |[arggh](https://github.com/arggh) |[avalla](https://github.com/avalla) |[c0b41](https://github.com/c0b41) |
-[
](https://github.com/cgoinglove) |[
](https://github.com/christianwengert) |[
](https://github.com/codehero7386) |[
](https://github.com/craigcbrunner) |[
](https://github.com/darthf1) |[
](https://github.com/dkisic) |
+[
](https://github.com/canvasbh) |[
](https://github.com/cgoinglove) |[
](https://github.com/christianwengert) |[
](https://github.com/codehero7386) |[
](https://github.com/craigcbrunner) |[
](https://github.com/darthf1) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[cgoinglove](https://github.com/cgoinglove) |[christianwengert](https://github.com/christianwengert) |[codehero7386](https://github.com/codehero7386) |[craigcbrunner](https://github.com/craigcbrunner) |[darthf1](https://github.com/darthf1) |[dkisic](https://github.com/dkisic) |
+[canvasbh](https://github.com/canvasbh) |[cgoinglove](https://github.com/cgoinglove) |[christianwengert](https://github.com/christianwengert) |[codehero7386](https://github.com/codehero7386) |[craigcbrunner](https://github.com/craigcbrunner) |[darthf1](https://github.com/darthf1) |
-[
](https://github.com/elliotsayes) |[
](https://github.com/fingul) |[
](https://github.com/franckl) |[
](https://github.com/frederikhors) |[
](https://github.com/gaelicwinter) |[
](https://github.com/green-mike) |
+[
](https://github.com/dkisic) |[
](https://github.com/elliotsayes) |[
](https://github.com/fingul) |[
](https://github.com/franckl) |[
](https://github.com/frederikhors) |[
](https://github.com/gaelicwinter) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[elliotsayes](https://github.com/elliotsayes) |[fingul](https://github.com/fingul) |[franckl](https://github.com/franckl) |[frederikhors](https://github.com/frederikhors) |[gaelicwinter](https://github.com/gaelicwinter) |[green-mike](https://github.com/green-mike) |
+[dkisic](https://github.com/dkisic) |[elliotsayes](https://github.com/elliotsayes) |[fingul](https://github.com/fingul) |[franckl](https://github.com/franckl) |[frederikhors](https://github.com/frederikhors) |[gaelicwinter](https://github.com/gaelicwinter) |
-[
](https://github.com/hxgf) |[
](https://github.com/johnmanjiro13) |[
](https://github.com/jur-ng) |[
](https://github.com/sontixyou) |[
](https://github.com/kode-ninja) |[
](https://github.com/jx-zyf) |
+[
](https://github.com/green-mike) |[
](https://github.com/hxgf) |[
](https://github.com/johnmanjiro13) |[
](https://github.com/jur-ng) |[
](https://github.com/sontixyou) |[
](https://github.com/kode-ninja) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[hxgf](https://github.com/hxgf) |[johnmanjiro13](https://github.com/johnmanjiro13) |[jur-ng](https://github.com/jur-ng) |[sontixyou](https://github.com/sontixyou) |[kode-ninja](https://github.com/kode-ninja) |[jx-zyf](https://github.com/jx-zyf) |
+[green-mike](https://github.com/green-mike) |[hxgf](https://github.com/hxgf) |[johnmanjiro13](https://github.com/johnmanjiro13) |[jur-ng](https://github.com/jur-ng) |[sontixyou](https://github.com/sontixyou) |[kode-ninja](https://github.com/kode-ninja) |
-[
](https://github.com/magumbo) |[
](https://github.com/mdxiaohu) |[
](https://github.com/mjlumetta) |[
](https://github.com/mosi-kha) |[
](https://github.com/neuronet77) |[
](https://github.com/ninesalt) |
+[
](https://github.com/jx-zyf) |[
](https://github.com/magumbo) |[
](https://github.com/mdxiaohu) |[
](https://github.com/mjlumetta) |[
](https://github.com/mosi-kha) |[
](https://github.com/neuronet77) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[magumbo](https://github.com/magumbo) |[mdxiaohu](https://github.com/mdxiaohu) |[mjlumetta](https://github.com/mjlumetta) |[mosi-kha](https://github.com/mosi-kha) |[neuronet77](https://github.com/neuronet77) |[ninesalt](https://github.com/ninesalt) |
+[jx-zyf](https://github.com/jx-zyf) |[magumbo](https://github.com/magumbo) |[mdxiaohu](https://github.com/mdxiaohu) |[mjlumetta](https://github.com/mjlumetta) |[mosi-kha](https://github.com/mosi-kha) |[neuronet77](https://github.com/neuronet77) |
-[
](https://github.com/odselsevier) |[
](https://github.com/phil714) |[
](https://github.com/luntta) |[
](https://github.com/rhymes) |[
](https://github.com/rlebosse) |[
](https://github.com/rmoura-92) |
+[
](https://github.com/ninesalt) |[
](https://github.com/odselsevier) |[
](https://github.com/ordago) |[
](https://github.com/phil714) |[
](https://github.com/luntta) |[
](https://github.com/rhymes) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[odselsevier](https://github.com/odselsevier) |[phil714](https://github.com/phil714) |[luntta](https://github.com/luntta) |[rhymes](https://github.com/rhymes) |[rlebosse](https://github.com/rlebosse) |[rmoura-92](https://github.com/rmoura-92) |
+[ninesalt](https://github.com/ninesalt) |[odselsevier](https://github.com/odselsevier) |[ordago](https://github.com/ordago) |[phil714](https://github.com/phil714) |[luntta](https://github.com/luntta) |[rhymes](https://github.com/rhymes) |
-[
](https://github.com/rtaieb) |[
](https://github.com/slawexxx44) |[
](https://github.com/stduhpf) |[
](https://github.com/thanhthot) |[
](https://github.com/tusharjkhunt) |[
](https://github.com/vedran555) |
+[
](https://github.com/rlebosse) |[
](https://github.com/rmoura-92) |[
](https://github.com/rtaieb) |[
](https://github.com/slawexxx44) |[
](https://github.com/stduhpf) |[
](https://github.com/thanhthot) |
:---: |:---: |:---: |:---: |:---: |:---: |
-[rtaieb](https://github.com/rtaieb) |[slawexxx44](https://github.com/slawexxx44) |[stduhpf](https://github.com/stduhpf) |[thanhthot](https://github.com/thanhthot) |[tusharjkhunt](https://github.com/tusharjkhunt) |[vedran555](https://github.com/vedran555) |
+[rlebosse](https://github.com/rlebosse) |[rmoura-92](https://github.com/rmoura-92) |[rtaieb](https://github.com/rtaieb) |[slawexxx44](https://github.com/slawexxx44) |[stduhpf](https://github.com/stduhpf) |[thanhthot](https://github.com/thanhthot) |
-[
](https://github.com/yoann-hellopret) |[
](https://github.com/olitomas) |[
](https://github.com/JimmyLv) |
-:---: |:---: |:---: |
-[yoann-hellopret](https://github.com/yoann-hellopret) |[olitomas](https://github.com/olitomas) |[JimmyLv](https://github.com/JimmyLv) |
+[
](https://github.com/tusharjkhunt) |[
](https://github.com/vedran555) |[
](https://github.com/yoann-hellopret) |[
](https://github.com/olitomas) |[
](https://github.com/JimmyLv) |
+:---: |:---: |:---: |:---: |:---: |
+[tusharjkhunt](https://github.com/tusharjkhunt) |[vedran555](https://github.com/vedran555) |[yoann-hellopret](https://github.com/yoann-hellopret) |[olitomas](https://github.com/olitomas) |[JimmyLv](https://github.com/JimmyLv) |
diff --git a/examples/aws-nodejs/public/drag.html b/examples/aws-nodejs/public/drag.html
index 33eeb8a17..7c75b572a 100644
--- a/examples/aws-nodejs/public/drag.html
+++ b/examples/aws-nodejs/public/drag.html
@@ -4,7 +4,7 @@
Uppy
@@ -22,7 +22,7 @@
DragDrop,
ProgressBar,
AwsS3,
- } from 'https://releases.transloadit.com/uppy/v3.18.1/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v3.19.0/uppy.min.mjs'
// Function for displaying uploaded files
const onUploadSuccess = (elForUploadedFiles) => (file, response) => {
diff --git a/examples/aws-nodejs/public/index.html b/examples/aws-nodejs/public/index.html
index 29f3914f0..641195eeb 100644
--- a/examples/aws-nodejs/public/index.html
+++ b/examples/aws-nodejs/public/index.html
@@ -4,7 +4,7 @@
Uppy – AWS upload example
@@ -16,7 +16,7 @@
Uppy,
Dashboard,
AwsS3,
- } from 'https://releases.transloadit.com/uppy/v3.18.1/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v3.19.0/uppy.min.mjs'
/**
* This generator transforms a deep object into URL-encodable pairs
* to work with `URLSearchParams` on the client and `body-parser` on the server.
diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html
index 0103c1b85..ba5358243 100644
--- a/examples/cdn-example/index.html
+++ b/examples/cdn-example/index.html
@@ -5,7 +5,7 @@
@@ -19,7 +19,7 @@
Dashboard,
Webcam,
Tus,
- } from 'https://releases.transloadit.com/uppy/v3.18.1/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v3.19.0/uppy.min.mjs'
const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
@@ -34,7 +34,7 @@