diff --git a/.changeset/expo-mobile-485-cold-start-activity.md b/.changeset/expo-mobile-485-cold-start-activity.md
deleted file mode 100644
index 554e999358d..00000000000
--- a/.changeset/expo-mobile-485-cold-start-activity.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-"@clerk/expo": patch
----
-
-Fix `MissingActivity` error on cold-start Google sign-in / passkey flows. Previously, the first tap on "Sign in with Google" in `` failed with `Clerk error: Google sign-in cannot start: Credential Manager requires an active Activity context.` — the workaround was to background and foreground the app once before signing in.
-
-The Android bridge now calls `Clerk.attachActivity()` (added in clerk-android 1.0.16) at SDK initialization and on AuthView/UserProfile mount, so the current Activity is registered with the underlying SDK before any Credential Manager call. No app-side changes required; the fix is transparent on rebuild.
diff --git a/.changeset/four-wombats-clean.md b/.changeset/four-wombats-clean.md
deleted file mode 100644
index 5eb78a1fa05..00000000000
--- a/.changeset/four-wombats-clean.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-"@clerk/clerk-js": minor
-"@clerk/ui": minor
----
-
-Removed unused internal OAuthConsent prop.
diff --git a/.changeset/improve-auth-middleware-error-message.md b/.changeset/improve-auth-middleware-error-message.md
deleted file mode 100644
index 2f71f2a258d..00000000000
--- a/.changeset/improve-auth-middleware-error-message.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@clerk/nextjs": patch
----
-
-Improved `auth()` error message when `clerkMiddleware()` is not detected to mention that infrastructure issues (e.g. edge runtime errors or platform outages) can also cause this error.
diff --git a/.changeset/lucky-tables-learn.md b/.changeset/lucky-tables-learn.md
deleted file mode 100644
index ae4e51b2cb3..00000000000
--- a/.changeset/lucky-tables-learn.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@clerk/ui': patch
----
-
-Add wizard steps for the `<__experimental_ConfigureSSO />` component
diff --git a/.changeset/pink-taxes-do.md b/.changeset/pink-taxes-do.md
deleted file mode 100644
index a2f6452c5fd..00000000000
--- a/.changeset/pink-taxes-do.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@clerk/ui': patch
----
-
-Remove back button on the sign-in password compromised/pwned error screen.
-
-These errors are not recoverable by re-entering the password, so the back button led to a confusing dead end that would always take you back to the same error.
diff --git a/packages/chrome-extension/CHANGELOG.md b/packages/chrome-extension/CHANGELOG.md
index 463cead2904..2e0975f55e0 100644
--- a/packages/chrome-extension/CHANGELOG.md
+++ b/packages/chrome-extension/CHANGELOG.md
@@ -1,5 +1,14 @@
# Change Log
+## 3.1.23
+
+### Patch Changes
+
+- Updated dependencies [[`a1635f0`](https://github.com/clerk/javascript/commit/a1635f01b7f9ee52ad28f33440b527f29e65cbb5), [`763808b`](https://github.com/clerk/javascript/commit/763808b6116ee9290148e6a9bde607ff214d8b1c), [`3ffbe1f`](https://github.com/clerk/javascript/commit/3ffbe1f397d3b70b44f73c3ae41fcbf21b140b7c)]:
+ - @clerk/clerk-js@6.10.0
+ - @clerk/ui@1.9.0
+ - @clerk/react@6.6.0
+
## 3.1.22
### Patch Changes
diff --git a/packages/chrome-extension/package.json b/packages/chrome-extension/package.json
index 7ddf485a6a3..f757d21c23e 100644
--- a/packages/chrome-extension/package.json
+++ b/packages/chrome-extension/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/chrome-extension",
- "version": "3.1.22",
+ "version": "3.1.23",
"description": "Clerk SDK for Chrome extensions",
"keywords": [
"auth",
diff --git a/packages/clerk-js/CHANGELOG.md b/packages/clerk-js/CHANGELOG.md
index 68093562222..ff90932d3c7 100644
--- a/packages/clerk-js/CHANGELOG.md
+++ b/packages/clerk-js/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log
+## 6.10.0
+
+### Minor Changes
+
+- Removed unused internal OAuthConsent prop. ([#8492](https://github.com/clerk/javascript/pull/8492)) by [@wobsoriano](https://github.com/wobsoriano)
+
## 6.9.0
### Minor Changes
diff --git a/packages/clerk-js/package.json b/packages/clerk-js/package.json
index 2d0933cb09d..9a84d0e5353 100644
--- a/packages/clerk-js/package.json
+++ b/packages/clerk-js/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-js",
- "version": "6.9.0",
+ "version": "6.10.0",
"description": "Clerk JS library",
"keywords": [
"clerk",
diff --git a/packages/expo/CHANGELOG.md b/packages/expo/CHANGELOG.md
index 2804322edf1..262e6cdede9 100644
--- a/packages/expo/CHANGELOG.md
+++ b/packages/expo/CHANGELOG.md
@@ -1,5 +1,17 @@
# Change Log
+## 3.2.9
+
+### Patch Changes
+
+- Fix `MissingActivity` error on cold-start Google sign-in / passkey flows. Previously, the first tap on "Sign in with Google" in `` failed with `Clerk error: Google sign-in cannot start: Credential Manager requires an active Activity context.` — the workaround was to background and foreground the app once before signing in. ([#8485](https://github.com/clerk/javascript/pull/8485)) by [@chriscanin](https://github.com/chriscanin)
+
+ The Android bridge now calls `Clerk.attachActivity()` (added in clerk-android 1.0.16) at SDK initialization and on AuthView/UserProfile mount, so the current Activity is registered with the underlying SDK before any Credential Manager call. No app-side changes required; the fix is transparent on rebuild.
+
+- Updated dependencies [[`a1635f0`](https://github.com/clerk/javascript/commit/a1635f01b7f9ee52ad28f33440b527f29e65cbb5)]:
+ - @clerk/clerk-js@6.10.0
+ - @clerk/react@6.6.0
+
## 3.2.8
### Patch Changes
diff --git a/packages/expo/package.json b/packages/expo/package.json
index dd0ff67fd97..385a902bccd 100644
--- a/packages/expo/package.json
+++ b/packages/expo/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/expo",
- "version": "3.2.8",
+ "version": "3.2.9",
"description": "Clerk React Native/Expo library",
"keywords": [
"react",
diff --git a/packages/nextjs/CHANGELOG.md b/packages/nextjs/CHANGELOG.md
index f1dbbd64ebf..55252b86a70 100644
--- a/packages/nextjs/CHANGELOG.md
+++ b/packages/nextjs/CHANGELOG.md
@@ -1,5 +1,14 @@
# Change Log
+## 7.3.2
+
+### Patch Changes
+
+- Improved `auth()` error message when `clerkMiddleware()` is not detected to mention that infrastructure issues (e.g. edge runtime errors or platform outages) can also cause this error. ([#8007](https://github.com/clerk/javascript/pull/8007)) by [@jacekradko](https://github.com/jacekradko)
+
+- Updated dependencies []:
+ - @clerk/react@6.6.0
+
## 7.3.1
### Patch Changes
diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json
index 949f3bd1e74..0563c9c359e 100644
--- a/packages/nextjs/package.json
+++ b/packages/nextjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/nextjs",
- "version": "7.3.1",
+ "version": "7.3.2",
"description": "Clerk SDK for NextJS",
"keywords": [
"clerk",
diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md
index 60483a55b04..ca341873839 100644
--- a/packages/ui/CHANGELOG.md
+++ b/packages/ui/CHANGELOG.md
@@ -1,5 +1,19 @@
# @clerk/ui
+## 1.9.0
+
+### Minor Changes
+
+- Removed unused internal OAuthConsent prop. ([#8492](https://github.com/clerk/javascript/pull/8492)) by [@wobsoriano](https://github.com/wobsoriano)
+
+### Patch Changes
+
+- Add wizard steps for the `<__experimental_ConfigureSSO />` component ([#8468](https://github.com/clerk/javascript/pull/8468)) by [@LauraBeatris](https://github.com/LauraBeatris)
+
+- Remove back button on the sign-in password compromised/pwned error screen. ([#8280](https://github.com/clerk/javascript/pull/8280)) by [@Ephem](https://github.com/Ephem)
+
+ These errors are not recoverable by re-entering the password, so the back button led to a confusing dead end that would always take you back to the same error.
+
## 1.8.0
### Minor Changes
diff --git a/packages/ui/package.json b/packages/ui/package.json
index ba3c6194629..d11d9149257 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/ui",
- "version": "1.8.0",
+ "version": "1.9.0",
"description": "Internal package that contains the UI components for the Clerk frontend SDKs",
"repository": {
"type": "git",