') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); ci(repo): Version packages by clerk-cookie · Pull Request #8876 · clerk/javascript · GitHub
Skip to content

ci(repo): Version packages - #8876

Merged
wobsoriano merged 1 commit into
mainfrom
changeset-release/main
Jun 17, 2026
Merged

ci(repo): Version packages#8876
wobsoriano merged 1 commit into
mainfrom
changeset-release/main

Conversation

@clerk-cookie

@clerk-cookieclerk-cookie commented Jun 16, 2026

Copy link
Copy Markdown
Collaborator

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/backend@3.8.0

Minor Changes

  • Add support for the preferredSignInStrategyWhenPasswordRequired parameter to clerkClient.instance.update(). Accepts 'password' or 'otp' to override the preferred sign-in strategy when a password is required, or an empty string to clear the override. (#8878) by @dmoerner

Patch Changes

@clerk/clerk-js@6.18.0

Minor Changes

  • Introduce organization domains with TXT verification on self-serve SSO flow (#8788) by @LauraBeatris

  • Improve OrganizationProfile UI: (#8898) by @LauraBeatris

    • Hide the Verified domains section when there are no domains and the user lacks permission to add them
    • Rename the Organization profile section to Profile for consistency with UserProfile
    • Align the enterprise accounts section with the account data

Patch Changes

  • Update the preact version bundled inside the lazily-loaded Coinbase Wallet web3 chunk to 10.27.3, clearing a dependency security advisory. Only the Coinbase web3 wallet code path is affected. (#8856) by @jacekradko

  • Updated dependencies [d5968d0, ffbc650]:

    • @clerk/shared@4.19.0

@clerk/eslint-plugin@0.1.0

Minor Changes

  • Add an experimental ESLint plugin @clerk/eslint-plugin, with a single require-auth-protection rule for the Next.js App router. This rule helps enforce auth protections are present at the page/route/server function level. (#8704) by @Ephem

    The lint rule offers an editor quick-fix suggestion for unprotected resources that inserts await auth.protect() at the top of the function. Suggestions are opt-in and are not applied by eslint --fix.

    Includes a bulk auto-fixer, available as the clerk-next-fix-auth-protection command. It lints with your existing ESLint config and applies the await auth.protect() suggestion to every resource it can safely fix, reporting the rest as needing manual attention. Supports --dry-run.

@clerk/localizations@4.9.0

Minor Changes

  • Introduce organization domains with TXT verification on self-serve SSO flow (#8788) by @LauraBeatris

  • Improve OrganizationProfile UI: (#8898) by @LauraBeatris

    • Hide the Verified domains section when there are no domains and the user lacks permission to add them
    • Rename the Organization profile section to Profile for consistency with UserProfile
    • Align the enterprise accounts section with the account data

Patch Changes

  • Add confirmation dialog for organization domain deletion as part of self-serve SSO (#8866) by @LauraBeatris

  • Updated dependencies [d5968d0, ffbc650]:

    • @clerk/shared@4.19.0

@clerk/shared@4.19.0

Minor Changes

  • Introduce organization domains with TXT verification on self-serve SSO flow (#8788) by @LauraBeatris

Patch Changes

  • Add confirmation dialog for organization domain deletion as part of self-serve SSO (#8866) by @LauraBeatris

@clerk/ui@1.18.0

Minor Changes

  • Introduce organization domains with TXT verification on self-serve SSO flow (#8788) by @LauraBeatris

  • Improve OrganizationProfile UI: (#8898) by @LauraBeatris

    • Hide the Verified domains section when there are no domains and the user lacks permission to add them
    • Rename the Organization profile section to Profile for consistency with UserProfile
    • Align the enterprise accounts section with the account data

Patch Changes

  • When inviting organization members requires purchasing additional seats, invitations are now sent automatically after checkout completes successfully. (#8869) by @dstaley

  • Add confirmation dialog for organization domain deletion as part of self-serve SSO (#8866) by @LauraBeatris

  • The Security page's SSO wizard now has a back-to-Security control, and Start/Edit open the wizard at the first step (Continue resumes where you left off). (#8864) by @iagodahlem

  • Updated dependencies [d5968d0, 431e16c, ffbc650]:

    • @clerk/localizations@4.9.0
    • @clerk/shared@4.19.0

@clerk/astro@3.4.4

Patch Changes

@clerk/chrome-extension@3.1.37

Patch Changes

@clerk/expo@3.4.4

Patch Changes

  • Fixes iOS Google One Tap sign-in to reject blank Google client IDs and to default to filtering by previously authorized accounts. (#8903) by @mikepitre

  • Fixes iOS builds that use native Google Sign-In by letting Expo Autolinking configure the required Google pod dependencies. (#8901) by @mikepitre

  • Preserve Expo's relative import specifiers in tsdown builds so Metro platform-specific module resolution and root exports work correctly. (#8880) by @wobsoriano

  • Fix Expo native Clerk components and JavaScript auth hooks staying stale when authentication changes between the JavaScript and native SDKs. JS-owned sign-in now hydrates native components on cold start, sign-out from either runtime updates the other side, and native multi-session changes keep the remaining JavaScript session active. (#8879) by @mikepitre

  • Restores the previous iOS Google sign-in default so sign-in does not filter by previously authorized accounts unless explicitly requested. (#8905) by @mikepitre

  • Add Expo host SDK request headers to native iOS Clerk SDK requests made through @clerk/expo. (#8883) by @mikepitre

  • Updated dependencies [cc83980, d5968d0, 431e16c, ffbc650]:

    • @clerk/clerk-js@6.18.0
    • @clerk/shared@4.19.0
    • @clerk/react@6.10.1

@clerk/expo-passkeys@1.1.6

Patch Changes

@clerk/express@2.1.28

Patch Changes

@clerk/fastify@3.1.38

Patch Changes

@clerk/hono@0.1.38

Patch Changes

@clerk/nextjs@7.5.4

Patch Changes

  • Updated dependencies [d5968d0, f4ecc13, ffbc650]:
    • @clerk/shared@4.19.0
    • @clerk/backend@3.8.0
    • @clerk/react@6.10.1

@clerk/nuxt@2.6.4

Patch Changes

  • Updated dependencies [d5968d0, f4ecc13, ffbc650]:
    • @clerk/shared@4.19.0
    • @clerk/backend@3.8.0
    • @clerk/vue@2.4.4

@clerk/react@6.10.1

Patch Changes

@clerk/react-router@3.4.4

Patch Changes

  • Updated dependencies [d5968d0, f4ecc13, ffbc650]:
    • @clerk/shared@4.19.0
    • @clerk/backend@3.8.0
    • @clerk/react@6.10.1

@clerk/tanstack-react-start@1.4.4

Patch Changes

  • Updated dependencies [d5968d0, f4ecc13, ffbc650]:
    • @clerk/shared@4.19.0
    • @clerk/backend@3.8.0
    • @clerk/react@6.10.1

@clerk/testing@2.1.3

Patch Changes

@clerk/vue@2.4.4

Patch Changes

@clerk/msw@0.0.36

Patch Changes

@clerk/swingset@0.0.4

Patch Changes

@vercel

vercelBot commented Jun 16, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

ProjectDeploymentActionsUpdated (UTC)
clerk-js-sandboxReadyReadyPreview, CommentJun 17, 2026 9:01pm
swingsetReadyReadyPreview, CommentJun 17, 2026 9:01pm

Request Review

@coderabbitai

coderabbitaiBot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Ignore keyword(s) in the title.

⛔ Ignored keywords (1)
  • ci(repo): Version packages

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository YAML (base), Repository UI (inherited)

Review profile: CHILL

Plan: Pro

Run ID: 349c7db3-9215-4ef3-b5c5-277864e6c010

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@pkg-pr-new

pkg-pr-newBot commented Jun 16, 2026

Copy link
Copy Markdown

Open in StackBlitz

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@8876

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@8876

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@8876

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@8876

@clerk/expo

npm i https://pkg.pr.new/@clerk/expo@8876

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@8876

@clerk/express

npm i https://pkg.pr.new/@clerk/express@8876

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@8876

@clerk/hono

npm i https://pkg.pr.new/@clerk/hono@8876

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@8876

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@8876

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@8876

@clerk/react

npm i https://pkg.pr.new/@clerk/react@8876

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@8876

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@8876

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@8876

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@8876

@clerk/ui

npm i https://pkg.pr.new/@clerk/ui@8876

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@8876

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@8876

commit: f41971b

@github-actions

github-actionsBot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

API Changes Report

Generated by Break Check on 2026-06-17T21:02:57.122Z

Summary

MetricCount
Packages analyzed19
Packages with changes0
🔴 Breaking changes0
🟡 Non-breaking changes0
🟢 Additions0

No API Changes Detected

All packages have stable APIs with no detected changes.


Report generated by Break Check

Last ran on 83d5b33.

@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from 968093b to a2e6f00CompareJune 17, 2026 13:38
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from a2e6f00 to 928f825CompareJune 17, 2026 14:23
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from 928f825 to ded7b07CompareJune 17, 2026 19:10
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from ded7b07 to d7246e1CompareJune 17, 2026 20:09
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from d7246e1 to 81dab0cCompareJune 17, 2026 20:17
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from 81dab0c to 5c6cc56CompareJune 17, 2026 20:26
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from 5c6cc56 to f41971bCompareJune 17, 2026 20:33
@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from f41971b to 83d5b33CompareJune 17, 2026 20:59
@wobsoriano
wobsoriano merged commit f4488f5 into mainJun 17, 2026
45 of 46 checks passed
@wobsoriano
wobsoriano deleted the changeset-release/main branch June 17, 2026 21:09
Sign up for freeto 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.

2 participants

@clerk-cookie@wobsoriano