Skip to content

Commit c6d4cdd

Browse files
| Package | Version | Package | Version | | --------------- | ------- | --------------- | ------- | | @uppy/aws-s3 | 4.2.3 | @uppy/tus | 4.2.2 | | @uppy/companion | 5.5.1 | uppy | 4.13.1 | - @uppy/tus: fix resumeFromPreviousUpload race condition (Merlijn Vos / #5616) - @uppy/aws-s3: Fixed default shouldUseMultipart (Mika Laitinen / #5613) - meta: build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 (dependabot[bot] / #5611) - @uppy/aws-s3: remove console.error (Mikael Finstad / #5607) - @uppy/companion: unify http error responses (Mikael Finstad / #5595)
1 parent e329bfa commit c6d4cdd

File tree

12 files changed

+79
-41
lines changed

12 files changed

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

+16
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,22 @@ 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.1
16+
17+
Released: 2025-01-22
18+
19+
| Package | Version | Package | Version |
20+
| --------------- | ------- | --------------- | ------- |
21+
| @uppy/aws-s3 | 4.2.3 | @uppy/tus | 4.2.2 |
22+
| @uppy/companion | 5.5.1 | uppy | 4.13.1 |
23+
24+
- @uppy/tus: fix resumeFromPreviousUpload race condition (Merlijn Vos / #5616)
25+
- @uppy/aws-s3: Fixed default shouldUseMultipart (Mika Laitinen / #5613)
26+
- meta: build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 (dependabot[bot] / #5611)
27+
- @uppy/aws-s3: remove console.error (Mikael Finstad / #5607)
28+
- @uppy/companion: unify http error responses (Mikael Finstad / #5595)
29+
30+
1531
## 4.13.0
1632

1733
Released: 2025-01-15

README.md

+32-32
Large diffs are not rendered by default.

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

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

packages/@uppy/aws-s3/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @uppy/aws-s3
22

3+
## 4.2.3
4+
5+
Released: 2025-01-22
6+
Included in: Uppy v4.13.1
7+
8+
- @uppy/aws-s3: Fixed default shouldUseMultipart (Mika Laitinen / #5613)
9+
- @uppy/aws-s3: remove console.error (Mikael Finstad / #5607)
10+
311
## 4.2.2
412

513
Released: 2025-01-15

packages/@uppy/aws-s3/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/aws-s3",
33
"description": "Upload to Amazon S3 with Uppy",
4-
"version": "4.2.2",
4+
"version": "4.2.3",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"type": "module",

packages/@uppy/companion/CHANGELOG.md

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

3+
## 5.5.1
4+
5+
Released: 2025-01-22
6+
Included in: Uppy v4.13.1
7+
8+
- @uppy/companion: unify http error responses (Mikael Finstad / #5595)
9+
310
## 5.5.0
411

512
Released: 2025-01-15

packages/@uppy/companion/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uppy/companion",
3-
"version": "5.5.0",
3+
"version": "5.5.1",
44
"description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
55
"main": "lib/companion.js",
66
"types": "lib/companion.d.ts",

packages/@uppy/tus/CHANGELOG.md

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

3+
## 4.2.2
4+
5+
Released: 2025-01-22
6+
Included in: Uppy v4.13.1
7+
8+
- @uppy/tus: fix resumeFromPreviousUpload race condition (Merlijn Vos / #5616)
9+
310
## 4.2.0
411

512
Released: 2025-01-06

packages/@uppy/tus/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/tus",
33
"description": "Resumable uploads for Uppy using Tus.io",
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.0",
4+
"version": "4.13.1",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"module": "lib/index.js",

0 commit comments

Comments
 (0)