From 21d37d8481274cb4218c6b5ffab6b11a9e695bed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 14:42:27 +0000 Subject: [PATCH] Release: uppy@4.0.4 (#5346) | Package | Version | Package | Version | | --------------- | ------- | --------------- | ------- | | @uppy/companion | 5.0.4 | uppy | 4.0.4 | | @uppy/locales | 4.0.3 | | | - meta: fixup! meta: fix require path in `upload-to-cdn` (Antoine du Hamel / #5343) --- BUNDLE-README.md | 2 +- CHANGELOG.md | 12 ++++++++++++ README.md | 6 +++--- examples/cdn-example/index.html | 4 ++-- examples/uppy-with-companion/client/index.html | 4 ++-- packages/@uppy/companion/package.json | 2 +- packages/@uppy/locales/package.json | 2 +- packages/uppy/package.json | 2 +- 8 files changed, 23 insertions(+), 11 deletions(-) diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 63011a606..2ab3b82c9 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 83835ad3d..42d222775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,18 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 4.0.4 + +Released: 2024-07-15 + +| Package | Version | Package | Version | +| --------------- | ------- | --------------- | ------- | +| @uppy/companion | 5.0.4 | uppy | 4.0.4 | +| @uppy/locales | 4.0.3 | | | + +- meta: fixup! meta: fix require path in `upload-to-cdn` (Antoine du Hamel / #5343) + + ## 4.0.3 Released: 2024-07-15 diff --git a/README.md b/README.md index 0e44a72ca..5e4c8bad3 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus ``` Add CSS -[uppy.min.css](https://releases.transloadit.com/uppy/v4.0.3/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v4.0.4/uppy.min.css), either to your HTML page’s `
` or include in JS, if your bundler of choice supports it. @@ -102,7 +102,7 @@ object. ```html @@ -113,7 +113,7 @@ object. Uppy, Dashboard, Tus, - } from 'https://releases.transloadit.com/uppy/v4.0.3/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v4.0.4/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html index 466a755e2..618dab4cb 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/v4.0.3/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v4.0.4/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) diff --git a/examples/uppy-with-companion/client/index.html b/examples/uppy-with-companion/client/index.html index 286d819f7..b25891474 100644 --- a/examples/uppy-with-companion/client/index.html +++ b/examples/uppy-with-companion/client/index.html @@ -5,7 +5,7 @@ @@ -19,7 +19,7 @@ Instagram, GoogleDrive, Tus, - } from 'https://releases.transloadit.com/uppy/v4.0.3/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v4.0.4/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) diff --git a/packages/@uppy/companion/package.json b/packages/@uppy/companion/package.json index 463279542..c4a718a05 100644 --- a/packages/@uppy/companion/package.json +++ b/packages/@uppy/companion/package.json @@ -1,6 +1,6 @@ { "name": "@uppy/companion", - "version": "5.0.3", + "version": "5.0.4", "description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:", "main": "lib/companion.js", "types": "lib/companion.d.ts", diff --git a/packages/@uppy/locales/package.json b/packages/@uppy/locales/package.json index aacff0c9f..f9a6e7c8a 100644 --- a/packages/@uppy/locales/package.json +++ b/packages/@uppy/locales/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/locales", "description": "Uppy language packs", - "version": "4.0.2", + "version": "4.0.3", "license": "MIT", "type": "module", "keywords": [ diff --git a/packages/uppy/package.json b/packages/uppy/package.json index 9083d496d..b8e20c93b 100644 --- a/packages/uppy/package.json +++ b/packages/uppy/package.json @@ -1,7 +1,7 @@ { "name": "uppy", "description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "main": "index.mjs", "module": "index.mjs",