diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 8285c15516..f5df458e8e 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 bcd5f5599d..cebe8a6423 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.5 + +Released: 2024-05-23 + +| Package | Version | Package | Version | +| ----------------- | ------- | ----------------- | ------- | +| @uppy/transloadit | 3.6.2 | uppy | 3.25.5 | +| @uppy/xhr-upload | 3.6.7 | | | + +- @uppy/transloadit: do not cancel assembly when removing all files (Merlijn Vos / #5191) +- @uppy/xhr-upload: fix regression for lowercase HTTP methods (Antoine du Hamel / #5179) +- meta: improve changelog generator (Antoine du Hamel / #5190) + + ## 3.25.4 Released: 2024-05-22 diff --git a/README.md b/README.md index 00475272d1..242ddfe72c 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.4/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v3.25.5/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.4/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.5/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 c10292eeb4..0579da21c6 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.4/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.5/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 e26c18cbb7..6747cb385b 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.4/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.5/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 dc088651e0..355ba66859 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.4/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.5/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) @@ -34,7 +34,7 @@