Skip to content

Commit 87c4457

Browse files
ci(repo): Version packages
1 parent 31ad772 commit 87c4457

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+357
-121
lines changed

.changeset/big-chairs-smile.md

-5
This file was deleted.

.changeset/big-regions-worry.md

-5
This file was deleted.

.changeset/common-teams-do.md

-5
This file was deleted.

.changeset/dry-lamps-sneeze.md

-7
This file was deleted.

.changeset/early-boats-help.md

-5
This file was deleted.

.changeset/fancy-lies-sell.md

-7
This file was deleted.

.changeset/flat-insects-share.md

-5
This file was deleted.

.changeset/major-spoons-fold.md

-6
This file was deleted.

.changeset/mighty-cloths-brush.md

-5
This file was deleted.

.changeset/modern-paws-mate.md

-7
This file was deleted.

.changeset/nice-clubs-lead.md

-5
This file was deleted.

.changeset/real-cloths-brake.md

-2
This file was deleted.

.changeset/red-ducks-hide.md

-35
This file was deleted.

packages/agent-toolkit/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @clerk/agent-toolkit
22

3+
## 0.0.18
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
8+
- @clerk/types@4.51.0
9+
- @clerk/backend@1.27.0
10+
- @clerk/shared@3.4.0
11+
312
## 0.0.17
413

514
### Patch Changes

