Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/strong-games-dream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Comment on lines +1 to +2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Populate the changeset front-matter before merging

The file contains only the --- delimiters. A valid changeset must specify:
• the packages affected
• the semver bump type (patch/minor/major)
• a short summary of the change

Without this information the automated release workflow will fail.

---
-# empty – needs content
+'@clerk/e2e-tests': patch
+
+Refactor E2E redirect assertion to use `/workspace-selection` path now
+exposed by the Clerk dashboard, replacing the deprecated
+`/organization-selection` route.
---

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In .changeset/strong-games-dream.md at lines 1 to 2, the changeset file is
missing required front-matter details. Add the packages affected, the semver
bump type (patch, minor, or major), and a brief summary of the change between
the --- delimiters to ensure the automated release workflow functions correctly.

2 changes: 1 addition & 1 deletion integration/tests/next-quickstart-keyless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ test.describe('Keyless mode @quickstart', () => {

const signUpForceRedirectUrlCheck =
signUpForceRedirectUrl?.startsWith(urlToReturnTo) ||
(signUpForceRedirectUrl?.startsWith(`${dashboardUrl}organization-selection`) &&
(signUpForceRedirectUrl?.startsWith(`${dashboardUrl}workspace-selection`) &&
signUpForceRedirectUrl?.includes(encodeURIComponent('apps/claim?token=')));

return (
Expand Down