Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(clerk-js): Handle new session pending status as authenticated state #5136

Conversation

LauraBeatris
Copy link
Member

@LauraBeatris LauraBeatris commented Feb 11, 2025

Description

Context

Introducing a new FAPI session status: pending. It builds a fundamental layer for the after-auth project and the future concept of tasks, eg: Forcing to select an organization after sign-in.

Previously, only active sessions were considered to be in an authenticated state. Now, we're introducing a new status assigned to the user session after a successful authentication process but when there are pending tasks.

Next steps

These changes do not introduce new behavior on helpers / AIO components, neither breaking changes, as it handles pending as an authenticated state, pairing the same functionality as active

Next PRs will start introducing the concept of pending tasks and enforcing resolution upon after-auth.

Developer-facing changes

Once these clerk-js get served, developers shouldn't have to worry about changing their app logic or breaking changes. However, some interface changes are preparing the DX for the next steps mentioned above:

Unifying an signed-in state check based on the session status with Clerk.isSignedIn or Clerk.client.isSignedIn

For custom flows, Clerk.user shouldn't be used to determine if the user has fully authenticated or not, and also, it shouldn't be necessary for developers to explicitly check against the session as it's prone for breaking changes, therefore we're abstracting this behind a new property.

- if (Clerk.session.status === 'active') {
+ if (Clerk.isSignedIn) {
  // Mount user button component
  document.getElementById('signed-in').innerHTML = `
    <div id="user-button"></div>
  `

  const userbuttonDiv = document.getElementById('user-button')

  clerk.mountUserButton(userbuttonDiv)
} else {

Deprecating activeSessions in favor of signedInSessions

Deprecating explicit checks against "active" sessions in favor of a generic property that expresses the "signed-in" state instead, since in the future, we might add other types of session statuses for different levels of user verification as we're doing now with after-auth.

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

Copy link

changeset-bot bot commented Feb 11, 2025

🦋 Changeset detected

Latest commit: e69c175

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 23 packages
Name Type
@clerk/elements Minor
@clerk/shared Minor
@clerk/astro Minor
@clerk/clerk-react Minor
@clerk/types Minor
@clerk/clerk-expo Minor
@clerk/vue Minor
@clerk/clerk-js Minor
@clerk/ui Patch
@clerk/agent-toolkit Patch
@clerk/backend Patch
@clerk/chrome-extension Patch
@clerk/expo-passkeys Patch
@clerk/express Patch
@clerk/fastify Patch
@clerk/nextjs Patch
@clerk/nuxt Patch
@clerk/react-router Patch
@clerk/remix Patch
@clerk/tanstack-start Patch
@clerk/testing Patch
@clerk/localizations Patch
@clerk/themes Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Feb 11, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
clerk-js-sandbox ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 18, 2025 7:07pm

@LauraBeatris LauraBeatris changed the title [wip] Handle new pending session status as authenticated user [wip] Introduce new pending status Feb 11, 2025
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from 4b907c1 to cdee2c9 Compare February 11, 2025 20:06
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from cdee2c9 to a9143d3 Compare February 11, 2025 21:11
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from a9143d3 to f21d6e7 Compare February 11, 2025 21:13
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from f21d6e7 to b3044d2 Compare February 11, 2025 21:23
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from b3044d2 to 96a7629 Compare February 11, 2025 21:36
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from 96a7629 to f249b85 Compare February 11, 2025 21:46
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from f249b85 to 37f3c34 Compare February 11, 2025 21:49
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from 37f3c34 to f51ee21 Compare February 11, 2025 21:56
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from bb1b736 to 760434f Compare February 18, 2025 16:40
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from cd69f17 to 42d5e5f Compare February 18, 2025 17:56
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch 2 times, most recently from d05cb1b to 724a3fa Compare February 18, 2025 18:01
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from 724a3fa to de92ffd Compare February 18, 2025 19:03
@LauraBeatris LauraBeatris force-pushed the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch from de92ffd to e69c175 Compare February 18, 2025 19:06
@LauraBeatris LauraBeatris merged commit c5c246c into main Feb 18, 2025
29 checks passed
@LauraBeatris LauraBeatris deleted the laura/orgs-544-sdk-handle-pending-session-status-as-authenticated branch February 18, 2025 21:06
@144mdgross
Copy link

Hello! Sorry if this is the wrong place to ask but I wasn't able to get my discord account working. I begin getting type errors (error TS2322) when updating to version 4.47.0 of types. Is this expected and is it resolved by an update to the corresponding clerk packages? We are using "@clerk/remix": "4.1.1", in conjunction with @clerk/types": "4.6.0 currently without issue.

error TS2322: Type 'SignedInSessionResource | null | undefined' is not assignable to type 'ActiveSessionResource | null | undefined'.
  Type 'PendingSessionResource' is not assignable to type 'ActiveSessionResource'.
    Types of property 'status' are incompatible.
      Type '"pending"' is not assignable to type '"active"'.```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants