From 1aa355d47a3a1291bee3221c9a8e8bb665732837 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 20 Sep 2024 07:58:43 +0000
Subject: [PATCH] Release: uppy@4.4.0 (#5467)
| Package | Version | Package | Version |
| ----------------- | ------- | ----------------- | ------- |
| @uppy/companion | 5.1.1 | @uppy/tus | 4.1.1 |
| @uppy/svelte | 4.0.2 | @uppy/xhr-upload | 4.2.0 |
| @uppy/transloadit | 4.1.1 | uppy | 4.4.0 |
- @uppy/tus: fix retry check for status code 400 (Merlijn Vos / #5461)
- meta: Merge branch 'main' of https://github.com/transloadit/uppy (Murderlon)
- meta: fix AwsS3 endpoint option in private/dev (Murderlon)
- examples: build(deps): bump body-parser from 1.20.2 to 1.20.3 (dependabot[bot] / #5462)
- examples: build(deps-dev): bump vite from 5.3.1 to 5.3.6 (dependabot[bot] / #5459)
- @uppy/tus: set response from tus-js-client (Merlijn Vos / #5456)
- docs: fix assemblyOptions example for React (Merlijn Vos / #5450)
- docs: rename Edgly to Smart CDN (Merlijn Vos / #5449)
- @uppy/tus: correctly type tus on UppyFile (Merlijn Vos / #5454)
- docs: remove old legacy CDN reference (Murderlon)
- @uppy/xhr-upload: pass files to onBeforeRequest (Merlijn Vos / #5447)
- @uppy/svelte: fix generated module to not bundle Svelte (Antoine du Hamel / #5446)
- examples,@uppy/svelte: Bump svelte from 4.2.18 to 4.2.19 (dependabot[bot] / #5440)
- meta: bump Yarn to 4.4.1 (Antoine du Hamel / #5445)
- docs: fix broken links in locale docs (Serghei Cebotari / #5441)
---
BUNDLE-README.md | 2 +-
CHANGELOG.md | 27 ++++++++
README.md | 66 +++++++++----------
examples/cdn-example/index.html | 4 +-
.../uppy-with-companion/client/index.html | 4 +-
packages/@uppy/companion/package.json | 2 +-
packages/@uppy/svelte/CHANGELOG.md | 8 +++
packages/@uppy/svelte/package.json | 2 +-
packages/@uppy/transloadit/package.json | 2 +-
packages/@uppy/tus/CHANGELOG.md | 9 +++
packages/@uppy/tus/package.json | 2 +-
packages/@uppy/xhr-upload/CHANGELOG.md | 7 ++
packages/@uppy/xhr-upload/package.json | 2 +-
packages/uppy/package.json | 2 +-
14 files changed, 95 insertions(+), 44 deletions(-)
diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index c68e0b422..70d51edab 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 6116eae18..15ccb14ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,33 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.4.0
+
+Released: 2024-09-20
+
+| Package | Version | Package | Version |
+| ----------------- | ------- | ----------------- | ------- |
+| @uppy/companion | 5.1.1 | @uppy/tus | 4.1.1 |
+| @uppy/svelte | 4.0.2 | @uppy/xhr-upload | 4.2.0 |
+| @uppy/transloadit | 4.1.1 | uppy | 4.4.0 |
+
+- @uppy/tus: fix retry check for status code 400 (Merlijn Vos / #5461)
+- meta: Merge branch 'main' of https://github.com/transloadit/uppy (Murderlon)
+- meta: fix AwsS3 endpoint option in private/dev (Murderlon)
+- examples: build(deps): bump body-parser from 1.20.2 to 1.20.3 (dependabot[bot] / #5462)
+- examples: build(deps-dev): bump vite from 5.3.1 to 5.3.6 (dependabot[bot] / #5459)
+- @uppy/tus: set response from tus-js-client (Merlijn Vos / #5456)
+- docs: fix assemblyOptions example for React (Merlijn Vos / #5450)
+- docs: rename Edgly to Smart CDN (Merlijn Vos / #5449)
+- @uppy/tus: correctly type tus on UppyFile (Merlijn Vos / #5454)
+- docs: remove old legacy CDN reference (Murderlon)
+- @uppy/xhr-upload: pass files to onBeforeRequest (Merlijn Vos / #5447)
+- @uppy/svelte: fix generated module to not bundle Svelte (Antoine du Hamel / #5446)
+- examples,@uppy/svelte: Bump svelte from 4.2.18 to 4.2.19 (dependabot[bot] / #5440)
+- meta: bump Yarn to 4.4.1 (Antoine du Hamel / #5445)
+- docs: fix broken links in locale docs (Serghei Cebotari / #5441)
+
+
## 4.3.0
Released: 2024-08-29
diff --git a/README.md b/README.md
index d67c22796..2b828250e 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.3.0/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.4.0/uppy.min.css),
either to your HTML page’s `
` or include in JS, if your bundler of choice
supports it.
@@ -101,7 +101,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
```html
@@ -112,7 +112,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
Uppy,
Dashboard,
Tus,
- } from 'https://releases.transloadit.com/uppy/v4.3.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.4.0/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -315,31 +315,31 @@ Use Uppy in your project?
-
+
-
-
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -351,19 +351,19 @@ Use Uppy in your project?
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html
index fe5bb0c18..44368ef8a 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.3.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.4.0/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 638520bb2..b26ce2113 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.3.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.4.0/uppy.min.mjs'
const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
diff --git a/packages/@uppy/companion/package.json b/packages/@uppy/companion/package.json
index faf0f15c3..8369c1aff 100644
--- a/packages/@uppy/companion/package.json
+++ b/packages/@uppy/companion/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/companion",
- "version": "5.1.0",
+ "version": "5.1.1",
"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:",
"main": "lib/companion.js",
"types": "lib/companion.d.ts",
diff --git a/packages/@uppy/svelte/CHANGELOG.md b/packages/@uppy/svelte/CHANGELOG.md
index 5caec0282..1fc0f788d 100644
--- a/packages/@uppy/svelte/CHANGELOG.md
+++ b/packages/@uppy/svelte/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/svelte
+## 4.0.2
+
+Released: 2024-09-20
+Included in: Uppy v4.4.0
+
+- @uppy/svelte: fix generated module to not bundle Svelte (Antoine du Hamel / #5446)
+- examples,@uppy/svelte: Bump svelte from 4.2.18 to 4.2.19 (dependabot[bot] / #5440)
+
## 4.0.1
Released: 2024-08-20
diff --git a/packages/@uppy/svelte/package.json b/packages/@uppy/svelte/package.json
index 2e3a8643b..3ebd9e547 100644
--- a/packages/@uppy/svelte/package.json
+++ b/packages/@uppy/svelte/package.json
@@ -2,7 +2,7 @@
"name": "@uppy/svelte",
"description": "Uppy plugin that helps integrate Uppy into your Svelte project.",
"type": "module",
- "version": "4.0.1",
+ "version": "4.0.2",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "yarn run build",
diff --git a/packages/@uppy/transloadit/package.json b/packages/@uppy/transloadit/package.json
index e5c93cf90..7766af149 100644
--- a/packages/@uppy/transloadit/package.json
+++ b/packages/@uppy/transloadit/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/transloadit",
"description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more",
- "version": "4.1.0",
+ "version": "4.1.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/@uppy/tus/CHANGELOG.md b/packages/@uppy/tus/CHANGELOG.md
index 486b6b0f5..03d1d1696 100644
--- a/packages/@uppy/tus/CHANGELOG.md
+++ b/packages/@uppy/tus/CHANGELOG.md
@@ -1,5 +1,14 @@
# @uppy/tus
+## 4.1.1
+
+Released: 2024-09-20
+Included in: Uppy v4.4.0
+
+- @uppy/tus: fix retry check for status code 400 (Merlijn Vos / #5461)
+- @uppy/tus: set response from tus-js-client (Merlijn Vos / #5456)
+- @uppy/tus: correctly type tus on UppyFile (Merlijn Vos / #5454)
+
## 4.1.0
Released: 2024-08-29
diff --git a/packages/@uppy/tus/package.json b/packages/@uppy/tus/package.json
index 8994d1d22..dec8aec82 100644
--- a/packages/@uppy/tus/package.json
+++ b/packages/@uppy/tus/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/tus",
"description": "Resumable uploads for Uppy using Tus.io",
- "version": "4.1.0",
+ "version": "4.1.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 c46b197f7..467fb1c9f 100644
--- a/packages/@uppy/xhr-upload/CHANGELOG.md
+++ b/packages/@uppy/xhr-upload/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/xhr-upload
+## 4.2.0
+
+Released: 2024-09-20
+Included in: Uppy v4.4.0
+
+- @uppy/xhr-upload: pass files to onBeforeRequest (Merlijn Vos / #5447)
+
## 4.1.0
Released: 2024-08-29
diff --git a/packages/@uppy/xhr-upload/package.json b/packages/@uppy/xhr-upload/package.json
index 0b6fdb604..ce2d6ea61 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.1.0",
+ "version": "4.2.0",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/uppy/package.json b/packages/uppy/package.json
index e7f8850ab..b01faa4ec 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.3.0",
+ "version": "4.4.0",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",