Skip to content

Commit 3ad21f0

Browse files
Release: uppy@4.12.0 (#5581)
| Package | Version | Package | Version | | -------------------------- | ------- | -------------------------- | ------- | | @uppy/google-drive-picker | 0.3.1 | @uppy/unsplash | 4.3.0 | | @uppy/google-photos-picker | 0.3.1 | @uppy/utils | 6.1.1 | | @uppy/onedrive | 4.2.1 | @uppy/xhr-upload | 4.3.1 | | @uppy/provider-views | 4.4.0 | uppy | 4.12.0 | | @uppy/svelte | 4.3.0 | | | - @uppy/unsplash,@uppy/provider-views: add utmSource option (Merlijn Vos / #5580) - @uppy/xhr-upload: allow custom error message in onAfterResponse (Merlijn Vos / #5578) - @uppy/onedrive: fix AsyncStore import (Merlijn Vos / #5579) - @uppy/google-drive-picker,@uppy/google-photos-picker: Fix Google Picker plugins locale (Merlijn Vos / #5575)
1 parent bc1578a commit 3ad21f0

File tree

20 files changed

+77
-17
lines changed

20 files changed

+77
-17
lines changed

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/v4.11.0/uppy.min.js"></script>`)
5+
(`<script src="https://releases.transloadit.com/uppy/v4.12.0/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

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@ Please add your entries in this format:
1212

1313
In the current stage we aim to release a new version at least every month.
1414

15+
## 4.12.0
16+
17+
Released: 2025-01-08
18+
19+
| Package | Version | Package | Version |
20+
| -------------------------- | ------- | -------------------------- | ------- |
21+
| @uppy/google-drive-picker | 0.3.1 | @uppy/unsplash | 4.3.0 |
22+
| @uppy/google-photos-picker | 0.3.1 | @uppy/utils | 6.1.1 |
23+
| @uppy/onedrive | 4.2.1 | @uppy/xhr-upload | 4.3.1 |
24+
| @uppy/provider-views | 4.4.0 | uppy | 4.12.0 |
25+
| @uppy/svelte | 4.3.0 | | |
26+
27+
- @uppy/unsplash,@uppy/provider-views: add utmSource option (Merlijn Vos / #5580)
28+
- @uppy/xhr-upload: allow custom error message in onAfterResponse (Merlijn Vos / #5578)
29+
- @uppy/onedrive: fix AsyncStore import (Merlijn Vos / #5579)
30+
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix Google Picker plugins locale (Merlijn Vos / #5575)
31+
32+
1533
## 4.11.0
1634

1735
Released: 2025-01-06

README.md

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

8989
Add CSS
90-
[uppy.min.css](https://releases.transloadit.com/uppy/v4.11.0/uppy.min.css),
90+
[uppy.min.css](https://releases.transloadit.com/uppy/v4.12.0/uppy.min.css),
9191
either to your HTML page’s `<head>` or include in JS, if your bundler of choice
9292
supports it.
9393

@@ -101,7 +101,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
101101
```html
102102
<!-- 1. Add CSS to `<head>` -->
103103
<link
104-
href="https://releases.transloadit.com/uppy/v4.11.0/uppy.min.css"
104+
href="https://releases.transloadit.com/uppy/v4.12.0/uppy.min.css"
105105
rel="stylesheet"
106106
/>
107107

@@ -112,7 +112,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
112112
Uppy,
113113
Dashboard,
114114
Tus,
115-
} from 'https://releases.transloadit.com/uppy/v4.11.0/uppy.min.mjs'
115+
} from 'https://releases.transloadit.com/uppy/v4.12.0/uppy.min.mjs'
116116
117117
const uppy = new Uppy()
118118
uppy.use(Dashboard, { target: '#files-drag-drop' })

examples/cdn-example/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link
8-
href="https://releases.transloadit.com/uppy/v4.11.0/uppy.min.css"
8+
href="https://releases.transloadit.com/uppy/v4.12.0/uppy.min.css"
99
rel="stylesheet"
1010
/>
1111
</head>
@@ -19,7 +19,7 @@
1919
Dashboard,
2020
Webcam,
2121
Tus,
22-
} from 'https://releases.transloadit.com/uppy/v4.11.0/uppy.min.mjs'
22+
} from 'https://releases.transloadit.com/uppy/v4.12.0/uppy.min.mjs'
2323

2424
const uppy = new Uppy({ debug: true, autoProceed: false })
2525
.use(Dashboard, { trigger: '#uppyModalOpener' })

examples/uppy-with-companion/client/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link
8-
href="https://releases.transloadit.com/uppy/v4.11.0/uppy.min.css"
8+
href="https://releases.transloadit.com/uppy/v4.12.0/uppy.min.css"
99
rel="stylesheet"
1010
/>
1111
</head>
@@ -19,7 +19,7 @@
1919
Instagram,
2020
GoogleDrive,
2121
Tus,
22-
} from 'https://releases.transloadit.com/uppy/v4.11.0/uppy.min.mjs'
22+
} from 'https://releases.transloadit.com/uppy/v4.12.0/uppy.min.mjs'
2323

2424
const uppy = new Uppy({ debug: true, autoProceed: false })
2525
.use(Dashboard, { trigger: '#uppyModalOpener' })

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

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

3+
## 0.3.1
4+
5+
Released: 2025-01-08
6+
Included in: Uppy v4.12.0
7+
8+
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix Google Picker plugins locale (Merlijn Vos / #5575)
9+
310
## 0.3.0
411

512
Released: 2025-01-06

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": "0.3.0",
4+
"version": "0.3.1",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"type": "module",

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

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

3+
## 0.3.1
4+
5+
Released: 2025-01-08
6+
Included in: Uppy v4.12.0
7+
8+
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix Google Picker plugins locale (Merlijn Vos / #5575)
9+
310
## 0.3.0
411

512
Released: 2025-01-06

packages/@uppy/google-photos-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-photos-picker",
33
"description": "The Google Photos Picker plugin for Uppy lets users import files from their Google Photos account",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"type": "module",

packages/@uppy/onedrive/CHANGELOG.md

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

3+
## 4.2.1
4+
5+
Released: 2025-01-08
6+
Included in: Uppy v4.12.0
7+
8+
- @uppy/onedrive: fix AsyncStore import (Merlijn Vos / #5579)
9+
310
## 4.2.0
411

512
Released: 2025-01-06

0 commit comments

Comments
 (0)