diff --git a/BUNDLE-README.md b/BUNDLE-README.md index b52404723e..89aa30a6a9 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 3c179e2dbe..68e8cee0e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,40 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.23.0 + +Released: 2024-02-28 + +| Package | Version | Package | Version | +| ---------------------- | ------- | ---------------------- | ------- | +| @uppy/box | 2.2.1 | @uppy/onedrive | 3.2.1 | +| @uppy/companion-client | 3.7.4 | @uppy/progress-bar | 3.1.0 | +| @uppy/core | 3.9.3 | @uppy/provider-views | 3.10.0 | +| @uppy/dashboard | 3.7.5 | @uppy/status-bar | 3.3.0 | +| @uppy/file-input | 3.1.0 | @uppy/utils | 5.7.4 | +| @uppy/form | 3.2.0 | @uppy/xhr-upload | 3.6.4 | +| @uppy/image-editor | 2.4.4 | uppy | 3.23.0 | +| @uppy/informer | 3.1.0 | | | + +- @uppy/form: migrate to TS (Merlijn Vos / #4937) +- @uppy/box: fetchPreAuthToken in box too (Mikael Finstad / #4969) +- @uppy/progress-bar: refactor to TypeScript (Mikael Finstad / #4921) +- @uppy/onedrive: fix custom oauth2 credentials for onedrive (Mikael Finstad / #4968) +- @uppy/companion-client,@uppy/utils,@uppy/xhr-upload: improvements for #4922 (Mikael Finstad / #4960) +- @uppy/utils: fix various type issues (Mikael Finstad / #4958) +- @uppy/provider-views: migrate to TS (Merlijn Vos / #4919) +- @uppy/utils: simplify `findDOMElements` (Mikael Finstad / #4957) +- @uppy/xhr-upload: fix getResponseData regression (Merlijn Vos / #4964) +- @uppy/informer: migrate to TS (Merlijn Vos / #4967) +- @uppy/core: remove unused import (Antoine du Hamel / #4972) +- @uppy/image-editor: remove default target (Merlijn Vos / #4966) +- @uppy/angular: Build fixes (Mikael Finstad / #4959) +- meta: Fix flaky e2e test (Murderlon) +- meta: fix e2e flake (Mikael Finstad / #4961) +- meta: add support for `Fragment` short syntax (Antoine du Hamel / #4953) +- @uppy/file-input: refactor to TypeScript (Antoine du Hamel / #4954) + + ## 3.22.2 Released: 2024-02-22 diff --git a/README.md b/README.md index e19afa6615..5773d9c874 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.22.2/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.23.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 @@ -504,3 +504,4 @@ We use Browserstack for manual testing Uppy @@ -22,7 +22,7 @@
Uploaded files:
DragDrop, ProgressBar, AwsS3, - } from 'https://releases.transloadit.com/uppy/v3.22.2/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.23.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 7cee1d4dd2..3587399a1b 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 @@

AWS upload example

Uppy, Dashboard, AwsS3, - } from 'https://releases.transloadit.com/uppy/v3.22.2/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.23.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 187158fca1..aa483fbc68 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.22.2/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.23.0/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) @@ -34,7 +34,7 @@