From 965d2a09b831f589b2ebae2dfdd91fbbcd4c026a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 07:57:35 +0000 Subject: [PATCH] Release: uppy@3.25.5 (#5193) | 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) --- BUNDLE-README.md | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 8 ++++---- examples/aws-nodejs/public/drag.html | 4 ++-- examples/aws-nodejs/public/index.html | 4 ++-- examples/cdn-example/index.html | 6 +++--- examples/uppy-with-companion/client/index.html | 4 ++-- packages/@uppy/transloadit/CHANGELOG.md | 7 +++++++ packages/@uppy/transloadit/package.json | 2 +- packages/@uppy/xhr-upload/CHANGELOG.md | 7 +++++++ packages/@uppy/xhr-upload/package.json | 2 +- packages/uppy/package.json | 2 +- 12 files changed, 45 insertions(+), 17 deletions(-) diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 8285c1551..f5df458e8 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 bcd5f5599..cebe8a642 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 00475272d..242ddfe72 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 c10292eeb..0579da21c 100644 --- a/examples/aws-nodejs/public/drag.html +++ b/examples/aws-nodejs/public/drag.html @@ -4,7 +4,7 @@