From 38126a11cf97ea0f96b867082b34f5af60c707e4 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 11 Nov 2024 09:42:33 +0000
Subject: [PATCH] Release: uppy@4.7.0 (#5506)
| Package | Version | Package | Version |
| --------------- | ------- | --------------- | ------- |
| @uppy/aws-s3 | 4.1.2 | @uppy/tus | 4.1.4 |
| @uppy/companion | 5.1.4 | uppy | 4.7.0 |
| @uppy/locales | 4.3.0 | | |
- @uppy/aws-s3: clarify and warn when incorrect buckets settings are used (Mikael Finstad / #5505)
- @uppy/tus: fix event upload-success response.body.xhr (ItsOnlyBinary / #5503)
- @uppy/companion: Enable CSRF protection in grant (OAuth2) (Mikael Finstad / #5504)
- @uppy/locales: Add ms_MY (Malay) locale (Salimi / #5488)
---
BUNDLE-README.md | 2 +-
CHANGELOG.md | 16 ++++
README.md | 86 +++++++++----------
examples/cdn-example/index.html | 4 +-
.../uppy-with-companion/client/index.html | 4 +-
packages/@uppy/aws-s3/CHANGELOG.md | 7 ++
packages/@uppy/aws-s3/package.json | 2 +-
packages/@uppy/companion/CHANGELOG.md | 7 ++
packages/@uppy/companion/package.json | 2 +-
packages/@uppy/locales/CHANGELOG.md | 7 ++
packages/@uppy/locales/package.json | 2 +-
packages/@uppy/tus/CHANGELOG.md | 7 ++
packages/@uppy/tus/package.json | 2 +-
packages/uppy/package.json | 2 +-
14 files changed, 97 insertions(+), 53 deletions(-)
diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 07ba61d41f..c6847fd6f8 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 c8ac46a073..aa82d3a6fa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,22 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.7.0
+
+Released: 2024-11-11
+
+| Package | Version | Package | Version |
+| --------------- | ------- | --------------- | ------- |
+| @uppy/aws-s3 | 4.1.2 | @uppy/tus | 4.1.4 |
+| @uppy/companion | 5.1.4 | uppy | 4.7.0 |
+| @uppy/locales | 4.3.0 | | |
+
+- @uppy/aws-s3: clarify and warn when incorrect buckets settings are used (Mikael Finstad / #5505)
+- @uppy/tus: fix event upload-success response.body.xhr (ItsOnlyBinary / #5503)
+- @uppy/companion: Enable CSRF protection in grant (OAuth2) (Mikael Finstad / #5504)
+- @uppy/locales: Add ms_MY (Malay) locale (Salimi / #5488)
+
+
## 4.6.0
Released: 2024-10-31
diff --git a/README.md b/README.md
index d9788d29a1..b210d7462d 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.6.0/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.7.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.6.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.7.0/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -313,58 +313,58 @@ Use Uppy in your project?