From 3d27be16ede98ceb5bb5bc51e65bfe41540b187f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 17:59:16 +0200 Subject: [PATCH] [ci] release (#5932) 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/drag-drop@5.0.0 ### Major Changes - 3290864: All packages now have export maps. This is a breaking change in two cases: 1. The css imports have changed from `@uppy[package]/dist/styles.min.css` to `@uppy[package]/css/styles.min.css` 2. You were importing something that wasn't exported from the root, for instance `@uppy/core/lib/foo.js`. You can now only import things we explicitly exported. ## @uppy/status-bar@5.0.0 ### Major Changes - 3290864: All packages now have export maps. This is a breaking change in two cases: 1. The css imports have changed from `@uppy[package]/dist/styles.min.css` to `@uppy[package]/css/styles.min.css` 2. You were importing something that wasn't exported from the root, for instance `@uppy/core/lib/foo.js`. You can now only import things we explicitly exported. ## uppy@5.1.0 ### Minor Changes - 3290864: Bring back StatusBar and DragDrop into the CDN bundle ### Patch Changes - Updated dependencies [3290864] - @uppy/status-bar@5.0.0 - @uppy/drag-drop@5.0.0 ## @uppy/react@5.0.1 ### Patch Changes - a063bc3: Remove status-bar from export map ## @uppy/vue@3.0.1 ### Patch Changes - a063bc3: Remove status-bar from export map Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/all-ties-march.md | 9 --------- .changeset/odd-goats-bow.md | 6 ------ .changeset/whole-brooms-sneeze.md | 5 ----- BUNDLE-README.md | 2 +- README.md | 6 +++--- packages/@uppy/drag-drop/CHANGELOG.md | 9 +++++++++ packages/@uppy/drag-drop/package.json | 2 +- packages/@uppy/react/CHANGELOG.md | 6 ++++++ packages/@uppy/react/package.json | 2 +- packages/@uppy/status-bar/CHANGELOG.md | 9 +++++++++ packages/@uppy/status-bar/package.json | 2 +- packages/@uppy/vue/CHANGELOG.md | 6 ++++++ packages/@uppy/vue/package.json | 2 +- packages/uppy/CHANGELOG.md | 12 ++++++++++++ packages/uppy/package.json | 2 +- 15 files changed, 51 insertions(+), 29 deletions(-) delete mode 100644 .changeset/all-ties-march.md delete mode 100644 .changeset/odd-goats-bow.md delete mode 100644 .changeset/whole-brooms-sneeze.md diff --git a/.changeset/all-ties-march.md b/.changeset/all-ties-march.md deleted file mode 100644 index 5e5053d70..000000000 --- a/.changeset/all-ties-march.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@uppy/status-bar": major -"@uppy/drag-drop": major ---- - -All packages now have export maps. This is a breaking change in two cases: - -1. The css imports have changed from `@uppy[package]/dist/styles.min.css` to `@uppy[package]/css/styles.min.css` -2. You were importing something that wasn't exported from the root, for instance `@uppy/core/lib/foo.js`. You can now only import things we explicitly exported. diff --git a/.changeset/odd-goats-bow.md b/.changeset/odd-goats-bow.md deleted file mode 100644 index 86b73095e..000000000 --- a/.changeset/odd-goats-bow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@uppy/react": patch -"@uppy/vue": patch ---- - -Remove status-bar from export map diff --git a/.changeset/whole-brooms-sneeze.md b/.changeset/whole-brooms-sneeze.md deleted file mode 100644 index 92e518a59..000000000 --- a/.changeset/whole-brooms-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"uppy": minor ---- - -Bring back StatusBar and DragDrop into the CDN bundle diff --git a/BUNDLE-README.md b/BUNDLE-README.md index e015bef67..478de99ea 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 f53ca78bf..31e727555 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/v5.0.0/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.0/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/v5.0.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v5.1.0/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) diff --git a/packages/@uppy/drag-drop/CHANGELOG.md b/packages/@uppy/drag-drop/CHANGELOG.md index c7146d9e3..6de6eeee3 100644 --- a/packages/@uppy/drag-drop/CHANGELOG.md +++ b/packages/@uppy/drag-drop/CHANGELOG.md @@ -1,5 +1,14 @@ # @uppy/drag-drop +## 5.0.0 + +### Major Changes + +- 3290864: All packages now have export maps. This is a breaking change in two cases: + + 1. The css imports have changed from `@uppy[package]/dist/styles.min.css` to `@uppy[package]/css/styles.min.css` + 2. You were importing something that wasn't exported from the root, for instance `@uppy/core/lib/foo.js`. You can now only import things we explicitly exported. + ## 4.2.2 ### Patch Changes diff --git a/packages/@uppy/drag-drop/package.json b/packages/@uppy/drag-drop/package.json index a6958a91e..4f3ec25b4 100644 --- a/packages/@uppy/drag-drop/package.json +++ b/packages/@uppy/drag-drop/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/drag-drop", "description": "Droppable zone UI for Uppy. Drag and drop files into it to upload.", - "version": "4.2.2", + "version": "5.0.0", "license": "MIT", "main": "lib/index.js", "style": "dist/style.min.css", diff --git a/packages/@uppy/react/CHANGELOG.md b/packages/@uppy/react/CHANGELOG.md index ef8d9b2eb..3eb0ee3d4 100644 --- a/packages/@uppy/react/CHANGELOG.md +++ b/packages/@uppy/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/react +## 5.0.1 + +### Patch Changes + +- a063bc3: Remove status-bar from export map + ## 5.0.0 ### Major Changes diff --git a/packages/@uppy/react/package.json b/packages/@uppy/react/package.json index 3d63725f4..51d47815d 100644 --- a/packages/@uppy/react/package.json +++ b/packages/@uppy/react/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/react", "description": "React component wrappers around Uppy's official UI plugins.", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "main": "lib/index.js", "type": "module", diff --git a/packages/@uppy/status-bar/CHANGELOG.md b/packages/@uppy/status-bar/CHANGELOG.md index a4187a132..e389301c8 100644 --- a/packages/@uppy/status-bar/CHANGELOG.md +++ b/packages/@uppy/status-bar/CHANGELOG.md @@ -1,5 +1,14 @@ # @uppy/status-bar +## 5.0.0 + +### Major Changes + +- 3290864: All packages now have export maps. This is a breaking change in two cases: + + 1. The css imports have changed from `@uppy[package]/dist/styles.min.css` to `@uppy[package]/css/styles.min.css` + 2. You were importing something that wasn't exported from the root, for instance `@uppy/core/lib/foo.js`. You can now only import things we explicitly exported. + ## 4.2.3 ### Patch Changes diff --git a/packages/@uppy/status-bar/package.json b/packages/@uppy/status-bar/package.json index 1e89d844e..30d189ad4 100644 --- a/packages/@uppy/status-bar/package.json +++ b/packages/@uppy/status-bar/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/status-bar", "description": "A progress bar for Uppy, with many bells and whistles.", - "version": "4.2.3", + "version": "5.0.0", "license": "MIT", "main": "lib/index.js", "style": "dist/style.min.css", diff --git a/packages/@uppy/vue/CHANGELOG.md b/packages/@uppy/vue/CHANGELOG.md index 578f72ac5..045f72aa6 100644 --- a/packages/@uppy/vue/CHANGELOG.md +++ b/packages/@uppy/vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/vue +## 3.0.1 + +### Patch Changes + +- a063bc3: Remove status-bar from export map + ## 3.0.0 ### Major Changes diff --git a/packages/@uppy/vue/package.json b/packages/@uppy/vue/package.json index de2ff29f6..5a339051d 100644 --- a/packages/@uppy/vue/package.json +++ b/packages/@uppy/vue/package.json @@ -1,6 +1,6 @@ { "name": "@uppy/vue", - "version": "3.0.0", + "version": "3.0.1", "license": "MIT", "type": "module", "sideEffects": [ diff --git a/packages/uppy/CHANGELOG.md b/packages/uppy/CHANGELOG.md index 193428403..888d7bda7 100644 --- a/packages/uppy/CHANGELOG.md +++ b/packages/uppy/CHANGELOG.md @@ -1,5 +1,17 @@ # uppy +## 5.1.0 + +### Minor Changes + +- 3290864: Bring back StatusBar and DragDrop into the CDN bundle + +### Patch Changes + +- Updated dependencies [3290864] + - @uppy/status-bar@5.0.0 + - @uppy/drag-drop@5.0.0 + ## 5.0.0 ### Major Changes diff --git a/packages/uppy/package.json b/packages/uppy/package.json index b9f996c90..966491896 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": "5.0.0", + "version": "5.1.0", "license": "MIT", "main": "lib/index.js", "module": "lib/index.js",