From bbfbbbea357dac0c6580dd5c2b24bbf0c32bfb99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Aug 2025 09:34:54 +0200 Subject: [PATCH] [ci] release (#5884) This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @uppy/locales@4.8.4 ### Patch Changes - ea04a4d: Add "files" in package.json to only publish what's needed ## @uppy/transloadit@4.3.3 ### Patch Changes - ee0b2fc: Add `user_meta` type to `AssemblyResult` ## uppy@4.18.2 ### Patch Changes - ea04a4d: Add "files" in package.json to only publish what's needed - Updated dependencies [ee0b2fc] - Updated dependencies [ea04a4d] - @uppy/transloadit@4.3.3 - @uppy/locales@4.8.4 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/curly-trees-camp.md | 5 ----- .changeset/fluffy-deer-press.md | 6 ------ BUNDLE-README.md | 2 +- README.md | 6 +++--- packages/@uppy/locales/CHANGELOG.md | 6 ++++++ packages/@uppy/locales/package.json | 2 +- packages/@uppy/transloadit/CHANGELOG.md | 6 ++++++ packages/@uppy/transloadit/package.json | 2 +- packages/uppy/CHANGELOG.md | 10 ++++++++++ packages/uppy/package.json | 2 +- 10 files changed, 29 insertions(+), 18 deletions(-) delete mode 100644 .changeset/curly-trees-camp.md delete mode 100644 .changeset/fluffy-deer-press.md diff --git a/.changeset/curly-trees-camp.md b/.changeset/curly-trees-camp.md deleted file mode 100644 index a95b290c7..000000000 --- a/.changeset/curly-trees-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@uppy/transloadit": patch ---- - -Add `user_meta` type to `AssemblyResult` diff --git a/.changeset/fluffy-deer-press.md b/.changeset/fluffy-deer-press.md deleted file mode 100644 index 3d730d5dd..000000000 --- a/.changeset/fluffy-deer-press.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@uppy/locales": patch -"uppy": patch ---- - -Add "files" in package.json to only publish what's needed diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 16260316f..cbca4c904 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/README.md b/README.md index a7d87cc43..00320bd5c 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus ``` Add CSS -[uppy.min.css](https://releases.transloadit.com/uppy/v4.18.1/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v4.18.2/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it. @@ -117,7 +117,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object. ```html @@ -128,7 +128,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object. Uppy, Dashboard, Tus, - } from 'https://releases.transloadit.com/uppy/v4.18.1/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v4.18.2/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) diff --git a/packages/@uppy/locales/CHANGELOG.md b/packages/@uppy/locales/CHANGELOG.md index 5b4e490a3..cbae625ff 100644 --- a/packages/@uppy/locales/CHANGELOG.md +++ b/packages/@uppy/locales/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/locales +## 4.8.4 + +### Patch Changes + +- ea04a4d: Add "files" in package.json to only publish what's needed + ## 4.8.3 ### Patch Changes diff --git a/packages/@uppy/locales/package.json b/packages/@uppy/locales/package.json index 1d43de722..726fa8f7f 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.8.3", + "version": "4.8.4", "license": "MIT", "type": "module", "scripts": { diff --git a/packages/@uppy/transloadit/CHANGELOG.md b/packages/@uppy/transloadit/CHANGELOG.md index f2299de51..7f89e249c 100644 --- a/packages/@uppy/transloadit/CHANGELOG.md +++ b/packages/@uppy/transloadit/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/transloadit +## 4.3.3 + +### Patch Changes + +- ee0b2fc: Add `user_meta` type to `AssemblyResult` + ## 4.3.2 ### Patch Changes diff --git a/packages/@uppy/transloadit/package.json b/packages/@uppy/transloadit/package.json index 527df3be3..da7790f73 100644 --- a/packages/@uppy/transloadit/package.json +++ b/packages/@uppy/transloadit/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/transloadit", "description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more", - "version": "4.3.2", + "version": "4.3.3", "license": "MIT", "main": "lib/index.js", "type": "module", diff --git a/packages/uppy/CHANGELOG.md b/packages/uppy/CHANGELOG.md index d5a7bfc9a..4a45ecfcc 100644 --- a/packages/uppy/CHANGELOG.md +++ b/packages/uppy/CHANGELOG.md @@ -1,5 +1,15 @@ # uppy +## 4.18.2 + +### Patch Changes + +- ea04a4d: Add "files" in package.json to only publish what's needed +- Updated dependencies [ee0b2fc] +- Updated dependencies [ea04a4d] + - @uppy/transloadit@4.3.3 + - @uppy/locales@4.8.4 + ## 4.18.1 ### Patch Changes diff --git a/packages/uppy/package.json b/packages/uppy/package.json index 27b25bc71..2b760768b 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.18.1", + "version": "4.18.2", "license": "MIT", "main": "lib/index.js", "module": "lib/index.js",