packages/agent-toolkit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/agent-toolkit",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"description": "Clerk Toolkit for AI Agents",
55
"homepage": "https://clerk.com/",
66
"bugs": {

packages/astro/CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# @clerk/astro
22

3+
## 2.6.0
4+
5+
### Minor Changes
6+
7+
- Update `useAuth` to handle pending sessions as signed-out by default, with opt-out via `useAuth({ treatPendingAsSignedOut: false })` or `clerk({ treatPendingAsSignedOut: false })` ([#5507](https://github.com/clerk/javascript/pull/5507)) by [@LauraBeatris](https://github.com/LauraBeatris)
8+
9+
### Patch Changes
10+
11+
- Introduce `treatPendingAsSignedOut` prop to client control components ([#5512](https://github.com/clerk/javascript/pull/5512)) by [@LauraBeatris](https://github.com/LauraBeatris)
12+
13+
```tsx
14+
// Children node only mounts when session is active
15+
// Example: Organization selection must be completed if enforced
16+
<SignedIn>
17+
<p>You have selected an organization!</p>
18+
</SignedIn>
19+
```
20+
21+
```tsx
22+
// Children node mounts for both active and pending session
23+
<SignedIn treatPendingAsSignedOut={false}>
24+
<p>You might not have an organization selected</p>
25+
</SignedIn>
26+
```
27+
28+
```tsx
29+
// Children node only mounts when session is active
30+
// Example: Organization selection must be completed if enforced
31+
<Protect>
32+
<p>You have selected an organization!</p>
33+
</Protect>
34+
```
35+
36+
```tsx
37+
// Children node mounts for both active and pending session
38+
<Protect treatPendingAsSignedOut={false}>
39+
<p>You might not have an organization selected</p>
40+
</Protect>
41+
```
42+
43+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
44+
- @clerk/types@4.51.0
45+
- @clerk/backend@1.27.0
46+
- @clerk/shared@3.4.0
47+
348
## 2.5.0
449

550
### Minor Changes

packages/astro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/astro",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"description": "Clerk SDK for Astro",
55
"keywords": [
66
"auth",

packages/backend/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## 1.27.0
4+
5+
### Minor Changes
6+
7+
- Introduces `ver` as JWT claim to allow versioning of the session token. ([#5521](https://github.com/clerk/javascript/pull/5521)) by [@octoper](https://github.com/octoper)
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
12+
- @clerk/types@4.51.0
13+
- @clerk/shared@3.4.0
14+
315
## 1.26.0
416

517
### Minor Changes

packages/backend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/backend",
3-
"version": "1.26.0",
3+
"version": "1.27.0",
44
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
55
"homepage": "https://clerk.com/",
66
"bugs": {

packages/chrome-extension/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 2.2.25
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`31ad772`](https://github.com/clerk/javascript/commit/31ad7724e9d7e00c53ff8ceec0cfbb7f3a0b1de8), [`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`a8180ce`](https://github.com/clerk/javascript/commit/a8180ceef447a13d84eac6a64ed7a04d791d8d64), [`9f3de7a`](https://github.com/clerk/javascript/commit/9f3de7a66cc21e4e8beb8664a8a5516cc2c631f7), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d), [`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`026ad57`](https://github.com/clerk/javascript/commit/026ad5717cf661182c219fb0ffab4522083065c3)]:
8+
- @clerk/clerk-js@5.59.1
9+
- @clerk/clerk-react@5.26.0
10+
- @clerk/shared@3.4.0
11+
312
## 2.2.24
413

514
### Patch Changes

packages/chrome-extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/chrome-extension",
3-
"version": "2.2.24",
3+
"version": "2.2.25",
44
"description": "Clerk SDK for Chrome extensions",
55
"keywords": [
66
"auth",

packages/clerk-js/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## 5.59.1
4+
5+
### Patch Changes
6+
7+
- Adds support for Apple Pay to `AddPaymentSource` component, and removes the unusable "collapsed" state. ([#5506](https://github.com/clerk/javascript/pull/5506)) by [@aeliox](https://github.com/aeliox)
8+
9+
- Fixes an issue where a race condition was caused by triggering navigations during a call to `setActive`. ([#5515](https://github.com/clerk/javascript/pull/5515)) by [@dstaley](https://github.com/dstaley)
10+
11+
- Introduce `clerk.__internal_openCheckout()` and `clerk.__internal_closeCheckout()` methods and remove `<Checkout />` from within the `<PricingTable />` component. ([#5481](https://github.com/clerk/javascript/pull/5481)) by [@alexcarpenter](https://github.com/alexcarpenter)
12+
13+
- Fix routing issue in `<Checkout />` component by wrapping the `LazyDrawerRenderer` with nested `VirtualRouter`. ([#5527](https://github.com/clerk/javascript/pull/5527)) by [@alexcarpenter](https://github.com/alexcarpenter)
14+
15+
- Fixes an issue where the SSO callback URL was incorrectly set for combined sign-in/sign-up. ([#5515](https://github.com/clerk/javascript/pull/5515)) by [@dstaley](https://github.com/dstaley)
16+
17+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
18+
19+
20+
21+
322
## 5.59.0
423

524
### Minor Changes

packages/clerk-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/clerk-js",
3-
"version": "5.59.0",
3+
"version": "5.59.1",
44
"description": "Clerk JS library",
55
"keywords": [
66
"clerk",

packages/elements/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @clerk/elements
22

3+
## 0.23.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`a8180ce`](https://github.com/clerk/javascript/commit/a8180ceef447a13d84eac6a64ed7a04d791d8d64), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d), [`026ad57`](https://github.com/clerk/javascript/commit/026ad5717cf661182c219fb0ffab4522083065c3)]:
8+
- @clerk/clerk-react@5.26.0
9+
- @clerk/types@4.51.0
10+
- @clerk/shared@3.4.0
11+
312
## 0.23.9
413

514
### Patch Changes

packages/elements/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/elements",
3-
"version": "0.23.9",
3+
"version": "0.23.10",
44
"description": "Clerk Elements",
55
"keywords": [
66
"clerk",

packages/expo-passkeys/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @clerk/expo-passkeys
22

3+
## 0.2.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
8+
- @clerk/types@4.51.0
9+
- @clerk/shared@3.4.0
10+
311
## 0.2.1
412

513
### Patch Changes

packages/expo-passkeys/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/expo-passkeys",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Passkeys library to be used with Clerk for expo",
55
"keywords": [
66
"react-native",

packages/expo/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 2.9.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`31ad772`](https://github.com/clerk/javascript/commit/31ad7724e9d7e00c53ff8ceec0cfbb7f3a0b1de8), [`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`a8180ce`](https://github.com/clerk/javascript/commit/a8180ceef447a13d84eac6a64ed7a04d791d8d64), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`9f3de7a`](https://github.com/clerk/javascript/commit/9f3de7a66cc21e4e8beb8664a8a5516cc2c631f7), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d), [`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`026ad57`](https://github.com/clerk/javascript/commit/026ad5717cf661182c219fb0ffab4522083065c3)]:
8+
- @clerk/clerk-js@5.59.1
9+
- @clerk/clerk-react@5.26.0
10+
- @clerk/types@4.51.0
11+
- @clerk/shared@3.4.0
12+
313
## 2.9.7
414

515
### Patch Changes

packages/expo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/clerk-expo",
3-
"version": "2.9.7",
3+
"version": "2.9.8",
44
"description": "Clerk React Native/Expo library",
55
"keywords": [
66
"react",

packages/express/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 1.4.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
8+
- @clerk/types@4.51.0
9+
- @clerk/backend@1.27.0
10+
- @clerk/shared@3.4.0
11+
312
## 1.4.0
413

514
### Minor Changes

packages/express/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/express",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "Clerk server SDK for usage with Express",
55
"keywords": [
66
"clerk",

packages/fastify/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 2.2.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e1ec52b`](https://github.com/clerk/javascript/commit/e1ec52b93038c9cb24e030dc06e53825a384a480), [`bebb6d8`](https://github.com/clerk/javascript/commit/bebb6d8af66b2bb7a4b3bdf96f9d480e65b31ba2), [`d0d5203`](https://github.com/clerk/javascript/commit/d0d5203e4ee9e2e1bed5c00ef0f87f0130f1d298), [`6112420`](https://github.com/clerk/javascript/commit/6112420889f1577fb16d7bfa706aaffe1090093d)]:
8+
9+
10+
11+
312
## 2.2.0
413

514
### Minor Changes

packages/fastify/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/fastify",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Clerk SDK for Fastify",
55
"keywords": [
66
"auth",

0 commit comments

Comments
 (0)