diff --git a/BUNDLE-README.md b/BUNDLE-README.md index c2aec46be9..3b12170f9f 100644 --- a/BUNDLE-README.md +++ b/BUNDLE-README.md @@ -2,7 +2,7 @@ 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. Note that the recommended way to use Uppy is to install it with yarn/npm and use diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b680b15d9..c9eb560b25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,20 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.25.2 + +Released: 2024-05-07 + +| Package | Version | Package | Version | +| ---------------- | ------- | ---------------- | ------- | +| @uppy/compressor | 1.1.4 | @uppy/status-bar | 3.3.3 | +| @uppy/core | 3.11.2 | uppy | 3.25.2 | +| @uppy/dashboard | 3.8.3 | | | + +- @uppy/compressor,@uppy/core,@uppy/dashboard,@uppy/status-bar: Upgrade @transloadit/prettier-bytes (Merlijn Vos / #5150) +- meta: run Prettier in the release workflow (Antoine du Hamel) + + ## 3.25.1 Released: 2024-05-03 diff --git a/README.md b/README.md index a0d7b464ee..e6cc9a4b28 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus ``` Add CSS -[uppy.min.css](https://releases.transloadit.com/uppy/v3.25.1/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v3.25.2/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it. @@ -94,7 +94,7 @@ object. ```html @@ -105,7 +105,7 @@ object. Uppy, Dashboard, Tus, - } from 'https://releases.transloadit.com/uppy/v3.25.1/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.2/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) @@ -240,7 +240,7 @@ If you’re using Uppy from CDN, those polyfills are already included in the legacy bundle, so no need to include anything additionally: ```html - + ``` ## FAQ diff --git a/examples/aws-nodejs/public/drag.html b/examples/aws-nodejs/public/drag.html index e61e4e0c35..d49ac2651c 100644 --- a/examples/aws-nodejs/public/drag.html +++ b/examples/aws-nodejs/public/drag.html @@ -4,7 +4,7 @@ Uppy @@ -22,7 +22,7 @@
Uploaded files:
DragDrop, ProgressBar, AwsS3, - } from 'https://releases.transloadit.com/uppy/v3.25.1/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.2/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 e303197fcf..974a12f2ae 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.25.1/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.2/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 55a157b7b4..bd5d390d0d 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.25.1/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.2/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) @@ -34,7 +34,7 @@