') + ')', '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); } })(); })(); Version Packages - V4 by clerk-cookie · Pull Request #2183 · clerk/javascript · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/cold-comics-serve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/good-llamas-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-actors-cross.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-crabs-fetch.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/slimy-windows-grab.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/swift-rocks-nail.md

This file was deleted.

20 changes: 20 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
# Change Log

## 0.34.2

### Patch Changes

- Add OrganizationRoleAPI for CRUD operations regarding instance level organization roles. ([#2187](https://github.com/clerk/javascript/pull/2187)) by [@panteliselef](https://github.com/panteliselef)

- Deprecate `createSMSMessage` and `SMSMessageApi` from `clerkClient`. ([#2184](https://github.com/clerk/javascript/pull/2184)) by [@Nikpolik](https://github.com/Nikpolik)

The `/sms_messages` Backend API endpoint will also be dropped in the future since this feature will no longer be available for new Clerk instances.

For a brief period it will still be accessible for instances that have used it in the past 7
days (13-11-2023 to 20-11-2023).

New instances will get a 403 forbidden response if they try to access it.

- Add OrganizationPermissionAPI for CRUD operations regarding instance level organization permissions. ([#2185](https://github.com/clerk/javascript/pull/2185)) by [@panteliselef](https://github.com/panteliselef)

- Updated dependencies [[`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e)]:
- @clerk/shared@1.1.1

## 0.34.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/backend/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/backend",
"version": "0.34.1",
"version": "0.34.2",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"homepage": "https://clerk.com/",
"bugs": {
Expand DownExpand Up@@ -55,7 +55,7 @@
"test:cloudflare-workerd": "tests/cloudflare-workerd/run.sh"
},
"dependencies": {
"@clerk/shared": "1.1.0",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"@peculiar/webcrypto": "1.4.1",
"@types/node": "16.18.6",
Expand Down
8 changes: 8 additions & 0 deletions packages/chrome-extension/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
# Change Log

## 0.5.3

### Patch Changes

- Updated dependencies [[`d8cd0e236`](https://github.com/clerk/javascript/commit/d8cd0e236ec8b1de35d83073193470ed53150424)]:
- @clerk/clerk-js@4.65.3
- @clerk/clerk-react@4.28.1

## 0.5.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/chrome-extension/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/chrome-extension",
"version": "0.5.2",
"version": "0.5.3",
"description": "Clerk SDK for Chrome extensions",
"keywords": [
"auth",
Expand DownExpand Up@@ -45,8 +45,8 @@
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html"
},
"dependencies": {
"@clerk/clerk-js": "4.65.2",
"@clerk/clerk-react": "4.28.0"
"@clerk/clerk-js": "4.65.3",
"@clerk/clerk-react": "4.28.1"
},
"devDependencies": {
"@types/chrome": "*",
Expand Down
9 changes: 9 additions & 0 deletions packages/clerk-js/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
# Change Log

## 4.65.3

### Patch Changes

- Hide members page of <OrganizationProfile/> if user doesn't have any membership related permissions. ([#2182](https://github.com/clerk/javascript/pull/2182)) by [@panteliselef](https://github.com/panteliselef)

- Updated dependencies [[`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e)]:
- @clerk/shared@1.1.1

## 4.65.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/clerk-js/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-js",
"version": "4.65.2",
"version": "4.65.3",
"description": "Clerk JS library",
"keywords": [
"clerk",
Expand DownExpand Up@@ -51,7 +51,7 @@
"browserslist": "last 2 versions, ios_saf > 12, Safari > 12, > 1%, not dead, not ie > 0",
"dependencies": {
"@clerk/localizations": "1.26.10",
"@clerk/shared": "1.1.0",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.1",
Expand Down
9 changes: 9 additions & 0 deletions packages/expo/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
# Change Log

## 0.19.19

### Patch Changes

- Updated dependencies [[`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`d8cd0e236`](https://github.com/clerk/javascript/commit/d8cd0e236ec8b1de35d83073193470ed53150424), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e)]:
- @clerk/shared@1.1.1
- @clerk/clerk-js@4.65.3
- @clerk/clerk-react@4.28.1

## 0.19.18

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/expo/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-expo",
"version": "0.19.18",
"version": "0.19.19",
"description": "Clerk React Native/Expo library",
"keywords": [
"react",
Expand DownExpand Up@@ -39,9 +39,9 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/clerk-js": "4.65.2",
"@clerk/clerk-react": "4.28.0",
"@clerk/shared": "1.1.0",
"@clerk/clerk-js": "4.65.3",
"@clerk/clerk-react": "4.28.1",
"@clerk/shared": "1.1.1",
"base-64": "1.0.0",
"react-native-url-polyfill": "2.0.0"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/fastify/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
# Change Log

## 0.6.23

### Patch Changes

- Updated dependencies [[`aaaf24a55`](https://github.com/clerk/javascript/commit/aaaf24a55a51acd501c956fb2a42e0af6230955a), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e61df051c`](https://github.com/clerk/javascript/commit/e61df051cf849b5372f5b8b2ac7e16210056c52c), [`9d8a29b8e`](https://github.com/clerk/javascript/commit/9d8a29b8e4ad42edf30dbceece8053f23578246f)]:
- @clerk/backend@0.34.2
- @clerk/shared@1.1.1

## 0.6.22

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/fastify/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/fastify",
"version": "0.6.22",
"version": "0.6.23",
"description": "Clerk SDK for Fastify",
"keywords": [
"auth",
Expand DownExpand Up@@ -40,8 +40,8 @@
"test:cache:clear": "jest --clearCache --useStderr"
},
"dependencies": {
"@clerk/backend": "0.34.1",
"@clerk/shared": "1.1.0",
"@clerk/backend": "0.34.2",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"cookies": "0.8.0"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/gatsby-plugin-clerk/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
# Change Log

## 4.4.24

### Patch Changes

- Updated dependencies [[`aaaf24a55`](https://github.com/clerk/javascript/commit/aaaf24a55a51acd501c956fb2a42e0af6230955a), [`e61df051c`](https://github.com/clerk/javascript/commit/e61df051cf849b5372f5b8b2ac7e16210056c52c), [`9d8a29b8e`](https://github.com/clerk/javascript/commit/9d8a29b8e4ad42edf30dbceece8053f23578246f)]:
- @clerk/backend@0.34.2
- @clerk/clerk-sdk-node@4.12.22
- @clerk/clerk-react@4.28.1

## 4.4.23

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/gatsby-plugin-clerk/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-clerk",
"version": "4.4.23",
"version": "4.4.24",
"description": "Clerk SDK for Gatsby",
"keywords": [
"clerk",
Expand DownExpand Up@@ -44,9 +44,9 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "0.34.1",
"@clerk/clerk-react": "4.28.0",
"@clerk/clerk-sdk-node": "4.12.21",
"@clerk/backend": "0.34.2",
"@clerk/clerk-react": "4.28.1",
"@clerk/clerk-sdk-node": "4.12.22",
"@clerk/types": "3.58.0",
"cookie": "0.5.0",
"tslib": "2.4.1"
Expand Down
12 changes: 12 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
# Change Log

## 4.27.2

### Patch Changes

- Add OrganizationPermissionAPI for CRUD operations regarding instance level organization permissions. ([#2185](https://github.com/clerk/javascript/pull/2185)) by [@panteliselef](https://github.com/panteliselef)

- Updated dependencies [[`aaaf24a55`](https://github.com/clerk/javascript/commit/aaaf24a55a51acd501c956fb2a42e0af6230955a), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e61df051c`](https://github.com/clerk/javascript/commit/e61df051cf849b5372f5b8b2ac7e16210056c52c), [`9d8a29b8e`](https://github.com/clerk/javascript/commit/9d8a29b8e4ad42edf30dbceece8053f23578246f)]:
- @clerk/backend@0.34.2
- @clerk/shared@1.1.1
- @clerk/clerk-sdk-node@4.12.22
- @clerk/clerk-react@4.28.1

## 4.27.1

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/nextjs/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/nextjs",
"version": "4.27.1",
"version": "4.27.2",
"description": "Clerk SDK for NextJS",
"keywords": [
"clerk",
Expand DownExpand Up@@ -87,10 +87,10 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "0.34.1",
"@clerk/clerk-react": "4.28.0",
"@clerk/clerk-sdk-node": "4.12.21",
"@clerk/shared": "1.1.0",
"@clerk/backend": "0.34.2",
"@clerk/clerk-react": "4.28.1",
"@clerk/clerk-sdk-node": "4.12.22",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"path-to-regexp": "6.2.1",
"tslib": "2.4.1"
Expand Down
7 changes: 7 additions & 0 deletions packages/react/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
# Change Log

## 4.28.1

### Patch Changes

- Updated dependencies [[`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e)]:
- @clerk/shared@1.1.1

## 4.28.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-react",
"version": "4.28.0",
"version": "4.28.1",
"description": "Clerk React library",
"keywords": [
"clerk",
Expand DownExpand Up@@ -56,7 +56,7 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/shared": "1.1.0",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"tslib": "2.4.1"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/remix/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
# Change Log

## 3.1.6

### Patch Changes

- Updated dependencies [[`aaaf24a55`](https://github.com/clerk/javascript/commit/aaaf24a55a51acd501c956fb2a42e0af6230955a), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e61df051c`](https://github.com/clerk/javascript/commit/e61df051cf849b5372f5b8b2ac7e16210056c52c), [`9d8a29b8e`](https://github.com/clerk/javascript/commit/9d8a29b8e4ad42edf30dbceece8053f23578246f)]:
- @clerk/backend@0.34.2
- @clerk/shared@1.1.1
- @clerk/clerk-react@4.28.1

## 3.1.5

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/remix/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/remix",
"version": "3.1.5",
"version": "3.1.6",
"description": "Clerk SDK for Remix",
"keywords": [
"clerk",
Expand DownExpand Up@@ -69,9 +69,9 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "0.34.1",
"@clerk/clerk-react": "4.28.0",
"@clerk/shared": "1.1.0",
"@clerk/backend": "0.34.2",
"@clerk/clerk-react": "4.28.1",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"cookie": "0.5.0",
"tslib": "2.4.1"
Expand Down
10 changes: 10 additions & 0 deletions packages/sdk-node/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
# Change Log

## 4.12.22

### Patch Changes

- Add OrganizationPermissionAPI for CRUD operations regarding instance level organization permissions. ([#2185](https://github.com/clerk/javascript/pull/2185)) by [@panteliselef](https://github.com/panteliselef)

- Updated dependencies [[`aaaf24a55`](https://github.com/clerk/javascript/commit/aaaf24a55a51acd501c956fb2a42e0af6230955a), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e41374abf`](https://github.com/clerk/javascript/commit/e41374abf96ae62410ac63c03c5055d4f9af363e), [`e61df051c`](https://github.com/clerk/javascript/commit/e61df051cf849b5372f5b8b2ac7e16210056c52c), [`9d8a29b8e`](https://github.com/clerk/javascript/commit/9d8a29b8e4ad42edf30dbceece8053f23578246f)]:
- @clerk/backend@0.34.2
- @clerk/shared@1.1.1

## 4.12.21

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/sdk-node/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-sdk-node",
"version": "4.12.21",
"version": "4.12.22",
"description": "Clerk server SDK for usage with node",
"keywords": [
"clerk",
Expand DownExpand Up@@ -65,8 +65,8 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "0.34.1",
"@clerk/shared": "1.1.0",
"@clerk/backend": "0.34.2",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.58.0",
"@types/cookies": "0.7.7",
"@types/express": "4.17.14",
Expand Down
Loading