From ddd2be58e179f5897155a240bedd1e10647a74bc Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 6 Jan 2025 09:13:12 +0000
Subject: [PATCH] Release: uppy@4.10.0 (#5571)
| Package | Version | Package | Version |
| -------------------- | ------- | -------------------- | ------- |
| @uppy/companion | 5.4.0 | @uppy/store-redux | 4.0.2 |
| @uppy/core | 4.3.2 | @uppy/url | 4.1.3 |
| @uppy/dashboard | 4.2.0 | @uppy/webdav | 0.2.0 |
| @uppy/provider-views | 4.2.1 | uppy | 4.10.0 |
| @uppy/react | 4.1.0 | | |
- @uppy/react: allow React 19 as peer dependency (Shubs / #5556)
- @uppy/webdav: add plugin icon (Merlijn Vos / #5555)
- @uppy/companion: pass fetched origins to window.postMessage() (Merlijn Vos / #5529)
- @uppy/core,@uppy/dashboard,@uppy/provider-views,@uppy/store-redux,@uppy/url: build(deps): bump nanoid from 5.0.7 to 5.0.9 (dependabot[bot] / #5544)
---
BUNDLE-README.md | 2 +-
CHANGELOG.md | 18 ++++
README.md | 85 ++++++++++---------
examples/cdn-example/index.html | 4 +-
.../uppy-with-companion/client/index.html | 4 +-
packages/@uppy/companion/CHANGELOG.md | 7 ++
packages/@uppy/companion/package.json | 2 +-
packages/@uppy/core/CHANGELOG.md | 7 ++
packages/@uppy/core/package.json | 2 +-
packages/@uppy/dashboard/CHANGELOG.md | 7 ++
packages/@uppy/dashboard/package.json | 2 +-
packages/@uppy/provider-views/CHANGELOG.md | 7 ++
packages/@uppy/provider-views/package.json | 2 +-
packages/@uppy/react/CHANGELOG.md | 7 ++
packages/@uppy/react/package.json | 2 +-
packages/@uppy/store-redux/CHANGELOG.md | 7 ++
packages/@uppy/store-redux/package.json | 2 +-
packages/@uppy/url/CHANGELOG.md | 7 ++
packages/@uppy/url/package.json | 2 +-
packages/@uppy/webdav/CHANGELOG.md | 7 ++
packages/@uppy/webdav/package.json | 2 +-
packages/uppy/package.json | 2 +-
22 files changed, 131 insertions(+), 56 deletions(-)
diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 53a9bf7460..95bbd68c9c 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 da3c2d30e0..baaecfce6f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,24 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.10.0
+
+Released: 2025-01-06
+
+| Package | Version | Package | Version |
+| -------------------- | ------- | -------------------- | ------- |
+| @uppy/companion | 5.4.0 | @uppy/store-redux | 4.0.2 |
+| @uppy/core | 4.3.2 | @uppy/url | 4.1.3 |
+| @uppy/dashboard | 4.2.0 | @uppy/webdav | 0.2.0 |
+| @uppy/provider-views | 4.2.1 | uppy | 4.10.0 |
+| @uppy/react | 4.1.0 | | |
+
+- @uppy/react: allow React 19 as peer dependency (Shubs / #5556)
+- @uppy/webdav: add plugin icon (Merlijn Vos / #5555)
+- @uppy/companion: pass fetched origins to window.postMessage() (Merlijn Vos / #5529)
+- @uppy/core,@uppy/dashboard,@uppy/provider-views,@uppy/store-redux,@uppy/url: build(deps): bump nanoid from 5.0.7 to 5.0.9 (dependabot[bot] / #5544)
+
+
## 4.9.0
Released: 2024-12-17
diff --git a/README.md b/README.md
index fe16d46b10..c51b99646d 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.9.0/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.10.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.9.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.10.0/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -315,56 +315,57 @@ Use Uppy in your project?