Skip to content

Commit daa7d1d

Browse files
| Package | Version | Package | Version | | -------------------------- | ------- | -------------------------- | ------- | | @uppy/core | 4.4.2 | @uppy/provider-views | 4.4.2 | | @uppy/google-drive-picker | 0.3.3 | @uppy/url | 4.2.2 | | @uppy/google-photos-picker | 0.3.3 | @uppy/utils | 6.1.2 | | @uppy/locales | 4.5.1 | uppy | 4.13.2 | - @uppy/utils: do not strip www in getSocketHost (Merlijn Vos / #5621) - @uppy/url: skip drag/dropped local files (Merlijn Vos / #5626) - @uppy/provider-views: fix google photos picker videos (Mikael Finstad / #5635) - @uppy/core,@uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/provider-views: fix google picker i18n (Mikael Finstad / #5632)
1 parent ad98ed3 commit daa7d1d

File tree

19 files changed

+77
-16
lines changed

19 files changed

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

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.13.2
16+
17+
Released: 2025-02-03
18+
19+
| Package | Version | Package | Version |
20+
| -------------------------- | ------- | -------------------------- | ------- |
21+
| @uppy/core | 4.4.2 | @uppy/provider-views | 4.4.2 |
22+
| @uppy/google-drive-picker | 0.3.3 | @uppy/url | 4.2.2 |
23+
| @uppy/google-photos-picker | 0.3.3 | @uppy/utils | 6.1.2 |
24+
| @uppy/locales | 4.5.1 | uppy | 4.13.2 |
25+
26+
- @uppy/utils: do not strip www in getSocketHost (Merlijn Vos / #5621)
27+
- @uppy/url: skip drag/dropped local files (Merlijn Vos / #5626)
28+
- @uppy/provider-views: fix google photos picker videos (Mikael Finstad / #5635)
29+
- @uppy/core,@uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/provider-views:
30+
fix google picker i18n (Mikael Finstad / #5632)
31+
32+
1533
## 4.13.1
1634

1735
Released: 2025-01-22

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.13.1/uppy.min.css),
90+
[uppy.min.css](https://releases.transloadit.com/uppy/v4.13.2/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.13.1/uppy.min.css"
104+
href="https://releases.transloadit.com/uppy/v4.13.2/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.13.1/uppy.min.mjs'
115+
} from 'https://releases.transloadit.com/uppy/v4.13.2/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.13.1/uppy.min.css"
8+
href="https://releases.transloadit.com/uppy/v4.13.2/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.13.1/uppy.min.mjs'
22+
} from 'https://releases.transloadit.com/uppy/v4.13.2/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.13.1/uppy.min.css"
8+
href="https://releases.transloadit.com/uppy/v4.13.2/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.13.1/uppy.min.mjs'
22+
} from 'https://releases.transloadit.com/uppy/v4.13.2/uppy.min.mjs'
2323

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

packages/@uppy/core/CHANGELOG.md

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

3+
## 4.4.2
4+
5+
Released: 2025-02-03
6+
Included in: Uppy v4.13.2
7+
8+
- @uppy/core,@uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/provider-views:
9+
310
## 4.4.0
411

512
Released: 2025-01-06

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": "4.4.1",
4+
"version": "4.4.2",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"style": "dist/style.min.css",

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.3
4+
5+
Released: 2025-02-03
6+
Included in: Uppy v4.13.2
7+
8+
- @uppy/core,@uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/provider-views:
9+
310
## 0.3.1
411

512
Released: 2025-01-08

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.2",
4+
"version": "0.3.3",
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.3
4+
5+
Released: 2025-02-03
6+
Included in: Uppy v4.13.2
7+
8+
- @uppy/core,@uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/provider-views:
9+
310
## 0.3.1
411

512
Released: 2025-01-08

0 commit comments

Comments
 (0)