Skip to content

Commit 159a2a3

Browse files
| Package | Version | Package | Version | | ----------- | ------- | ----------- | ------- | | @uppy/core | 4.4.3 | uppy | 4.13.4 | | @uppy/react | 4.2.2 | | | - @uppy/core: make upload() idempotent (Merlijn Vos / #5677) - @uppy/react: pass getServerSnapshot to useSyncExternalStoreWithSelector (Merlijn Vos / #5685) - meta: Fix BasePlugin export for CDN bundle (Merlijn Vos / #5684) - meta: build(deps): bump docker/build-push-action from 6.14.0 to 6.15.0 (dependabot[bot] / #5673) - meta: build(deps): bump docker/setup-qemu-action from 3.4.0 to 3.6.0 (dependabot[bot] / #5675) - meta: build(deps): bump docker/metadata-action from 5.6.1 to 5.7.0 (dependabot[bot] / #5674)
1 parent f881fa0 commit 159a2a3

File tree

10 files changed

+42
-11
lines changed

10 files changed

+42
-11
lines changed

BUNDLE-README.md

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

+17
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,23 @@ 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.4
16+
17+
Released: 2025-03-13
18+
19+
| Package | Version | Package | Version |
20+
| ----------- | ------- | ----------- | ------- |
21+
| @uppy/core | 4.4.3 | uppy | 4.13.4 |
22+
| @uppy/react | 4.2.2 | | |
23+
24+
- @uppy/core: make upload() idempotent (Merlijn Vos / #5677)
25+
- @uppy/react: pass getServerSnapshot to useSyncExternalStoreWithSelector (Merlijn Vos / #5685)
26+
- meta: Fix BasePlugin export for CDN bundle (Merlijn Vos / #5684)
27+
- meta: build(deps): bump docker/build-push-action from 6.14.0 to 6.15.0 (dependabot[bot] / #5673)
28+
- meta: build(deps): bump docker/setup-qemu-action from 3.4.0 to 3.6.0 (dependabot[bot] / #5675)
29+
- meta: build(deps): bump docker/metadata-action from 5.6.1 to 5.7.0 (dependabot[bot] / #5674)
30+
31+
1532
## 4.13.3
1633

1734
Released: 2025-02-25

README.md

+3-3
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.3/uppy.min.css),
90+
[uppy.min.css](https://releases.transloadit.com/uppy/v4.13.4/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.3/uppy.min.css"
104+
href="https://releases.transloadit.com/uppy/v4.13.4/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.3/uppy.min.mjs'
115+
} from 'https://releases.transloadit.com/uppy/v4.13.4/uppy.min.mjs'
116116
117117
const uppy = new Uppy()
118118
uppy.use(Dashboard, { target: '#files-drag-drop' })

examples/cdn-example/index.html

+2-2
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.3/uppy.min.css"
8+
href="https://releases.transloadit.com/uppy/v4.13.4/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.3/uppy.min.mjs'
22+
} from 'https://releases.transloadit.com/uppy/v4.13.4/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

+2-2
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.3/uppy.min.css"
8+
href="https://releases.transloadit.com/uppy/v4.13.4/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.3/uppy.min.mjs'
22+
} from 'https://releases.transloadit.com/uppy/v4.13.4/uppy.min.mjs'
2323

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

packages/@uppy/core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @uppy/core
22

3+
## 4.4.3
4+
5+
Released: 2025-03-13
6+
Included in: Uppy v4.13.4
7+
8+
- @uppy/core: make upload() idempotent (Merlijn Vos / #5677)
9+
310
## 4.4.2
411

512
Released: 2025-02-03

packages/@uppy/core/package.json

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

packages/@uppy/react/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @uppy/react
22

3+
## 4.2.2
4+
5+
Released: 2025-03-13
6+
Included in: Uppy v4.13.4
7+
8+
- @uppy/react: pass getServerSnapshot to useSyncExternalStoreWithSelector (Merlijn Vos / #5685)
9+
310
## 4.2.0
411

512
Released: 2025-01-06

packages/@uppy/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/react",
33
"description": "React component wrappers around Uppy's official UI plugins.",
4-
"version": "4.2.1",
4+
"version": "4.2.2",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"type": "module",

packages/uppy/package.json

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

0 commit comments

Comments
 (0)