') + ')', '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); } })(); })(); chore(expo): bump clerk-ios to 1.2.5 by clerk-cookie · Pull Request #8978 · clerk/javascript · GitHub
Skip to content

chore(expo): bump clerk-ios to 1.2.5 - #8978

Merged
wobsoriano merged 4 commits into
mainfrom
automation/expo-ios-sdk-1-2-5
Jun 25, 2026
Merged

chore(expo): bump clerk-ios to 1.2.5#8978
wobsoriano merged 4 commits into
mainfrom
automation/expo-ios-sdk-1-2-5

Conversation

@clerk-cookie

@clerk-cookieclerk-cookie commented Jun 24, 2026

Copy link
Copy Markdown
Collaborator

Description

Bumps the bundled clerk-ios SDK in @clerk/expo from 1.2.4 to 1.2.5.

Release: https://github.com/clerk/clerk-ios/releases/tag/1.2.5

Checklist

  • JavaScript repo CI will run on the PR.
  • Not applicable: JSDoc comments or documentation updates.

Type of change

Refactoring / dependency upgrade / documentation

Summary by CodeRabbit

  • Chores
    • Updated the Expo package release metadata to a patch version.
    • Bumped the bundled iOS SDK reference to a newer version.
    • Aligned the iOS dependency specification with the latest SDK release.

@clerk-cookie
clerk-cookie requested a review from a teamJune 24, 2026 14:57
@vercel

vercelBot commented Jun 24, 2026

Copy link
Copy Markdown

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

ProjectDeploymentActionsUpdated (UTC)
clerk-js-sandboxReadyReadyPreview, CommentJun 25, 2026 3:09am
swingsetReadyReadyPreview, CommentJun 25, 2026 3:09am

Request Review

@changeset-bot

changeset-botBot commented Jun 24, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 53ddd8d

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
NameType
@clerk/expoPatch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai

coderabbitaiBot commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Pro Plus

Run ID: eb8409ee-91ff-44de-84d4-5722bcaf9b06

📥 Commits

Reviewing files that changed from the base of the PR and between f23ac11 and cbf69bc.

📒 Files selected for processing (2)
  • .changeset/expo-bump-clerk-ios-1-2-5.md
  • packages/expo/ios/ClerkExpo.podspec

📝 Walkthrough

Walkthrough

Bumps the bundled clerk-ios SDK version from 1.2.4 to 1.2.5 by updating clerk_ios_version in ClerkExpo.podspec and adding a new changeset file that marks @clerk/expo for a patch release.

clerk-ios 1.2.5 version bump

Layer / File(s)Summary
Podspec and changeset version update
packages/expo/ios/ClerkExpo.podspec, .changeset/expo-bump-clerk-ios-1-2-5.md
clerk_ios_version is incremented from 1.2.4 to 1.2.5 in the CocoaPods spec, and a new changeset entry registers @clerk/expo for a patch release referencing the updated iOS SDK version.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • clerk/javascript#8780: Also bumps a bundled native SDK version for @clerk/expo (clerk-android) via changeset and platform build file, the same pattern used here for clerk-ios.
  • clerk/javascript#8867: Directly precedent PR that bumped clerk-ios from 1.2.3 to 1.2.4 across the same changeset and podspec files.
  • clerk/javascript#8854: Bumped clerk-ios from 1.2.2 to 1.2.3 using the identical changeset-plus-podspec pattern.

Suggested labels

expo

Suggested reviewers

  • wobsoriano

🐇 A hop, a skip, a version bump so small,
From .4 to .5 — the tiniest of calls!
The podspec now points where the new SDK lives,
The changeset says "patch" for the joy it gives.
One line changed, one file new — done in a flash,
This bunny approves of such elegant dash! 🍎

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly and concisely describes the main change: bumping the Expo package's clerk-ios dependency to 1.2.5.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


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

@pkg-pr-new

pkg-pr-newBot commented Jun 24, 2026

Copy link
Copy Markdown

Open in StackBlitz

@clerk/astro

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

@clerk/backend

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

@clerk/chrome-extension

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

@clerk/clerk-js

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

@clerk/electron

npm i https://pkg.pr.new/@clerk/electron@8978

@clerk/electron-passkeys

npm i https://pkg.pr.new/@clerk/electron-passkeys@8978

@clerk/eslint-plugin

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

@clerk/expo

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

@clerk/expo-passkeys

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

@clerk/express

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

@clerk/fastify

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

@clerk/hono

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

@clerk/localizations

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

@clerk/nextjs

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

@clerk/nuxt

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

@clerk/react

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

@clerk/react-router

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

@clerk/shared

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

@clerk/tanstack-react-start

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

@clerk/testing

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

@clerk/ui

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

@clerk/upgrade

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

@clerk/vue

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

commit: 53ddd8d

@github-actions

github-actionsBot commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

API Changes Report

Generated by Break Check on 2026-06-25T03:10:24.512Z

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 53ddd8d.

@wobsoriano
wobsoriano merged commit 1938fe4 into mainJun 25, 2026
54 checks passed
@wobsoriano
wobsoriano deleted the automation/expo-ios-sdk-1-2-5 branch June 25, 2026 03:16
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@clerk-cookie@mikepitre@wobsoriano