Skip to content

Commit 9099db6

Browse files
[ci] release
1 parent e6e1466 commit 9099db6

File tree

7 files changed

+19
-11
lines changed

7 files changed

+19
-11
lines changed

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

packages/@uppy/dashboard/CHANGELOG.md

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

3+
## 5.1.1
4+
5+
### Patch Changes
6+
7+
- 6975782: Remove event listener for `focus` and `click`, preventing a memory leak.
8+
39
## 5.1.0
410

511
### Minor Changes

packages/@uppy/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/dashboard",
33
"description": "Universal UI plugin for Uppy.",
4-
"version": "5.1.0",
4+
"version": "5.1.1",
55
"license": "MIT",
66
"style": "dist/style.min.css",
77
"type": "module",

packages/uppy/CHANGELOG.md

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

3+
## 5.2.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [6975782]
8+
- @uppy/dashboard@5.1.1
9+
310
## 5.2.1
411

512
### Patch Changes

packages/uppy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "uppy",
33
"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:",
4-
"version": "5.2.1",
4+
"version": "5.2.2",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"module": "lib/index.js",

0 commit comments

Comments
 (0)