From a5f62485063004429e707055ba052e0d7add6023 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 07:53:42 +0000 Subject: [PATCH] Release: uppy@3.17.0 (#4716) | Package | Version | Package | Version | | ------------------------- | ------- | ------------------------- | ------- | | @uppy/audio | 1.1.3 | @uppy/store-default | 3.0.4 | | @uppy/aws-s3 | 3.3.1 | @uppy/store-redux | 3.0.4 | | @uppy/aws-s3-multipart | 3.7.0 | @uppy/svelte | 3.1.0 | | @uppy/companion | 4.9.1 | @uppy/thumbnail-generator | 3.0.5 | | @uppy/companion-client | 3.4.1 | @uppy/transloadit | 3.3.1 | | @uppy/compressor | 1.0.4 | @uppy/tus | 3.3.1 | | @uppy/core | 3.5.1 | @uppy/utils | 5.5.1 | | @uppy/dashboard | 3.5.4 | @uppy/webcam | 3.3.3 | | @uppy/image-editor | 2.2.1 | @uppy/xhr-upload | 3.4.1 | | @uppy/remote-sources | 1.0.4 | uppy | 3.17.0 | - meta: add Prettier (Antoine du Hamel / #4707) - @uppy/aws-s3-multipart: retry signature request (Merlijn Vos / #4691) - meta: update linter config to cover more files (Mikael Finstad / #4706) - @uppy/image-editor: ImageEditor.jsx - remove 1px black lines (Evgenia Karunus / #4678) - meta: delete `.yarn/releases/yarn-3.4.1.cjs` (Antoine du Hamel) - meta: fix linter errors (Antoine du Hamel / #4704) - @uppy/utils: test: migrate to Vitest for Uppy core and Uppy plugins (Antoine du Hamel / #4700) - meta: run corepack yarn (Mikael Finstad) - @uppy/companion: upgrade TS target (Mikael Finstad / #4670) - @uppy/companion: use deferred length for tus streams (Mikael Finstad / #4697) - @uppy/companion-client: fix a refresh token race condition (Mikael Finstad / #4695) - meta: add companion hotfix doc (Mikael Finstad / #4683) - meta: run type checks also for companion and add files to docker (Mikael Finstad / #4688) - @uppy/svelte: revert breaking change (Antoine du Hamel / #4694) - meta: Update yarn.lock (Artur Paikin) - @uppy/companion: fix instagram/facebook auth error regression (Mikael Finstad / #4692) - @uppy/aws-s3-multipart: aws-s3-multipart - call `#setCompanionHeaders` in `setOptions` (jur-ng / #4687) - @uppy/svelte: Upgrade Svelte to 4 (frederikhors / #4652) - @uppy/companion: add test endpoint for dynamic oauth creds (Mikael Finstad / #4667) - meta: fix VITE_COMPANION_ALLOWED_HOSTS (Mikael Finstad / #4690) - @uppy/companion: fix edge case for pagination on root (Mikael Finstad / #4689) - @uppy/companion: fix onedrive pagination (Mikael Finstad / #4686) --- BUNDLE-README.md | 2 +- CHANGELOG.md | 41 +++++++++++++++++++ README.md | 30 +++++++------- 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/audio/package.json | 2 +- packages/@uppy/aws-s3-multipart/CHANGELOG.md | 8 ++++ packages/@uppy/aws-s3-multipart/package.json | 2 +- packages/@uppy/aws-s3/package.json | 2 +- packages/@uppy/companion-client/CHANGELOG.md | 7 ++++ packages/@uppy/companion-client/package.json | 2 +- packages/@uppy/companion/CHANGELOG.md | 12 ++++++ packages/@uppy/companion/package.json | 2 +- packages/@uppy/compressor/package.json | 2 +- packages/@uppy/core/package.json | 2 +- packages/@uppy/dashboard/package.json | 2 +- packages/@uppy/image-editor/CHANGELOG.md | 7 ++++ packages/@uppy/image-editor/package.json | 2 +- packages/@uppy/remote-sources/package.json | 2 +- packages/@uppy/store-default/package.json | 2 +- packages/@uppy/store-redux/package.json | 2 +- packages/@uppy/svelte/CHANGELOG.md | 8 ++++ packages/@uppy/svelte/package.json | 2 +- .../@uppy/thumbnail-generator/package.json | 2 +- packages/@uppy/transloadit/package.json | 2 +- packages/@uppy/tus/package.json | 2 +- packages/@uppy/utils/CHANGELOG.md | 7 ++++ packages/@uppy/utils/package.json | 2 +- packages/@uppy/webcam/package.json | 2 +- packages/@uppy/xhr-upload/package.json | 2 +- packages/uppy/package.json | 2 +- 33 files changed, 135 insertions(+), 45 deletions(-) diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 86c4d3b367..70a9c3ff85 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 ea4c39e917..8509df25c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,47 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.17.0 + +Released: 2023-09-29 + +| Package | Version | Package | Version | +| ------------------------- | ------- | ------------------------- | ------- | +| @uppy/audio | 1.1.3 | @uppy/store-default | 3.0.4 | +| @uppy/aws-s3 | 3.3.1 | @uppy/store-redux | 3.0.4 | +| @uppy/aws-s3-multipart | 3.7.0 | @uppy/svelte | 3.1.0 | +| @uppy/companion | 4.9.1 | @uppy/thumbnail-generator | 3.0.5 | +| @uppy/companion-client | 3.4.1 | @uppy/transloadit | 3.3.1 | +| @uppy/compressor | 1.0.4 | @uppy/tus | 3.3.1 | +| @uppy/core | 3.5.1 | @uppy/utils | 5.5.1 | +| @uppy/dashboard | 3.5.4 | @uppy/webcam | 3.3.3 | +| @uppy/image-editor | 2.2.1 | @uppy/xhr-upload | 3.4.1 | +| @uppy/remote-sources | 1.0.4 | uppy | 3.17.0 | + +- meta: add Prettier (Antoine du Hamel / #4707) +- @uppy/aws-s3-multipart: retry signature request (Merlijn Vos / #4691) +- meta: update linter config to cover more files (Mikael Finstad / #4706) +- @uppy/image-editor: ImageEditor.jsx - remove 1px black lines (Evgenia Karunus / #4678) +- meta: delete `.yarn/releases/yarn-3.4.1.cjs` (Antoine du Hamel) +- meta: fix linter errors (Antoine du Hamel / #4704) +- @uppy/utils: test: migrate to Vitest for Uppy core and Uppy plugins (Antoine du Hamel / #4700) +- meta: run corepack yarn (Mikael Finstad) +- @uppy/companion: upgrade TS target (Mikael Finstad / #4670) +- @uppy/companion: use deferred length for tus streams (Mikael Finstad / #4697) +- @uppy/companion-client: fix a refresh token race condition (Mikael Finstad / #4695) +- meta: add companion hotfix doc (Mikael Finstad / #4683) +- meta: run type checks also for companion and add files to docker (Mikael Finstad / #4688) +- @uppy/svelte: revert breaking change (Antoine du Hamel / #4694) +- meta: Update yarn.lock (Artur Paikin) +- @uppy/companion: fix instagram/facebook auth error regression (Mikael Finstad / #4692) +- @uppy/aws-s3-multipart: aws-s3-multipart - call `#setCompanionHeaders` in `setOptions` (jur-ng / #4687) +- @uppy/svelte: Upgrade Svelte to 4 (frederikhors / #4652) +- @uppy/companion: add test endpoint for dynamic oauth creds (Mikael Finstad / #4667) +- meta: fix VITE_COMPANION_ALLOWED_HOSTS (Mikael Finstad / #4690) +- @uppy/companion: fix edge case for pagination on root (Mikael Finstad / #4689) +- @uppy/companion: fix onedrive pagination (Mikael Finstad / #4686) + + ## 3.16.0 Released: 2023-09-18 diff --git a/README.md b/README.md index d86975295b..14ac3e3093 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.16.0/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.17.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 @@ -467,25 +467,25 @@ Use Uppy in your project? [Let us know](https://github.com/transloadit/uppy/issu :---: |:---: |:---: |:---: |:---: |:---: | [christianwengert](https://github.com/christianwengert) |[craigcbrunner](https://github.com/craigcbrunner) |[darthf1](https://github.com/darthf1) |[dkisic](https://github.com/dkisic) |[elliotsayes](https://github.com/elliotsayes) |[fingul](https://github.com/fingul) | -[](https://github.com/franckl) |[](https://github.com/gaelicwinter) |[](https://github.com/green-mike) |[](https://github.com/hxgf) |[](https://github.com/johnmanjiro13) |[](https://github.com/sontixyou) | +[](https://github.com/franckl) |[](https://github.com/frederikhors) |[](https://github.com/gaelicwinter) |[](https://github.com/green-mike) |[](https://github.com/hxgf) |[](https://github.com/johnmanjiro13) | :---: |:---: |:---: |:---: |:---: |:---: | -[franckl](https://github.com/franckl) |[gaelicwinter](https://github.com/gaelicwinter) |[green-mike](https://github.com/green-mike) |[hxgf](https://github.com/hxgf) |[johnmanjiro13](https://github.com/johnmanjiro13) |[sontixyou](https://github.com/sontixyou) | +[franckl](https://github.com/franckl) |[frederikhors](https://github.com/frederikhors) |[gaelicwinter](https://github.com/gaelicwinter) |[green-mike](https://github.com/green-mike) |[hxgf](https://github.com/hxgf) |[johnmanjiro13](https://github.com/johnmanjiro13) | -[](https://github.com/kode-ninja) |[](https://github.com/jx-zyf) |[](https://github.com/magumbo) |[](https://github.com/mjlumetta) |[](https://github.com/mosi-kha) |[](https://github.com/neuronet77) | +[](https://github.com/jur-ng) |[](https://github.com/sontixyou) |[](https://github.com/kode-ninja) |[](https://github.com/jx-zyf) |[](https://github.com/magumbo) |[](https://github.com/mjlumetta) | :---: |:---: |:---: |:---: |:---: |:---: | -[kode-ninja](https://github.com/kode-ninja) |[jx-zyf](https://github.com/jx-zyf) |[magumbo](https://github.com/magumbo) |[mjlumetta](https://github.com/mjlumetta) |[mosi-kha](https://github.com/mosi-kha) |[neuronet77](https://github.com/neuronet77) | +[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) |[magumbo](https://github.com/magumbo) |[mjlumetta](https://github.com/mjlumetta) | -[](https://github.com/ninesalt) |[](https://github.com/odselsevier) |[](https://github.com/phil714) |[](https://github.com/luntta) |[](https://github.com/rhymes) |[](https://github.com/rlebosse) | +[](https://github.com/mosi-kha) |[](https://github.com/neuronet77) |[](https://github.com/ninesalt) |[](https://github.com/odselsevier) |[](https://github.com/phil714) |[](https://github.com/luntta) | :---: |:---: |:---: |:---: |:---: |:---: | -[ninesalt](https://github.com/ninesalt) |[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) | +[mosi-kha](https://github.com/mosi-kha) |[neuronet77](https://github.com/neuronet77) |[ninesalt](https://github.com/ninesalt) |[odselsevier](https://github.com/odselsevier) |[phil714](https://github.com/phil714) |[luntta](https://github.com/luntta) | -[](https://github.com/rmoura-92) |[](https://github.com/rtaieb) |[](https://github.com/slawexxx44) |[](https://github.com/stduhpf) |[](https://github.com/thanhthot) |[](https://github.com/tusharjkhunt) | +[](https://github.com/rhymes) |[](https://github.com/rlebosse) |[](https://github.com/rmoura-92) |[](https://github.com/rtaieb) |[](https://github.com/slawexxx44) |[](https://github.com/stduhpf) | :---: |:---: |:---: |:---: |:---: |:---: | -[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) |[tusharjkhunt](https://github.com/tusharjkhunt) | +[rhymes](https://github.com/rhymes) |[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) | -[](https://github.com/vedran555) |[](https://github.com/yoann-hellopret) |[](https://github.com/olitomas) |[](https://github.com/JimmyLv) | -:---: |:---: |:---: |:---: | -[vedran555](https://github.com/vedran555) |[yoann-hellopret](https://github.com/yoann-hellopret) |[olitomas](https://github.com/olitomas) |[JimmyLv](https://github.com/JimmyLv) | +[](https://github.com/thanhthot) |[](https://github.com/tusharjkhunt) |[](https://github.com/vedran555) |[](https://github.com/yoann-hellopret) |[](https://github.com/olitomas) |[](https://github.com/JimmyLv) | +:---: |:---: |:---: |:---: |:---: |:---: | +[thanhthot](https://github.com/thanhthot) |[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 1e5b65e54d..6a14073b19 100644 --- a/examples/aws-nodejs/public/drag.html +++ b/examples/aws-nodejs/public/drag.html @@ -3,7 +3,7 @@