Releases: clerk/javascript
Release list
@clerk/react@6.1.3
Patch Changes
- Deprecate the
signOutOptionsprop on<SignOutButton />in favor of top-levelredirectUrlandsessionIdprops. ThesignOutOptionsprop still works but now emits a deprecation warning. (#8147) by @jacekradko
@clerk/react-router@3.0.7
@clerk/nuxt@2.0.7
@clerk/nextjs@7.0.7
@clerk/localizations@4.2.4
Patch Changes
-
Add the missing Dutch translation for
organizationProfile.start.profileSection.primaryButton. (#7711) by @MaartenKollerThis 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
@clerk/fastify@3.1.5
@clerk/express@2.0.7
@clerk/expo@3.1.5
Patch Changes
-
Add
appleSignInoption to the Expo config plugin. SettingappleSignIn: falseprevents 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.resolvein config plugin to findClerkViewFactory.swift, resolving failures in pnpm workspaces nested 2+ levels deep (#8111) by @chriscanin -
Add
-Xskip-metadata-version-checkKotlin compiler flag to resolve metadata version mismatch errors when building Android apps with Expo SDK 54/55. Theclerk-androiddependency is compiled with Kotlin 2.3.x while Expo ships Kotlin 2.1.x, causing:app:compileDebugKotlinto 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
Patch Changes
-
Fix dev browser token being read from a stale non-partitioned cookie when
partitionedCookiesis enabled. The token is now kept in memory so FAPI requests always use the authoritative value. (#8161) by @brkalow -
Fix
satelliteAutoSyncto default tofalseas documented. Previously, not passing the prop resulted inundefined, which was treated astruedue 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 bothundefinedandfalseskip 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_tokenretry flow when Session Minter is enabled. WhensessionMinteris 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=truebody param on/tokensrequests whenskipCacheis true, so FAPI Proxy routes to origin instead of Session Minter. (#8106) by @nikosdouvlis