Skip to content

Commit 5958d94

Browse files
ci(repo): Version packages
1 parent 6200c5e commit 5958d94

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

+314
-133
lines changed

.changeset/cool-geckos-stick.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

.changeset/easy-papers-hug.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fair-ways-create.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/giant-comics-argue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/grumpy-lamps-study.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/real-grapes-occur.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

.changeset/sad-mangos-double.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shiny-candles-sneeze.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/smart-pandas-carry.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/violet-terms-fix.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/warm-parents-take.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/agent-toolkit/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @clerk/agent-toolkit
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4)]:
8+
- @clerk/types@4.62.0
9+
- @clerk/shared@3.10.0
10+
- @clerk/backend@2.2.1
11+
312
## 0.1.2
413

514
### Patch Changes

packages/agent-toolkit/package.json

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

packages/astro/CHANGELOG.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,68 @@
11
# @clerk/astro
22

3+
## 2.10.0
4+
5+
### Minor Changes
6+
7+
- Introduce feature or plan based authorization ([#6188](https://github.com/clerk/javascript/pull/6188)) by [@wobsoriano](https://github.com/wobsoriano)
8+
9+
## `<Protect />`
10+
11+
### Plan
12+
13+
```html
14+
<Protect plan="my-plan" />
15+
```
16+
17+
### Feature
18+
19+
```html
20+
<Protect feature="my-feature" />
21+
```
22+
23+
### Scoped per user or per org
24+
25+
```html
26+
<Protect feature="org:my-feature" />
27+
<Protect feature="user:my-feature" />
28+
<Protect plan="org:my-plan" />
29+
<Protect plan="user:my-plan" />
30+
```
31+
32+
## `useAuth()` in React
33+
34+
### Plan
35+
36+
```ts
37+
const { has } = useAuth();
38+
has({ plan: 'my-plan' });
39+
```
40+
41+
### Feature
42+
43+
```ts
44+
const { has } = useAuth();
45+
has({ feature: 'my-feature' });
46+
```
47+
48+
### Scoped per user or per org
49+
50+
```ts
51+
const { has } = useAuth();
52+
53+
has({ feature: 'org:my-feature' });
54+
has({ feature: 'user:my-feature' });
55+
has({ plan: 'user:my-plan' });
56+
has({ plan: 'org:my-plan' });
57+
```
58+
59+
### Patch Changes
60+
61+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4)]:
62+
- @clerk/types@4.62.0
63+
- @clerk/shared@3.10.0
64+
- @clerk/backend@2.2.1
65+
366
## 2.9.2
467

568
### Patch Changes

packages/astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/astro",
3-
"version": "2.9.2",
3+
"version": "2.10.0",
44
"description": "Clerk SDK for Astro",
55
"keywords": [
66
"auth",

packages/backend/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 2.2.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4)]:
8+
- @clerk/types@4.62.0
9+
- @clerk/shared@3.10.0
10+
311
## 2.2.0
412

513
### Minor Changes

packages/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/backend",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 2.5.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`58e9a2f`](https://github.com/clerk/javascript/commit/58e9a2f2962330d52682edf096dcba77fc082b9e), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4), [`036a853`](https://github.com/clerk/javascript/commit/036a8533d020b465b40e51e10ba24345edd36102)]:
8+
- @clerk/clerk-js@5.69.2
9+
- @clerk/shared@3.10.0
10+
- @clerk/clerk-react@5.32.2
11+
312
## 2.5.0
413

514
### Minor Changes

packages/chrome-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/chrome-extension",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "Clerk SDK for Chrome extensions",
55
"keywords": [
66
"auth",

packages/clerk-js/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## 5.69.2
4+
5+
### Patch Changes
6+
7+
- Fixes stale `SignIn` object on `authenticateWithRedirect` for `saml` and `enterprise_sso` custom flows ([#6160](https://github.com/clerk/javascript/pull/6160)) by [@LauraBeatris](https://github.com/LauraBeatris)
8+
9+
Previously, the same connection identifier would be used on every `authenticateWithRedirect` call leading to redirecting to the wrong identity provider
10+
11+
- Fix SVG masking cross-browser compatibility in checkout complete component ([#6190](https://github.com/clerk/javascript/pull/6190)) by [@panteliselef](https://github.com/panteliselef)
12+
13+
- Use hooks exported from `@clerk/shared` to query commerce data. ([#6159](https://github.com/clerk/javascript/pull/6159)) by [@panteliselef](https://github.com/panteliselef)
14+
15+
- Do not display create organization form after accepting organization invitation on after-auth flow ([#6191](https://github.com/clerk/javascript/pull/6191)) by [@LauraBeatris](https://github.com/LauraBeatris)
16+
17+
- Updated dependencies [[`65ca8f5`](https://github.com/clerk/javascript/commit/65ca8f5f6665597fc03f9f5e0bdb99fcab3d056c), [`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4)]:
18+
19+
20+
21+
322
## 5.69.1
423

524
### Patch Changes

packages/clerk-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/clerk-js",
3-
"version": "5.69.1",
3+
"version": "5.69.2",
44
"description": "Clerk JS library",
55
"keywords": [
66
"clerk",

packages/dev-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @clerk/dev-cli
22

3+
## 0.0.12
4+
5+
### Patch Changes
6+
7+
- Add warning regarding Turbopack usage. ([#6189](https://github.com/clerk/javascript/pull/6189)) by [@dstaley](https://github.com/dstaley)
8+
39
## 0.0.11
410

511
### Patch Changes

packages/dev-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/dev-cli",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "CLI tool designed to simplify the process of iterating on packages within the clerk/javascript repository",
55
"homepage": "https://clerk.com/",
66
"bugs": {

packages/elements/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @clerk/elements
22

3+
## 0.23.35
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4)]:
8+
- @clerk/types@4.62.0
9+
- @clerk/shared@3.10.0
10+
- @clerk/clerk-react@5.32.2
11+
312
## 0.23.34
413

514
### Patch Changes

packages/elements/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/elements",
3-
"version": "0.23.34",
3+
"version": "0.23.35",
44
"description": "Clerk Elements",
55
"keywords": [
66
"clerk",

packages/expo-passkeys/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @clerk/expo-passkeys
22

3+
## 0.3.12
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4)]:
8+
- @clerk/types@4.62.0
9+
- @clerk/shared@3.10.0
10+
311
## 0.3.11
412

513
### Patch Changes

packages/expo-passkeys/package.json

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

packages/expo/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## 2.14.0
4+
5+
### Minor Changes
6+
7+
- Re-export useReverification hook from `@clerk/clerk-react` ([#6182](https://github.com/clerk/javascript/pull/6182)) by [@tmilewski](https://github.com/tmilewski)
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`f1be1fe`](https://github.com/clerk/javascript/commit/f1be1fe3d575c11acd04fc7aadcdec8f89829894), [`58e9a2f`](https://github.com/clerk/javascript/commit/58e9a2f2962330d52682edf096dcba77fc082b9e), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4), [`bffb42a`](https://github.com/clerk/javascript/commit/bffb42aaf266a188b9ae7d16ace3024d468a3bd4), [`036a853`](https://github.com/clerk/javascript/commit/036a8533d020b465b40e51e10ba24345edd36102)]:
12+
- @clerk/clerk-js@5.69.2
13+
- @clerk/types@4.62.0
14+
- @clerk/shared@3.10.0
15+
- @clerk/clerk-react@5.32.2
16+
317
## 2.13.2
418

519
### Patch Changes

packages/expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/clerk-expo",
3-
"version": "2.13.2",
3+
"version": "2.14.0",
44
"description": "Clerk React Native/Expo library",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)