From 4faf2b4660c67428b761616800168891e448004c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 18 Jul 2024 16:04:06 +0000
Subject: [PATCH] Release: uppy@4.0.5 (#5357)
| Package | Version | Package | Version |
| ---------------- | ------- | ---------------- | ------- |
| @uppy/aws-s3 | 4.0.1 | uppy | 4.0.5 |
| @uppy/xhr-upload | 4.0.2 | | |
- @uppy/aws-s3: use default `Body` generic & export `AwsBody` (Merlijn Vos / #5353)
- @uppy/xhr-upload: bring back getResponseData (Merlijn Vos / #5354)
- @uppy/aws-s3: only send `PartNumber` and `ETag` in completion request (Antoine du Hamel / #5356)
---
BUNDLE-README.md | 2 +-
CHANGELOG.md | 14 ++++++++++++++
README.md | 8 ++++----
examples/cdn-example/index.html | 4 ++--
examples/uppy-with-companion/client/index.html | 4 ++--
packages/@uppy/aws-s3/CHANGELOG.md | 8 ++++++++
packages/@uppy/aws-s3/package.json | 2 +-
packages/@uppy/xhr-upload/CHANGELOG.md | 7 +++++++
packages/@uppy/xhr-upload/package.json | 2 +-
packages/uppy/package.json | 2 +-
10 files changed, 41 insertions(+), 12 deletions(-)
diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 2ab3b82c9..81db99b92 100644
--- a/BUNDLE-README.md
+++ b/BUNDLE-README.md
@@ -2,7 +2,7 @@
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can
use this from a CDN
-(``)
+(``)
or bundle it with your webapp.
Note that the recommended way to use Uppy is to install it with yarn/npm and use
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 42d222775..183b2c429 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,20 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.0.5
+
+Released: 2024-07-18
+
+| Package | Version | Package | Version |
+| ---------------- | ------- | ---------------- | ------- |
+| @uppy/aws-s3 | 4.0.1 | uppy | 4.0.5 |
+| @uppy/xhr-upload | 4.0.2 | | |
+
+- @uppy/aws-s3: use default `Body` generic & export `AwsBody` (Merlijn Vos / #5353)
+- @uppy/xhr-upload: bring back getResponseData (Merlijn Vos / #5354)
+- @uppy/aws-s3: only send `PartNumber` and `ETag` in completion request (Antoine du Hamel / #5356)
+
+
## 4.0.4
Released: 2024-07-15
diff --git a/README.md b/README.md
index 5e4c8bad3..81345f97a 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus
```
Add CSS
-[uppy.min.css](https://releases.transloadit.com/uppy/v4.0.4/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.0.5/uppy.min.css),
either to your HTML page’s `
` or include in JS, if your bundler of choice
supports it.
@@ -102,7 +102,7 @@ object.
```html
@@ -113,7 +113,7 @@ object.
Uppy,
Dashboard,
Tus,
- } from 'https://releases.transloadit.com/uppy/v4.0.4/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.0.5/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -309,7 +309,7 @@ Use Uppy in your project?
-
+
diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html
index 618dab4cb..d62a8ff9c 100644
--- a/examples/cdn-example/index.html
+++ b/examples/cdn-example/index.html
@@ -5,7 +5,7 @@
@@ -19,7 +19,7 @@
Dashboard,
Webcam,
Tus,
- } from 'https://releases.transloadit.com/uppy/v4.0.4/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.0.5/uppy.min.mjs'
const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
diff --git a/examples/uppy-with-companion/client/index.html b/examples/uppy-with-companion/client/index.html
index b25891474..bd6aacaba 100644
--- a/examples/uppy-with-companion/client/index.html
+++ b/examples/uppy-with-companion/client/index.html
@@ -5,7 +5,7 @@
@@ -19,7 +19,7 @@
Instagram,
GoogleDrive,
Tus,
- } from 'https://releases.transloadit.com/uppy/v4.0.4/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.0.5/uppy.min.mjs'
const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
diff --git a/packages/@uppy/aws-s3/CHANGELOG.md b/packages/@uppy/aws-s3/CHANGELOG.md
index 62077d817..00b678045 100644
--- a/packages/@uppy/aws-s3/CHANGELOG.md
+++ b/packages/@uppy/aws-s3/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/aws-s3
+## 4.0.1
+
+Released: 2024-07-18
+Included in: Uppy v4.0.5
+
+- @uppy/aws-s3: use default `Body` generic & export `AwsBody` (Merlijn Vos / #5353)
+- @uppy/aws-s3: only send `PartNumber` and `ETag` in completion request (Antoine du Hamel / #5356)
+
## 4.0.0
Released: 2024-07-10
diff --git a/packages/@uppy/aws-s3/package.json b/packages/@uppy/aws-s3/package.json
index 3744ef862..3d7592a6c 100644
--- a/packages/@uppy/aws-s3/package.json
+++ b/packages/@uppy/aws-s3/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/aws-s3",
"description": "Upload to Amazon S3 with Uppy",
- "version": "4.0.0",
+ "version": "4.0.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/@uppy/xhr-upload/CHANGELOG.md b/packages/@uppy/xhr-upload/CHANGELOG.md
index dee8186e0..9265cd326 100644
--- a/packages/@uppy/xhr-upload/CHANGELOG.md
+++ b/packages/@uppy/xhr-upload/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/xhr-upload
+## 4.0.2
+
+Released: 2024-07-18
+Included in: Uppy v4.0.5
+
+- @uppy/xhr-upload: bring back getResponseData (Merlijn Vos / #5354)
+
## 4.0.1
Released: 2024-07-15
diff --git a/packages/@uppy/xhr-upload/package.json b/packages/@uppy/xhr-upload/package.json
index 15e4243de..9e35f3e15 100644
--- a/packages/@uppy/xhr-upload/package.json
+++ b/packages/@uppy/xhr-upload/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/xhr-upload",
"description": "Plain and simple classic HTML multipart form uploads with Uppy, as well as uploads using the HTTP PUT method.",
- "version": "4.0.1",
+ "version": "4.0.2",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/uppy/package.json b/packages/uppy/package.json
index b8e20c93b..43e8fa231 100644
--- a/packages/uppy/package.json
+++ b/packages/uppy/package.json
@@ -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": "4.0.4",
+ "version": "4.0.5",
"license": "MIT",
"main": "index.mjs",
"module": "index.mjs",