Skip to content

Releases: clerk/javascript

@clerk/react@6.1.3

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

  • Deprecate the signOutOptions prop on <SignOutButton /> in favor of top-level redirectUrl and sessionId props. The signOutOptions prop still works but now emits a deprecation warning. (#8147) by @jacekradko

@clerk/react-router@3.0.7

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

@clerk/nuxt@2.0.7

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:31
759507d

Patch Changes

@clerk/nextjs@7.0.7

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

@clerk/localizations@4.2.4

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

  • Add the missing Dutch translation for organizationProfile.start.profileSection.primaryButton. (#7711) by @MaartenKoller

    This updates the value from an empty string to "Profiel bijwerken" so the primary button label is shown correctly in the organization profile section.

    No consumer code changes are required.

@clerk/hono@0.1.5

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

@clerk/fastify@3.1.5

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

@clerk/express@2.0.7

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

@clerk/expo@3.1.5

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

  • Add appleSignIn option to the Expo config plugin. Setting appleSignIn: false prevents the Sign in with Apple entitlement from being added unconditionally, allowing apps that do not use Apple Sign In to opt out. (#8113) by @chriscanin

  • fix(expo): use require.resolve in config plugin to find ClerkViewFactory.swift, resolving failures in pnpm workspaces nested 2+ levels deep (#8111) by @chriscanin

  • Add -Xskip-metadata-version-check Kotlin compiler flag to resolve metadata version mismatch errors when building Android apps with Expo SDK 54/55. The clerk-android dependency is compiled with Kotlin 2.3.x while Expo ships Kotlin 2.1.x, causing :app:compileDebugKotlin to fail. (#8152) by @chriscanin

  • fix(expo): restore TurboModuleRegistry.get pattern in NativeClerkModule spec to fix Android new architecture codegen error; handle web via NativeClerkModule.web.ts (#8112) by @chriscanin

  • Updated dependencies [7027e97, 9ca9300, 3efdd2c, 857823e, 25a73fb, d976a82]:

    • @clerk/react@6.1.3
    • @clerk/clerk-js@6.3.3

@clerk/clerk-js@6.3.3

Choose a tag to compare

@clerk-cookie clerk-cookie released this 25 Mar 19:32
759507d

Patch Changes

  • Fix dev browser token being read from a stale non-partitioned cookie when partitionedCookies is enabled. The token is now kept in memory so FAPI requests always use the authoritative value. (#8161) by @brkalow

  • Fix satelliteAutoSync to default to false as documented. Previously, not passing the prop resulted in undefined, which was treated as true due to a strict equality check (=== false). This preserved Core 2 auto-sync behavior instead of the intended Core 3 default. The check is now !== true, so both undefined and false skip automatic satellite sync. (#8001) by @nikosdouvlis

  • Fix token cache refresh timer leak that caused accelerating token refresh requests after session.touch() or organization switching. (#8098) by @jacekradko

  • Skip expired_token retry flow when Session Minter is enabled. When sessionMinter is on, the token is sent in the POST body, so the retry-with-expired-token fallback is unnecessary. The retry flow is preserved for non-Session Minter mode. (#8108) by @nikosdouvlis

  • Send force_origin=true body param on /tokens requests when skipCache is true, so FAPI Proxy routes to origin instead of Session Minter. (#8106) by @nikosdouvlis