From 3deb64b34a2329fc3810dc4e8345066b04679c34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 13:16:49 +0000 Subject: [PATCH] Release: uppy@3.24.1 (#5069) | Package | Version | Package | Version | | ---------------- | ------- | ---------------- | ------- | | @uppy/companion | 4.13.1 | uppy | 3.24.1 | | @uppy/file-input | 3.1.1 | | | - @uppy/companion: upgrade redis (Mikael Finstad / #5065) - meta: fix `watch:*` scripts (Antoine du Hamel / #5046) - meta: include more packages in `compare_diff` CI (Antoine du Hamel / #5044) - @uppy/file-input: add missing export (Antoine du Hamel / #5045) - meta: Bump express from 4.18.1 to 4.19.2 in /packages/@uppy/companion (dependabot[bot] / #5036) - @uppy/companion: Bump express from 4.18.1 to 4.19.2 (dependabot[bot] / #5037) --- BUNDLE-README.md | 2 +- CHANGELOG.md | 17 +++++++++++++++++ README.md | 9 ++++----- 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/companion/CHANGELOG.md | 8 ++++++++ packages/@uppy/companion/package.json | 2 +- packages/@uppy/file-input/CHANGELOG.md | 7 +++++++ packages/@uppy/file-input/package.json | 2 +- packages/uppy/package.json | 2 +- 12 files changed, 49 insertions(+), 18 deletions(-) diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 0d3d36cc5a..7cbe76c9b6 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 908fbf7713..d53af61ac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,23 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.24.1 + +Released: 2024-04-10 + +| Package | Version | Package | Version | +| ---------------- | ------- | ---------------- | ------- | +| @uppy/companion | 4.13.1 | uppy | 3.24.1 | +| @uppy/file-input | 3.1.1 | | | + +- @uppy/companion: upgrade redis (Mikael Finstad / #5065) +- meta: fix `watch:*` scripts (Antoine du Hamel / #5046) +- meta: include more packages in `compare_diff` CI (Antoine du Hamel / #5044) +- @uppy/file-input: add missing export (Antoine du Hamel / #5045) +- meta: Bump express from 4.18.1 to 4.19.2 in /packages/@uppy/companion (dependabot[bot] / #5036) +- @uppy/companion: Bump express from 4.18.1 to 4.19.2 (dependabot[bot] / #5037) + + ## 3.24.0 Released: 2024-03-27 diff --git a/README.md b/README.md index cc65149983..4e9dc52c16 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.24.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.24.1/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 @@ -508,4 +508,3 @@ We use Browserstack for manual testing Uppy @@ -22,7 +22,7 @@
Uploaded files:
DragDrop, ProgressBar, AwsS3, - } from 'https://releases.transloadit.com/uppy/v3.24.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.24.1/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 036c422a74..ccbe510579 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.24.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.24.1/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 c046f7e932..fce35cee21 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.24.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.24.1/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) @@ -34,7 +34,7 @@