Skip to content

Commit 9d08779

Browse files
[ci] release (#6096)
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/golden-retriever@5.2.1 ### Patch Changes - d766c30: Fix: Don't restore `currentUploads` if no files are being restored. - Updated dependencies [648f245] - @uppy/utils@7.1.5 ## @uppy/google-drive-picker@1.1.1 ### Patch Changes - 50e2420: Improve Google Drive Picker folder picking: Resolve also folders inside shared drives (but not symlinks to folders) - Updated dependencies [648f245] - Updated dependencies [50e2420] - @uppy/utils@7.1.5 - @uppy/provider-views@5.2.2 ## @uppy/provider-views@5.2.2 ### Patch Changes - 50e2420: Improve Google Drive Picker folder picking: Resolve also folders inside shared drives (but not symlinks to folders) - Updated dependencies [648f245] - @uppy/utils@7.1.5 ## @uppy/utils@7.1.5 ### Patch Changes - 648f245: Fix `complete` event never firing for XHR and make sure the fetch aborts immediately if Uppy is cancelled before the fetch starts. ## @uppy/xhr-upload@5.1.1 ### Patch Changes - 648f245: Fix `complete` event never firing for XHR and make sure the fetch aborts immediately if Uppy is cancelled before the fetch starts. - Updated dependencies [648f245] - @uppy/utils@7.1.5 ## uppy@5.2.1 ### Patch Changes - Updated dependencies [648f245] - Updated dependencies [50e2420] - Updated dependencies [d766c30] - @uppy/xhr-upload@5.1.1 - @uppy/google-drive-picker@1.1.1 - @uppy/provider-views@5.2.2 - @uppy/golden-retriever@5.2.1 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d766c30 commit 9d08779

File tree

17 files changed

+62
-27
lines changed

17 files changed

+62
-27
lines changed

.changeset/afraid-beers-listen.md

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

.changeset/chilly-numbers-warn.md

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

.changeset/kind-bottles-battle.md

Lines changed: 0 additions & 5 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.2.0/uppy.min.js"></script>`)
5+
(`<script src="https://releases.transloadit.com/uppy/v5.2.1/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.2.0/uppy.min.css),
106+
[uppy.min.css](https://releases.transloadit.com/uppy/v5.2.1/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.2.0/uppy.min.css"
120+
href="https://releases.transloadit.com/uppy/v5.2.1/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.2.0/uppy.min.mjs'
131+
} from 'https://releases.transloadit.com/uppy/v5.2.1/uppy.min.mjs'
132132
133133
const uppy = new Uppy()
134134
uppy.use(Dashboard, { target: '#files-drag-drop' })

packages/@uppy/golden-retriever/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @uppy/golden-retriever
22

3+
## 5.2.1
4+
5+
### Patch Changes
6+
7+
- d766c30: Fix: Don't restore `currentUploads` if no files are being restored.
8+
- Updated dependencies [648f245]
9+
- @uppy/utils@7.1.5
10+
311
## 5.2.0
412

513
### Minor Changes

packages/@uppy/golden-retriever/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/golden-retriever",
33
"description": "The GoldenRetriever Uppy plugin saves selected files in browser cache to seamlessly resume uploding after browser crash or accidentally closed tab",
4-
"version": "5.2.0",
4+
"version": "5.2.1",
55
"license": "MIT",
66
"type": "module",
77
"sideEffects": [

packages/@uppy/google-drive-picker/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @uppy/google-drive-picker
22

3+
## 1.1.1
4+
5+
### Patch Changes
6+
7+
- 50e2420: Improve Google Drive Picker folder picking: Resolve also folders inside shared drives (but not symlinks to folders)
8+
- Updated dependencies [648f245]
9+
- Updated dependencies [50e2420]
10+
- @uppy/utils@7.1.5
11+
- @uppy/provider-views@5.2.2
12+
313
## 1.1.0
414

515
### Minor Changes

packages/@uppy/google-drive-picker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/google-drive-picker",
33
"description": "The Google Drive Picker plugin for Uppy lets users import files from their Google Drive account",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"license": "MIT",
66
"type": "module",
77
"sideEffects": false,

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

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

3+
## 5.2.2
4+
5+
### Patch Changes
6+
7+
- 50e2420: Improve Google Drive Picker folder picking: Resolve also folders inside shared drives (but not symlinks to folders)
8+
- Updated dependencies [648f245]
9+
- @uppy/utils@7.1.5
10+
311
## 5.2.1
412

513
### Patch Changes

0 commit comments

Comments
 (0)