diff --git a/.changeset/signup-complete-without-session.md b/.changeset/signup-complete-without-session.md
deleted file mode 100644
index e1820373c..000000000
--- a/.changeset/signup-complete-without-session.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'@asgardeo/i18n': patch
-'@asgardeo/react': patch
-'@asgardeo/nextjs': patch
----
-
-Show a success message and a sign-in button when a registration completes without signing the user in.
-
-- `BaseSignUp` accepts a `signInUrl` prop. When the flow completes and the prop is set, the card keeps showing the "account created" message and renders a Sign In button that takes the user to that URL.
-- The Next.js `` passes the configured `signInUrl` automatically, and the provider no longer navigates to `afterSignUpUrl` when no session was created (for example after a social sign-up, or a multi-step registration). Previously the user was sent to a protected page and bounced straight to the sign-in form without ever seeing that the account had been created. A per-component `afterSignUpUrl` prop is still honoured.
-- When the host does sign the user in (the Next.js auto sign-in), the message reads "Your account has been created. Signing you in…" (new i18n key `signup.success.signing.in`) instead of leaving the user wondering what happens next.
diff --git a/packages/browser/CHANGELOG.md b/packages/browser/CHANGELOG.md
index d9433f926..cf9c47fe4 100644
--- a/packages/browser/CHANGELOG.md
+++ b/packages/browser/CHANGELOG.md
@@ -1,5 +1,12 @@
# @asgardeo/browser
+## 0.7.15
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @asgardeo/javascript@0.23.5
+
## 0.7.14
### Patch Changes
diff --git a/packages/browser/package.json b/packages/browser/package.json
index 230b59693..5398e63cb 100644
--- a/packages/browser/package.json
+++ b/packages/browser/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/browser",
- "version": "0.7.14",
+ "version": "0.7.15",
"description": "Browser-specific implementation of Asgardeo JavaScript SDK.",
"keywords": [
"asgardeo",
diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md
index 158968010..c1b4136c3 100644
--- a/packages/express/CHANGELOG.md
+++ b/packages/express/CHANGELOG.md
@@ -1,5 +1,12 @@
# @asgardeo/express
+## 0.0.86
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @asgardeo/node@0.0.87
+
## 0.0.85
### Patch Changes
diff --git a/packages/express/package.json b/packages/express/package.json
index fb470304c..1aa90018a 100644
--- a/packages/express/package.json
+++ b/packages/express/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/express",
- "version": "0.0.85",
+ "version": "0.0.86",
"description": "Express.js implementation of Asgardeo JavaScript SDK.",
"keywords": [
"asgardeo",
diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md
index b5403a2a4..71105cc05 100644
--- a/packages/i18n/CHANGELOG.md
+++ b/packages/i18n/CHANGELOG.md
@@ -1,5 +1,23 @@
# @asgardeo/i18n
+## 0.4.9
+
+### Patch Changes
+
+- [#567](https://github.com/asgardeo/javascript/pull/567)
+ [`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745) Thanks
+ [@DonOmalVindula](https://github.com/DonOmalVindula)! - Show a success message and a sign-in button when a
+ registration completes without signing the user in.
+
+ - `BaseSignUp` accepts a `signInUrl` prop. When the flow completes and the prop is set, the card keeps showing the
+ "account created" message and renders a Sign In button that takes the user to that URL.
+ - The Next.js `` passes the configured `signInUrl` automatically, and the provider no longer navigates to
+ `afterSignUpUrl` when no session was created (for example after a social sign-up, or a multi-step registration).
+ Previously the user was sent to a protected page and bounced straight to the sign-in form without ever seeing that
+ the account had been created. A per-component `afterSignUpUrl` prop is still honoured.
+ - When the host does sign the user in (the Next.js auto sign-in), the message reads "Your account has been created.
+ Signing you in…" (new i18n key `signup.success.signing.in`) instead of leaving the user wondering what happens next.
+
## 0.4.8
### Patch Changes
diff --git a/packages/i18n/package.json b/packages/i18n/package.json
index fd0a6bc0b..e82c60182 100644
--- a/packages/i18n/package.json
+++ b/packages/i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/i18n",
- "version": "0.4.8",
+ "version": "0.4.9",
"description": "Internationalization (i18n) package for Asgardeo JavaScript SDKs.",
"keywords": [
"asgardeo",
diff --git a/packages/javascript/CHANGELOG.md b/packages/javascript/CHANGELOG.md
index e748d8965..c7c8c6e32 100644
--- a/packages/javascript/CHANGELOG.md
+++ b/packages/javascript/CHANGELOG.md
@@ -1,5 +1,13 @@
# @asgardeo/javascript
+## 0.23.5
+
+### Patch Changes
+
+- Updated dependencies
+ [[`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745)]:
+ - @asgardeo/i18n@0.4.9
+
## 0.23.4
### Patch Changes
diff --git a/packages/javascript/package.json b/packages/javascript/package.json
index 77aa5e185..4539e4b49 100644
--- a/packages/javascript/package.json
+++ b/packages/javascript/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/javascript",
- "version": "0.23.4",
+ "version": "0.23.5",
"description": "Framework agnostic JavaScript SDK for Asgardeo.",
"keywords": [
"asgardeo",
diff --git a/packages/nextjs/CHANGELOG.md b/packages/nextjs/CHANGELOG.md
index 182dfefea..560158a4b 100644
--- a/packages/nextjs/CHANGELOG.md
+++ b/packages/nextjs/CHANGELOG.md
@@ -1,5 +1,28 @@
# @asgardeo/nextjs
+## 0.3.34
+
+### Patch Changes
+
+- [#567](https://github.com/asgardeo/javascript/pull/567)
+ [`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745) Thanks
+ [@DonOmalVindula](https://github.com/DonOmalVindula)! - Show a success message and a sign-in button when a
+ registration completes without signing the user in.
+
+ - `BaseSignUp` accepts a `signInUrl` prop. When the flow completes and the prop is set, the card keeps showing the
+ "account created" message and renders a Sign In button that takes the user to that URL.
+ - The Next.js `` passes the configured `signInUrl` automatically, and the provider no longer navigates to
+ `afterSignUpUrl` when no session was created (for example after a social sign-up, or a multi-step registration).
+ Previously the user was sent to a protected page and bounced straight to the sign-in form without ever seeing that
+ the account had been created. A per-component `afterSignUpUrl` prop is still honoured.
+ - When the host does sign the user in (the Next.js auto sign-in), the message reads "Your account has been created.
+ Signing you in…" (new i18n key `signup.success.signing.in`) instead of leaving the user wondering what happens next.
+
+- Updated dependencies
+ [[`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745)]:
+ - @asgardeo/react@0.25.12
+ - @asgardeo/node@0.0.87
+
## 0.3.33
### Patch Changes
diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json
index 7d4d4367e..492b6f7a3 100644
--- a/packages/nextjs/package.json
+++ b/packages/nextjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/nextjs",
- "version": "0.3.33",
+ "version": "0.3.34",
"description": "Next.js implementation of Asgardeo JavaScript SDK.",
"keywords": [
"asgardeo",
diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md
index a1a150ee3..90c3e17f8 100644
--- a/packages/node/CHANGELOG.md
+++ b/packages/node/CHANGELOG.md
@@ -1,5 +1,12 @@
# @asgardeo/node
+## 0.0.87
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @asgardeo/javascript@0.23.5
+
## 0.0.86
### Patch Changes
diff --git a/packages/node/package.json b/packages/node/package.json
index 0a00166d7..d77b6222f 100644
--- a/packages/node/package.json
+++ b/packages/node/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/node",
- "version": "0.0.86",
+ "version": "0.0.87",
"description": "Node.js runtime specific implementation of Asgardeo JavaScript SDK.",
"keywords": [
"asgardeo",
diff --git a/packages/nuxt/CHANGELOG.md b/packages/nuxt/CHANGELOG.md
index dfc726de2..aa0291340 100644
--- a/packages/nuxt/CHANGELOG.md
+++ b/packages/nuxt/CHANGELOG.md
@@ -1,5 +1,14 @@
# @asgardeo/nuxt
+## 0.2.8
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @asgardeo/vue@0.4.8
+ - @asgardeo/browser@0.7.15
+ - @asgardeo/node@0.0.87
+
## 0.2.7
### Patch Changes
diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json
index a352536ae..144f0b4e3 100644
--- a/packages/nuxt/package.json
+++ b/packages/nuxt/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/nuxt",
- "version": "0.2.7",
+ "version": "0.2.8",
"description": "Nuxt module for Asgardeo - Authentication and Identity Management",
"author": "WSO2",
"license": "Apache-2.0",
diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md
index 62f97da50..1c51ea230 100644
--- a/packages/react/CHANGELOG.md
+++ b/packages/react/CHANGELOG.md
@@ -1,5 +1,28 @@
# @asgardeo/react
+## 0.25.12
+
+### Patch Changes
+
+- [#567](https://github.com/asgardeo/javascript/pull/567)
+ [`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745) Thanks
+ [@DonOmalVindula](https://github.com/DonOmalVindula)! - Show a success message and a sign-in button when a
+ registration completes without signing the user in.
+
+ - `BaseSignUp` accepts a `signInUrl` prop. When the flow completes and the prop is set, the card keeps showing the
+ "account created" message and renders a Sign In button that takes the user to that URL.
+ - The Next.js `` passes the configured `signInUrl` automatically, and the provider no longer navigates to
+ `afterSignUpUrl` when no session was created (for example after a social sign-up, or a multi-step registration).
+ Previously the user was sent to a protected page and bounced straight to the sign-in form without ever seeing that
+ the account had been created. A per-component `afterSignUpUrl` prop is still honoured.
+ - When the host does sign the user in (the Next.js auto sign-in), the message reads "Your account has been created.
+ Signing you in…" (new i18n key `signup.success.signing.in`) instead of leaving the user wondering what happens next.
+
+- Updated dependencies
+ [[`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745)]:
+ - @asgardeo/i18n@0.4.9
+ - @asgardeo/browser@0.7.15
+
## 0.25.11
### Patch Changes
diff --git a/packages/react/package.json b/packages/react/package.json
index 8891e2a47..a92695f96 100644
--- a/packages/react/package.json
+++ b/packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/react",
- "version": "0.25.11",
+ "version": "0.25.12",
"description": "React implementation of Asgardeo JavaScript SDK.",
"keywords": [
"asgardeo",
diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md
index f23c0919a..e61c4a2c4 100644
--- a/packages/vue/CHANGELOG.md
+++ b/packages/vue/CHANGELOG.md
@@ -1,5 +1,14 @@
# @asgardeo/vue
+## 0.4.8
+
+### Patch Changes
+
+- Updated dependencies
+ [[`d559499`](https://github.com/asgardeo/javascript/commit/d559499b123d1de2c66e50b6d1242f07db457745)]:
+ - @asgardeo/i18n@0.4.9
+ - @asgardeo/browser@0.7.15
+
## 0.4.7
### Patch Changes
diff --git a/packages/vue/package.json b/packages/vue/package.json
index db8210c55..896028842 100644
--- a/packages/vue/package.json
+++ b/packages/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@asgardeo/vue",
- "version": "0.4.7",
+ "version": "0.4.8",
"description": "Vue 3 SDK for Asgardeo - Authentication and Identity Management",
"keywords": [
"asgardeo",