diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 3ff6c41064..53a9bf7460 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 19475977e7..da3c2d30e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,27 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.9.0
+
+Released: 2024-12-17
+
+| Package | Version | Package | Version |
+| -------------------------- | ------- | -------------------------- | ------- |
+| @uppy/companion | 5.3.0 | @uppy/progress-bar | 4.1.0 |
+| @uppy/companion-client | 4.3.0 | @uppy/provider-views | 4.2.0 |
+| @uppy/core | 4.3.1 | @uppy/status-bar | 4.0.6 |
+| @uppy/google-drive-picker | 0.2.1 | @uppy/utils | 6.0.6 |
+| @uppy/google-photos-picker | 0.2.1 | @uppy/webdav | 0.1.0 |
+| @uppy/locales | 4.4.0 | uppy | 4.9.0 |
+
+- @uppy/webdav: Add @uppy/webdav (Merlijn Vos / #5551)
+- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
+- @uppy/core: bring back validateRestrictions (Merlijn Vos / #5538)
+- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)
+- @uppy/locales: Add missing French locale entries (Steven SAN / #5549)
+- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)
+
+
## 4.8.0
Released: 2024-12-05
diff --git a/README.md b/README.md
index bd6927957a..fe16d46b10 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.8.0/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.9.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.8.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.9.0/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -313,21 +313,21 @@ Use Uppy in your project?
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -340,31 +340,31 @@ Use Uppy in your project?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html
index d440f0f88b..e8061fc009 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.8.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.9.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 ecdd8a4339..99c6168678 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.8.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.9.0/uppy.min.mjs'
const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
diff --git a/packages/@uppy/companion-client/package.json b/packages/@uppy/companion-client/package.json
index 58aeaa8538..1e6b248fb8 100644
--- a/packages/@uppy/companion-client/package.json
+++ b/packages/@uppy/companion-client/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/companion-client",
"description": "Client library for communication with Companion. Intended for use in Uppy plugins.",
- "version": "4.2.0",
+ "version": "4.3.0",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/@uppy/companion/package.json b/packages/@uppy/companion/package.json
index 2d3e8f2d2b..68a500b6ef 100644
--- a/packages/@uppy/companion/package.json
+++ b/packages/@uppy/companion/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/companion",
- "version": "5.2.0",
+ "version": "5.3.0",
"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/core/CHANGELOG.md b/packages/@uppy/core/CHANGELOG.md
index 2500e398a1..e067fc3783 100644
--- a/packages/@uppy/core/CHANGELOG.md
+++ b/packages/@uppy/core/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/core
+## 4.3.1
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- @uppy/core: bring back validateRestrictions (Merlijn Vos / #5538)
+
## 4.3.0
Released: 2024-12-05
diff --git a/packages/@uppy/core/package.json b/packages/@uppy/core/package.json
index ea59771b6f..9bd048b770 100644
--- a/packages/@uppy/core/package.json
+++ b/packages/@uppy/core/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/core",
"description": "Core module for the 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.3.1",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
diff --git a/packages/@uppy/google-drive-picker/CHANGELOG.md b/packages/@uppy/google-drive-picker/CHANGELOG.md
index a4e3531150..c017907e9f 100644
--- a/packages/@uppy/google-drive-picker/CHANGELOG.md
+++ b/packages/@uppy/google-drive-picker/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/google-drive-picker
+## 0.2.1
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
+- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)
+
## 0.2.0
Released: 2024-12-05
diff --git a/packages/@uppy/google-drive-picker/package.json b/packages/@uppy/google-drive-picker/package.json
index 1af64e5210..ffe14e9419 100644
--- a/packages/@uppy/google-drive-picker/package.json
+++ b/packages/@uppy/google-drive-picker/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/google-drive-picker",
"description": "The Google Drive Picker plugin for Uppy lets users import files from their Google Drive account",
- "version": "0.2.0",
+ "version": "0.2.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/@uppy/google-photos-picker/CHANGELOG.md b/packages/@uppy/google-photos-picker/CHANGELOG.md
index 2e317a0f64..3776296c0d 100644
--- a/packages/@uppy/google-photos-picker/CHANGELOG.md
+++ b/packages/@uppy/google-photos-picker/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/google-photos-picker
+## 0.2.1
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
+- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)
+
## 0.2.0
Released: 2024-12-05
diff --git a/packages/@uppy/google-photos-picker/package.json b/packages/@uppy/google-photos-picker/package.json
index 1dc28fec6a..0cc7504504 100644
--- a/packages/@uppy/google-photos-picker/package.json
+++ b/packages/@uppy/google-photos-picker/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/google-photos-picker",
"description": "The Google Photos Picker plugin for Uppy lets users import files from their Google Photos account",
- "version": "0.2.0",
+ "version": "0.2.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
diff --git a/packages/@uppy/locales/CHANGELOG.md b/packages/@uppy/locales/CHANGELOG.md
index a0793cffdd..66751366c9 100644
--- a/packages/@uppy/locales/CHANGELOG.md
+++ b/packages/@uppy/locales/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/locales
+## 4.4.0
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
+- @uppy/locales: Add missing French locale entries (Steven SAN / #5549)
+
## 4.3.1
Released: 2024-12-05
diff --git a/packages/@uppy/locales/package.json b/packages/@uppy/locales/package.json
index 5469ddd970..684279f6a4 100644
--- a/packages/@uppy/locales/package.json
+++ b/packages/@uppy/locales/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/locales",
"description": "Uppy language packs",
- "version": "4.3.1",
+ "version": "4.4.0",
"license": "MIT",
"type": "module",
"keywords": [
diff --git a/packages/@uppy/progress-bar/package.json b/packages/@uppy/progress-bar/package.json
index 5e2782d592..f1a833b043 100644
--- a/packages/@uppy/progress-bar/package.json
+++ b/packages/@uppy/progress-bar/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/progress-bar",
"description": "A progress bar UI for Uppy",
- "version": "4.0.2",
+ "version": "4.1.0",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
diff --git a/packages/@uppy/provider-views/package.json b/packages/@uppy/provider-views/package.json
index d3e689defd..8dbf4f8c41 100644
--- a/packages/@uppy/provider-views/package.json
+++ b/packages/@uppy/provider-views/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/provider-views",
"description": "View library for Uppy remote provider plugins.",
- "version": "4.1.0",
+ "version": "4.2.0",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
diff --git a/packages/@uppy/status-bar/CHANGELOG.md b/packages/@uppy/status-bar/CHANGELOG.md
index 76caed4b15..7731598a6b 100644
--- a/packages/@uppy/status-bar/CHANGELOG.md
+++ b/packages/@uppy/status-bar/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/status-bar
+## 4.0.6
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)
+
## 4.0.5
Released: 2024-12-05
diff --git a/packages/@uppy/status-bar/package.json b/packages/@uppy/status-bar/package.json
index 7dc577af7a..89d2b380b3 100644
--- a/packages/@uppy/status-bar/package.json
+++ b/packages/@uppy/status-bar/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/status-bar",
"description": "A progress bar for Uppy, with many bells and whistles.",
- "version": "4.0.5",
+ "version": "4.0.6",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
diff --git a/packages/@uppy/utils/CHANGELOG.md b/packages/@uppy/utils/CHANGELOG.md
index b785d980a5..43a25ea738 100644
--- a/packages/@uppy/utils/CHANGELOG.md
+++ b/packages/@uppy/utils/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/utils
+## 6.0.6
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)
+
## 6.0.5
Released: 2024-12-05
diff --git a/packages/@uppy/utils/package.json b/packages/@uppy/utils/package.json
index 0b1fd3194a..466c8aea8f 100644
--- a/packages/@uppy/utils/package.json
+++ b/packages/@uppy/utils/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/utils",
"description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.",
- "version": "6.0.5",
+ "version": "6.0.6",
"license": "MIT",
"type": "module",
"keywords": [
diff --git a/packages/@uppy/webdav/CHANGELOG.md b/packages/@uppy/webdav/CHANGELOG.md
new file mode 100644
index 0000000000..557153afc2
--- /dev/null
+++ b/packages/@uppy/webdav/CHANGELOG.md
@@ -0,0 +1,8 @@
+# @uppy/webdav
+
+## 0.1.0
+
+Released: 2024-12-17
+Included in: Uppy v4.9.0
+
+- @uppy/webdav: Add @uppy/webdav (Merlijn Vos / #5551)
diff --git a/packages/uppy/package.json b/packages/uppy/package.json
index 02033abb5b..bfb016a2bd 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.8.0",
+ "version": "4.9.0",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",