ci(repo): Version packages - #9368
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
@clerk/astro
@clerk/backend
@clerk/chrome-extension
@clerk/clerk-js
@clerk/electron
@clerk/electron-passkeys
@clerk/eslint-plugin
@clerk/expo
@clerk/expo-google-signin
@clerk/expo-passkeys
@clerk/express
@clerk/fastify
@clerk/hono
@clerk/localizations
@clerk/nextjs
@clerk/nuxt
@clerk/react
@clerk/react-router
@clerk/shared
@clerk/tanstack-react-start
@clerk/testing
@clerk/ui
@clerk/upgrade
@clerk/vue
commit: |
Contributor
API Changes Report
Summary
No API Changes DetectedAll packages have stable APIs with no detected changes. Report generated by Break Check Last ran on |
clerk-cookie
force-pushed
the
changeset-release/main
branch
from
August 8, 2026 22:03
6e126be to
50daca9
Compare
clerk-cookie
force-pushed
the
changeset-release/main
branch
from
August 10, 2026 16:21
50daca9 to
b753d2f
Compare
clerk-cookie
force-pushed
the
changeset-release/main
branch
from
August 10, 2026 19:20
b753d2f to
411476e
Compare
clerk-cookie
force-pushed
the
changeset-release/main
branch
from
August 10, 2026 19:54
411476e to
6c41c70
Compare
dstaley
approved these changes
Aug 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@clerk/clerk-js@6.28.0
Minor Changes
Add support for manual discounts and promo codes. Discounts, whether manual or via a promo code, are shown in the subscriptions list and in payments/statements. Promo codes can now be entered at checkout. (#9316) by @dstaley
Add a way to supply a Clerk Protect assertion from your application, so a token minted by your own backend reaches Protect without your having to set a cookie. (#9313) by @zourzouvillys
A Protect assertion is a short-lived, signed token you create with the Clerk Backend API, carrying key/value pairs your Protect rules can read. Until now the only way to deliver one was the
__clerk_protect_assertioncookie, which requires your app and Frontend API to be on the same site — true with a production CNAME setup, but not on development instances.Pass the token to Clerk and it is attached to sign-in and sign-up requests instead:
Prefer the function form when a page can outlive the token. Assertions are short-lived by design, so a string captured at load time stops applying once it expires, whereas a function picks up a refreshed one.
An assertion is an input to rules you author, never a decision on its own, and it applies only from the context you constrained it to when you minted it. Nothing about it can fail a sign-in: a resolver that throws, rejects, or returns anything other than a non-empty string simply results in no assertion being attached, and the request proceeds.
The cookie continues to work unchanged. If both are present, the value supplied to the SDK wins.
Patch Changes
Keep the freshest session token when a server response carries an older one. A slow response, or the client payload attached to one, could previously roll
lastActiveTokenback to a stale token, which is the token sent as the previous-token hint on the next token request. (#9284) by @nikosdouvlisUpdated dependencies [
aa86d9f,52ec5cd,6464fe7]:@clerk/localizations@4.15.0
Minor Changes
Patch Changes
Make OAuth consent screens clearly identify private metadata as potentially sensitive information set by the Clerk application. (#9226) by @jescalan
Updated dependencies [
aa86d9f,52ec5cd,6464fe7]:@clerk/react@6.14.0
Minor Changes
Add a way to supply a Clerk Protect assertion from your application, so a token minted by your own backend reaches Protect without your having to set a cookie. (#9313) by @zourzouvillys
A Protect assertion is a short-lived, signed token you create with the Clerk Backend API, carrying key/value pairs your Protect rules can read. Until now the only way to deliver one was the
__clerk_protect_assertioncookie, which requires your app and Frontend API to be on the same site — true with a production CNAME setup, but not on development instances.Pass the token to Clerk and it is attached to sign-in and sign-up requests instead:
Prefer the function form when a page can outlive the token. Assertions are short-lived by design, so a string captured at load time stops applying once it expires, whereas a function picks up a refreshed one.
An assertion is an input to rules you author, never a decision on its own, and it applies only from the context you constrained it to when you minted it. Nothing about it can fail a sign-in: a resolver that throws, rejects, or returns anything other than a non-empty string simply results in no assertion being attached, and the request proceeds.
The cookie continues to work unchanged. If both are present, the value supplied to the SDK wins.
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/shared@4.28.0
Minor Changes
Add support for manual discounts and promo codes. Discounts, whether manual or via a promo code, are shown in the subscriptions list and in payments/statements. Promo codes can now be entered at checkout. (#9316) by @dstaley
Add a way to supply a Clerk Protect assertion from your application, so a token minted by your own backend reaches Protect without your having to set a cookie. (#9313) by @zourzouvillys
A Protect assertion is a short-lived, signed token you create with the Clerk Backend API, carrying key/value pairs your Protect rules can read. Until now the only way to deliver one was the
__clerk_protect_assertioncookie, which requires your app and Frontend API to be on the same site — true with a production CNAME setup, but not on development instances.Pass the token to Clerk and it is attached to sign-in and sign-up requests instead:
Prefer the function form when a page can outlive the token. Assertions are short-lived by design, so a string captured at load time stops applying once it expires, whereas a function picks up a refreshed one.
An assertion is an input to rules you author, never a decision on its own, and it applies only from the context you constrained it to when you minted it. Nothing about it can fail a sign-in: a resolver that throws, rejects, or returns anything other than a non-empty string simply results in no assertion being attached, and the request proceeds.
The cookie continues to work unchanged. If both are present, the value supplied to the SDK wins.
Patch Changes
@clerk/ui@1.30.0
Minor Changes
Patch Changes
Make OAuth consent screens clearly identify private metadata as potentially sensitive information set by the Clerk application. (#9226) by @jescalan
Updated dependencies [
aa86d9f,52ec5cd,6464fe7]:@clerk/astro@4.0.9
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/backend@3.16.2
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/chrome-extension@3.1.68
Patch Changes
aa86d9f,8c61153,52ec5cd,6464fe7]:@clerk/electron@0.0.29
Patch Changes
aa86d9f,8c61153,52ec5cd,6464fe7]:@clerk/expo@4.2.4
Patch Changes
Keep a cached environment when the app starts offline and only the client cache is empty. Previously both resources fell back to placeholder data, so instance settings were lost until the app was restarted with a working network. (#9284) by @nikosdouvlis
Repeated unauthenticated responses now share one native recovery attempt within a few seconds of each other, instead of reading native state and refetching the client for every response.
Fix the
tokenCacheprop documentation: the cache stores the client JWT, not the session token.Updated dependencies [
aa86d9f,8c61153,52ec5cd,6464fe7]:@clerk/expo-passkeys@2.0.8
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/express@2.1.53
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/fastify@3.1.63
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/hono@0.1.63
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/nextjs@7.7.2
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/nuxt@3.0.5
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/react-router@3.6.7
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/tanstack-react-start@1.4.30
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/testing@2.2.20
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/vue@2.4.26
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/headless@0.0.22
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/msw@0.0.58
Patch Changes
aa86d9f,52ec5cd,6464fe7]:@clerk/swingset@0.0.32
Patch Changes
aa86d9f,6464fe7]: