') + ')', '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 #8914 · clerk/javascript · GitHub
Skip to content

ci(repo): Version packages - #8914

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

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

Conversation

@clerk-cookie

@clerk-cookieclerk-cookie commented Jun 18, 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/astro@3.4.5

Patch Changes

@clerk/backend@3.8.1

Patch Changes

@clerk/chrome-extension@3.1.39

Patch Changes

@clerk/clerk-js@6.18.1

Patch Changes

@clerk/expo@3.4.7

Patch Changes

  • Fix native component auth state when syncing JS and native client changes. (#8920) by @mikepitre

  • Adds an iOS Google sign-in hint option and clarifies that Android account filtering is platform-specific. (#8906) by @mikepitre

  • Fix Android native component initialization when the Expo native module does not expose React Native event listener bookkeeping methods, and make the generated iOS bridge compatible with Swift's explicit import visibility checks. (#8920) by @mikepitre

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:

    • @clerk/shared@4.19.1
    • @clerk/react@6.10.3
    • @clerk/clerk-js@6.18.1

@clerk/expo-passkeys@1.1.7

Patch Changes

@clerk/express@2.1.29

Patch Changes

@clerk/fastify@3.1.39

Patch Changes

@clerk/hono@0.1.39

Patch Changes

@clerk/localizations@4.9.1

Patch Changes

  • Improve the accessible label for identity edit buttons in verification flows. (#8902) by @austincalvelage

  • The SSO setup flow now ends on an explicit Activate step: after configuring and testing a connection you confirm activation with an Activate SSO action (or skip and activate later) instead of a static confirmation summary. (#8882) by @iagodahlem

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:

    • @clerk/shared@4.19.1

@clerk/nextjs@7.5.6

Patch Changes

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:
    • @clerk/shared@4.19.1
    • @clerk/react@6.10.3
    • @clerk/backend@3.8.1

@clerk/nuxt@2.6.5

Patch Changes

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:
    • @clerk/shared@4.19.1
    • @clerk/vue@2.4.5
    • @clerk/backend@3.8.1

@clerk/react@6.10.3

Patch Changes

@clerk/react-router@3.4.6

Patch Changes

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:
    • @clerk/shared@4.19.1
    • @clerk/react@6.10.3
    • @clerk/backend@3.8.1

@clerk/shared@4.19.1

Patch Changes

  • Improve the accessible label for identity edit buttons in verification flows. (#8902) by @austincalvelage

  • The SSO setup flow now ends on an explicit Activate step: after configuring and testing a connection you confirm activation with an Activate SSO action (or skip and activate later) instead of a static confirmation summary. (#8882) by @iagodahlem

  • Add an inertProps helper (@clerk/shared/inert) that resolves the correct inert attribute value for the consumer's React major (React 19 dropped the inert attribute for falsy string values). (#8820) by @alexcarpenter

@clerk/tanstack-react-start@1.4.6

Patch Changes

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:
    • @clerk/shared@4.19.1
    • @clerk/react@6.10.3
    • @clerk/backend@3.8.1

@clerk/testing@2.1.4

Patch Changes

@clerk/ui@1.18.1

Patch Changes

  • Improve the accessible label for identity edit buttons in verification flows. (#8902) by @austincalvelage

  • Remove hidden password input from accessibility tree when hidden (#8899) by @alexcarpenter

  • Add support for the inert attribute usage under React 19. Inert content is now correctly non-interactive on both React 18 and 19. (#8820) by @alexcarpenter

  • Fix checkbox default styles when using the simple theme. (#8922) by @alexcarpenter

  • Improve Menu keyboard navigation and accessibility. Menus now support Enter/Space to open from the trigger, ArrowDown/ArrowUp/Home/End to move focus, Escape to close and return focus to the trigger, and skip disabled items during arrow-key navigation. Menus no longer mark the rest of the page as aria-hidden while open, so assistive technologies can still reach surrounding content. (#8333) by @alexcarpenter

  • The SSO setup flow now ends on an explicit Activate step: after configuring and testing a connection you confirm activation with an Activate SSO action (or skip and activate later) instead of a static confirmation summary. (#8882) by @iagodahlem

  • Fix the X (formerly Twitter) provider logo being nearly invisible in dark mode by recoloring it to match the foreground color, consistent with other monochrome provider icons. (#8912) by @jordan-bott

  • Updated dependencies [c84f8df, 53e7b11, e51e22a]:

    • @clerk/localizations@4.9.1
    • @clerk/shared@4.19.1

@clerk/vue@2.4.5

Patch Changes

@clerk/headless@0.0.1

Patch Changes

@clerk/msw@0.0.37

Patch Changes

@clerk/swingset@0.0.5

Patch Changes

@vercel

vercelBot commented Jun 18, 2026

Copy link
Copy Markdown

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

ProjectDeploymentActionsUpdated (UTC)
clerk-js-sandboxReadyReadyPreview, CommentJun 18, 2026 11:00pm
swingsetReadyReadyPreview, CommentJun 18, 2026 11:00pm

Request Review

@coderabbitai

coderabbitaiBot commented Jun 18, 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: cfcd9c30-56a8-4eab-bd39-f5e3c2ed4275

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 18, 2026

Copy link
Copy Markdown

Open in StackBlitz

@clerk/astro

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

@clerk/backend

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

@clerk/chrome-extension

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

@clerk/clerk-js

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

@clerk/eslint-plugin

npm i https://pkg.pr.new/@clerk/eslint-plugin@8914

@clerk/expo

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

@clerk/expo-passkeys

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

@clerk/express

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

@clerk/fastify

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

@clerk/hono

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

@clerk/localizations

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

@clerk/nextjs

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

@clerk/nuxt

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

@clerk/react

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

@clerk/react-router

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

@clerk/shared

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

@clerk/tanstack-react-start

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

@clerk/testing

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

@clerk/ui

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

@clerk/upgrade

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

@clerk/vue

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

commit: a9346a2

@github-actions

github-actionsBot commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

API Changes Report

Generated by Break Check on 2026-06-18T23:03:27.752Z

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 a9346a2.

@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from a793c3b to 379619fCompareJune 18, 2026 14:24
@coderabbitai

Copy link
Copy Markdown
Contributor

Caution

Review failed

An error occurred during the review process. Please try again later.


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.

@clerk-cookie
clerk-cookieforce-pushed the changeset-release/main branch from a2709d4 to a9346a2CompareJune 18, 2026 22:58
@wobsoriano
wobsoriano merged commit 88525a6 into mainJun 18, 2026
47 checks passed
@wobsoriano
wobsoriano deleted the changeset-release/main branch June 18, 2026 23:04
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