From 0a78023b3bf7fabec75977859b96806f25eadbcf Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 26 Aug 2024 11:48:45 +0000
Subject: [PATCH] Release: uppy@4.2.1 (#5430)
| Package | Version | Package | Version |
| ----------- | ------- | ----------- | ------- |
| @uppy/react | 4.0.2 | uppy | 4.2.1 |
- @uppy/react: fix `use-sync-external-store` import (Merlijn Vos / #5426)
- docs: fix Golden Retriever service worker import (mkabatek / #5425)
---
BUNDLE-README.md | 2 +-
CHANGELOG.md | 12 ++
README.md | 104 +++++++++---------
examples/cdn-example/index.html | 4 +-
.../uppy-with-companion/client/index.html | 4 +-
packages/@uppy/react/CHANGELOG.md | 7 ++
packages/@uppy/react/package.json | 2 +-
packages/uppy/package.json | 2 +-
8 files changed, 78 insertions(+), 59 deletions(-)
diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 4250dd9048..ffad4ffe18 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 b914140356..7f849c5a90 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,18 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.2.1
+
+Released: 2024-08-26
+
+| Package | Version | Package | Version |
+| ----------- | ------- | ----------- | ------- |
+| @uppy/react | 4.0.2 | uppy | 4.2.1 |
+
+- @uppy/react: fix `use-sync-external-store` import (Merlijn Vos / #5426)
+- docs: fix Golden Retriever service worker import (mkabatek / #5425)
+
+
## 4.2.0
Released: 2024-08-20
diff --git a/README.md b/README.md
index 5da6f3367d..5d57c45720 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.2.0/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.2.1/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.2.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.2.1/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -302,33 +302,33 @@ Use Uppy in your project?