Skip to content

Commit 91c6bfd

Browse files
[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>
1 parent 5ba2c1c commit 91c6bfd

File tree

15 files changed

+66
-20
lines changed

15 files changed

+66
-20
lines changed

.changeset/mean-times-try.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

BUNDLE-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can
44
use this from a CDN
5-
(`<script src="https://releases.transloadit.com/uppy/v5.1.5/uppy.min.js"></script>`)
5+
(`<script src="https://releases.transloadit.com/uppy/v5.1.6/uppy.min.js"></script>`)
66
or bundle it with your webapp.
77

88
Note that the recommended way to use Uppy is to install it with yarn/npm and use

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus
103103
```
104104

105105
Add CSS
106-
[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.5/uppy.min.css),
106+
[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.6/uppy.min.css),
107107
either to your HTML page’s `<head>` or include in JS, if your bundler of choice
108108
supports it.
109109

@@ -117,7 +117,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
117117
```html
118118
<!-- 1. Add CSS to `<head>` -->
119119
<link
120-
href="https://releases.transloadit.com/uppy/v5.1.5/uppy.min.css"
120+
href="https://releases.transloadit.com/uppy/v5.1.6/uppy.min.css"
121121
rel="stylesheet"
122122
/>
123123

@@ -128,7 +128,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
128128
Uppy,
129129
Dashboard,
130130
Tus,
131-
} from 'https://releases.transloadit.com/uppy/v5.1.5/uppy.min.mjs'
131+
} from 'https://releases.transloadit.com/uppy/v5.1.6/uppy.min.mjs'
132132
133133
const uppy = new Uppy()
134134
uppy.use(Dashboard, { target: '#files-drag-drop' })

packages/@uppy/companion-client/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @uppy/companion-client
22

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- 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.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [5ba2c1c]
12+
- @uppy/utils@7.1.0
13+
- @uppy/core@5.1.0
14+
315
## 5.0.1
416

517
### Patch Changes

packages/@uppy/companion-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/companion-client",
33
"description": "Client library for communication with Companion. Intended for use in Uppy plugins.",
4-
"version": "5.0.1",
4+
"version": "5.1.0",
55
"license": "MIT",
66
"type": "module",
77
"sideEffects": false,

packages/@uppy/companion/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @uppy/companion
22

3+
## 6.1.0
4+
5+
### Minor Changes
6+
7+
- 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.
8+
39
## 6.0.2
410

511
### Patch Changes

packages/@uppy/companion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uppy/companion",
3-
"version": "6.0.2",
3+
"version": "6.1.0",
44
"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:",
55
"types": "lib/companion.d.ts",
66
"author": "Transloadit.com",

packages/@uppy/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @uppy/core
22

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- 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.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [5ba2c1c]
12+
- @uppy/utils@7.1.0
13+
314
## 5.0.2
415

516
### Patch Changes

packages/@uppy/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/core",
33
"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:",
4-
"version": "5.0.2",
4+
"version": "5.1.0",
55
"license": "MIT",
66
"style": "dist/style.min.css",
77
"type": "module",

packages/@uppy/provider-views/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @uppy/provider-views
22

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- 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.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [5ba2c1c]
12+
- @uppy/utils@7.1.0
13+
- @uppy/core@5.1.0
14+
315
## 5.0.2
416

517
### Patch Changes

0 commit comments

Comments
 (0)