Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/nine-goats-attend.md

This file was deleted.

2 changes: 1 addition & 1 deletion BUNDLE-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Note that the recommended way to use Uppy is to install it with yarn/npm and use
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus
```

Add CSS
[uppy.min.css](https://releases.transloadit.com/uppy/v5.2.1/uppy.min.css),
[uppy.min.css](https://releases.transloadit.com/uppy/v5.2.2/uppy.min.css),
either to your HTML page’s `<head>` or include in JS, if your bundler of choice
supports it.

Expand All @@ -117,7 +117,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
```html
<!-- 1. Add CSS to `<head>` -->
<link
href="https://releases.transloadit.com/uppy/v5.2.1/uppy.min.css"
href="https://releases.transloadit.com/uppy/v5.2.2/uppy.min.css"
rel="stylesheet"
/>

Expand All @@ -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.2.1/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v5.2.2/uppy.min.mjs'

const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
Expand Down
6 changes: 6 additions & 0 deletions packages/@uppy/dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @uppy/dashboard

## 5.1.1

### Patch Changes

- 6975782: Remove event listener for `focus` and `click`, preventing a memory leak.

## 5.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/dashboard",
"description": "Universal UI plugin for Uppy.",
"version": "5.1.0",
"version": "5.1.1",
"license": "MIT",
"style": "dist/style.min.css",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions packages/uppy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# uppy

## 5.2.2

### Patch Changes

- Updated dependencies [6975782]
- @uppy/[email protected]

## 5.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/uppy/package.json
Original file line number Diff line number Diff line change
@@ -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.2.1",
"version": "5.2.2",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
Expand Down