Skip to content

Commit 1e36633

Browse files
ci(repo): Version packages
1 parent 3e0ef92 commit 1e36633

Some content is hidden

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

48 files changed

+516
-79
lines changed

.changeset/cold-bottles-watch.md

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

.changeset/deprecate-clerk-types.md

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

.changeset/gold-planes-wear.md

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

.changeset/heavy-badgers-beam.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.45
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3e0ef92`](https://github.com/clerk/javascript/commit/3e0ef9281194714f56dcf656d0caf4f75dcf097c), [`2587aa6`](https://github.com/clerk/javascript/commit/2587aa671dac1ca66711889bf1cd1c2e2ac8d7c8)]:
8+
- @clerk/shared@3.30.0
9+
- @clerk/types@4.97.0
10+
- @clerk/backend@2.19.2
11+
312
## 0.1.44
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.44",
3+
"version": "0.1.45",
44
"description": "Clerk Toolkit for AI Agents",
55
"homepage": "https://clerk.com/",
66
"bugs": {

packages/astro/CHANGELOG.md

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

3+
## 2.14.3
4+
5+
### Patch Changes
6+
7+
- Deprecate `@clerk/types` in favor of `@clerk/shared/types` ([#7022](https://github.com/clerk/javascript/pull/7022)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
The `@clerk/types` package is now deprecated. All type definitions have been consolidated and moved to `@clerk/shared/types` to improve consistency across the Clerk ecosystem.
10+
11+
**Backward Compatibility:**
12+
13+
The `@clerk/types` package will remain available and will continue to re-export all types from `@clerk/shared/types` to ensure backward compatibility. Existing applications will continue to work without any immediate breaking changes. However, we strongly recommend migrating to `@clerk/shared/types` as new type definitions and updates will only be added to `@clerk/shared/types` starting with the next major release.
14+
15+
**Migration Steps:**
16+
17+
Please update your imports from `@clerk/types` to `@clerk/shared/types`:
18+
19+
```typescript
20+
// Before
21+
import type { ClerkResource, UserResource } from '@clerk/types';
22+
23+
// After
24+
import type { ClerkResource, UserResource } from '@clerk/shared/types';
25+
```
26+
27+
**What Changed:**
28+
29+
All type definitions including:
30+
31+
- Resource types (User, Organization, Session, etc.)
32+
- API response types
33+
- Configuration types
34+
- Authentication types
35+
- Error types
36+
- And all other shared types
37+
38+
Have been moved from `packages/types/src` to `packages/shared/src/types` and are now exported via `@clerk/shared/types`.
39+
40+
- Updated dependencies [[`3e0ef92`](https://github.com/clerk/javascript/commit/3e0ef9281194714f56dcf656d0caf4f75dcf097c), [`2587aa6`](https://github.com/clerk/javascript/commit/2587aa671dac1ca66711889bf1cd1c2e2ac8d7c8)]:
41+
- @clerk/shared@3.30.0
42+
- @clerk/types@4.97.0
43+
- @clerk/backend@2.19.2
44+
345
## 2.14.2
446

547
### 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.14.2",
3+
"version": "2.14.3",
44
"description": "Clerk SDK for Astro",
55
"keywords": [
66
"auth",

packages/backend/CHANGELOG.md

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

3+
## 2.19.2
4+
5+
### Patch Changes
6+
7+
- Deprecate `@clerk/types` in favor of `@clerk/shared/types` ([#7022](https://github.com/clerk/javascript/pull/7022)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
The `@clerk/types` package is now deprecated. All type definitions have been consolidated and moved to `@clerk/shared/types` to improve consistency across the Clerk ecosystem.
10+
11+
**Backward Compatibility:**
12+
13+
The `@clerk/types` package will remain available and will continue to re-export all types from `@clerk/shared/types` to ensure backward compatibility. Existing applications will continue to work without any immediate breaking changes. However, we strongly recommend migrating to `@clerk/shared/types` as new type definitions and updates will only be added to `@clerk/shared/types` starting with the next major release.
14+
15+
**Migration Steps:**
16+
17+
Please update your imports from `@clerk/types` to `@clerk/shared/types`:
18+
19+
```typescript
20+
// Before
21+
import type { ClerkResource, UserResource } from '@clerk/types';
22+
23+
// After
24+
import type { ClerkResource, UserResource } from '@clerk/shared/types';
25+
```
26+
27+
**What Changed:**
28+
29+
All type definitions including:
30+
31+
- Resource types (User, Organization, Session, etc.)
32+
- API response types
33+
- Configuration types
34+
- Authentication types
35+
- Error types
36+
- And all other shared types
37+
38+
Have been moved from `packages/types/src` to `packages/shared/src/types` and are now exported via `@clerk/shared/types`.
39+
40+
- Updated dependencies [[`3e0ef92`](https://github.com/clerk/javascript/commit/3e0ef9281194714f56dcf656d0caf4f75dcf097c), [`2587aa6`](https://github.com/clerk/javascript/commit/2587aa671dac1ca66711889bf1cd1c2e2ac8d7c8)]:
41+
- @clerk/shared@3.30.0
42+
- @clerk/types@4.97.0
43+
344
## 2.19.1
445

546
### Patch 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.19.1",
3+
"version": "2.19.2",
44
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
55
"homepage": "https://clerk.com/",
66
"bugs": {

0 commit comments

Comments
 (0)