From 91c6bfd7d79cb6bdae07f7765e5db39c011bbd46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 22:01:27 +0200 Subject: [PATCH] [ci] release (#6008) 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/companion@6.1.0 ### Minor Changes - 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. ## @uppy/companion-client@5.1.0 ### Minor Changes - 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. ### Patch Changes - Updated dependencies [5ba2c1c] - @uppy/utils@7.1.0 - @uppy/core@5.1.0 ## @uppy/core@5.1.0 ### Minor Changes - 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. ### Patch Changes - Updated dependencies [5ba2c1c] - @uppy/utils@7.1.0 ## @uppy/provider-views@5.1.0 ### Minor Changes - 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. ### Patch Changes - Updated dependencies [5ba2c1c] - @uppy/utils@7.1.0 - @uppy/core@5.1.0 ## @uppy/utils@7.1.0 ### Minor Changes - 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. ## uppy@5.1.6 ### Patch Changes - Updated dependencies [5ba2c1c] - @uppy/companion-client@5.1.0 - @uppy/provider-views@5.1.0 - @uppy/core@5.1.0 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/mean-times-try.md | 10 ---------- BUNDLE-README.md | 2 +- README.md | 6 +++--- packages/@uppy/companion-client/CHANGELOG.md | 12 ++++++++++++ packages/@uppy/companion-client/package.json | 2 +- packages/@uppy/companion/CHANGELOG.md | 6 ++++++ packages/@uppy/companion/package.json | 2 +- packages/@uppy/core/CHANGELOG.md | 11 +++++++++++ packages/@uppy/core/package.json | 2 +- packages/@uppy/provider-views/CHANGELOG.md | 12 ++++++++++++ packages/@uppy/provider-views/package.json | 2 +- packages/@uppy/utils/CHANGELOG.md | 6 ++++++ packages/@uppy/utils/package.json | 2 +- packages/uppy/CHANGELOG.md | 9 +++++++++ packages/uppy/package.json | 2 +- 15 files changed, 66 insertions(+), 20 deletions(-) delete mode 100644 .changeset/mean-times-try.md diff --git a/.changeset/mean-times-try.md b/.changeset/mean-times-try.md deleted file mode 100644 index 890d07281..000000000 --- a/.changeset/mean-times-try.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@uppy/companion-client": minor -"@uppy/provider-views": minor -"@uppy/companion": minor -"@uppy/utils": minor -"@uppy/core": minor ---- - - -Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. \ No newline at end of file diff --git a/BUNDLE-README.md b/BUNDLE-README.md index aecae0327..ff2088f89 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 096c5f1c1..00e4261f9 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.1.5/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.6/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.1.5/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v5.1.6/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) diff --git a/packages/@uppy/companion-client/CHANGELOG.md b/packages/@uppy/companion-client/CHANGELOG.md index f5e73c820..c892432d6 100644 --- a/packages/@uppy/companion-client/CHANGELOG.md +++ b/packages/@uppy/companion-client/CHANGELOG.md @@ -1,5 +1,17 @@ # @uppy/companion-client +## 5.1.0 + +### Minor Changes + +- 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. + +### Patch Changes + +- Updated dependencies [5ba2c1c] + - @uppy/utils@7.1.0 + - @uppy/core@5.1.0 + ## 5.0.1 ### Patch Changes diff --git a/packages/@uppy/companion-client/package.json b/packages/@uppy/companion-client/package.json index 40d208f0e..5fd0e9ed5 100644 --- a/packages/@uppy/companion-client/package.json +++ b/packages/@uppy/companion-client/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/companion-client", "description": "Client library for communication with Companion. Intended for use in Uppy plugins.", - "version": "5.0.1", + "version": "5.1.0", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/@uppy/companion/CHANGELOG.md b/packages/@uppy/companion/CHANGELOG.md index 50ed0d4d8..a66a0756a 100644 --- a/packages/@uppy/companion/CHANGELOG.md +++ b/packages/@uppy/companion/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/companion +## 6.1.0 + +### Minor Changes + +- 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. + ## 6.0.2 ### Patch Changes diff --git a/packages/@uppy/companion/package.json b/packages/@uppy/companion/package.json index 2fc6741d4..1bb18ebff 100644 --- a/packages/@uppy/companion/package.json +++ b/packages/@uppy/companion/package.json @@ -1,6 +1,6 @@ { "name": "@uppy/companion", - "version": "6.0.2", + "version": "6.1.0", "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:", "types": "lib/companion.d.ts", "author": "Transloadit.com", diff --git a/packages/@uppy/core/CHANGELOG.md b/packages/@uppy/core/CHANGELOG.md index 1f85cf4ab..647ff1b6f 100644 --- a/packages/@uppy/core/CHANGELOG.md +++ b/packages/@uppy/core/CHANGELOG.md @@ -1,5 +1,16 @@ # @uppy/core +## 5.1.0 + +### Minor Changes + +- 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. + +### Patch Changes + +- Updated dependencies [5ba2c1c] + - @uppy/utils@7.1.0 + ## 5.0.2 ### Patch Changes diff --git a/packages/@uppy/core/package.json b/packages/@uppy/core/package.json index 5e5ff0a34..22b069336 100644 --- a/packages/@uppy/core/package.json +++ b/packages/@uppy/core/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/core", "description": "Core module for the 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.2", + "version": "5.1.0", "license": "MIT", "style": "dist/style.min.css", "type": "module", diff --git a/packages/@uppy/provider-views/CHANGELOG.md b/packages/@uppy/provider-views/CHANGELOG.md index 6328a5329..4ab48ea11 100644 --- a/packages/@uppy/provider-views/CHANGELOG.md +++ b/packages/@uppy/provider-views/CHANGELOG.md @@ -1,5 +1,17 @@ # @uppy/provider-views +## 5.1.0 + +### Minor Changes + +- 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. + +### Patch Changes + +- Updated dependencies [5ba2c1c] + - @uppy/utils@7.1.0 + - @uppy/core@5.1.0 + ## 5.0.2 ### Patch Changes diff --git a/packages/@uppy/provider-views/package.json b/packages/@uppy/provider-views/package.json index e692e2891..27a02d82e 100644 --- a/packages/@uppy/provider-views/package.json +++ b/packages/@uppy/provider-views/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/provider-views", "description": "View library for Uppy remote provider plugins.", - "version": "5.0.2", + "version": "5.1.0", "license": "MIT", "style": "dist/style.min.css", "type": "module", diff --git a/packages/@uppy/utils/CHANGELOG.md b/packages/@uppy/utils/CHANGELOG.md index 3fcc15589..975e8bd60 100644 --- a/packages/@uppy/utils/CHANGELOG.md +++ b/packages/@uppy/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/utils +## 7.1.0 + +### Minor Changes + +- 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account. + ## 7.0.2 ### Patch Changes diff --git a/packages/@uppy/utils/package.json b/packages/@uppy/utils/package.json index 7203034e1..895cec4f7 100644 --- a/packages/@uppy/utils/package.json +++ b/packages/@uppy/utils/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/utils", "description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.", - "version": "7.0.2", + "version": "7.1.0", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/uppy/CHANGELOG.md b/packages/uppy/CHANGELOG.md index 70339d259..10723231f 100644 --- a/packages/uppy/CHANGELOG.md +++ b/packages/uppy/CHANGELOG.md @@ -1,5 +1,14 @@ # uppy +## 5.1.6 + +### Patch Changes + +- Updated dependencies [5ba2c1c] + - @uppy/companion-client@5.1.0 + - @uppy/provider-views@5.1.0 + - @uppy/core@5.1.0 + ## 5.1.5 ### Patch Changes diff --git a/packages/uppy/package.json b/packages/uppy/package.json index e9dc9424f..c570022a6 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.1.5", + "version": "5.1.6", "license": "MIT", "main": "lib/index.js", "module": "lib/index.js",