Skip to content

Commit 18aba58

Browse files
chore(repo): Version packages (#2564)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c59a2d4 commit 18aba58

File tree

14 files changed

+94
-33
lines changed

14 files changed

+94
-33
lines changed

.changeset/fresh-boats-fry.md

-13
This file was deleted.

.changeset/rich-years-help.md

-7
This file was deleted.

packages/backend/CHANGELOG.md

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

3+
## 0.37.2
4+
5+
### Patch Changes
6+
7+
- Replace the `Clerk-Backend-SDK` header with `User-Agent` in BAPI requests and update it's value to contain both the package name and the package version of the clerk package ([#2579](https://github.com/clerk/javascript/pull/2579)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
executing the request. Eg request from `@clerk/nextjs` to BAPI with append `User-Agent: @clerk/[email protected]` using the latest version.
10+
11+
Miscellaneous changes: The backend test build changed to use tsup.
12+
13+
- Add deprecation warning for `EmailAPI.createEmail`. ([#2555](https://github.com/clerk/javascript/pull/2555)) by [@Nikpolik](https://github.com/Nikpolik)
14+
15+
This endpoint is no longer available and the function will be removed in the next major version.
16+
317
## 0.37.1
418

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

packages/fastify/CHANGELOG.md

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

3+
## 0.6.31
4+
5+
### Patch Changes
6+
7+
- Replace the `Clerk-Backend-SDK` header with `User-Agent` in BAPI requests and update it's value to contain both the package name and the package version of the clerk package ([#2579](https://github.com/clerk/javascript/pull/2579)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
executing the request. Eg request from `@clerk/nextjs` to BAPI with append `User-Agent: @clerk/[email protected]` using the latest version.
10+
11+
Miscellaneous changes: The backend test build changed to use tsup.
12+
13+
- Updated dependencies [[`c59a2d4a2`](https://github.com/clerk/javascript/commit/c59a2d4a22166076340b3c5c5e20c112a138acbe), [`2a615bf98`](https://github.com/clerk/javascript/commit/2a615bf98a22250c9105671ce72bf5374602802f)]:
14+
- @clerk/backend@0.37.2
15+
316
## 0.6.30
417

518
### Patch Changes

packages/fastify/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/fastify",
3-
"version": "0.6.30",
3+
"version": "0.6.31",
44
"description": "Clerk SDK for Fastify",
55
"keywords": [
66
"auth",
@@ -40,7 +40,7 @@
4040
"test:cache:clear": "jest --clearCache --useStderr"
4141
},
4242
"dependencies": {
43-
"@clerk/backend": "0.37.1",
43+
"@clerk/backend": "0.37.2",
4444
"@clerk/shared": "1.3.1",
4545
"@clerk/types": "3.60.0",
4646
"cookies": "0.8.0"

packages/gatsby-plugin-clerk/CHANGELOG.md

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

3+
## 4.4.33
4+
5+
### Patch Changes
6+
7+
- Replace the `Clerk-Backend-SDK` header with `User-Agent` in BAPI requests and update it's value to contain both the package name and the package version of the clerk package ([#2579](https://github.com/clerk/javascript/pull/2579)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
executing the request. Eg request from `@clerk/nextjs` to BAPI with append `User-Agent: @clerk/[email protected]` using the latest version.
10+
11+
Miscellaneous changes: The backend test build changed to use tsup.
12+
13+
- Updated dependencies [[`c59a2d4a2`](https://github.com/clerk/javascript/commit/c59a2d4a22166076340b3c5c5e20c112a138acbe), [`2a615bf98`](https://github.com/clerk/javascript/commit/2a615bf98a22250c9105671ce72bf5374602802f)]:
14+
- @clerk/clerk-sdk-node@4.13.6
15+
- @clerk/backend@0.37.2
16+
317
## 4.4.32
418

519
### Patch Changes

packages/gatsby-plugin-clerk/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gatsby-plugin-clerk",
3-
"version": "4.4.32",
3+
"version": "4.4.33",
44
"description": "Clerk SDK for Gatsby",
55
"keywords": [
66
"clerk",
@@ -44,9 +44,9 @@
4444
"publish:local": "npx yalc push --replace --sig"
4545
},
4646
"dependencies": {
47-
"@clerk/backend": "0.37.1",
47+
"@clerk/backend": "0.37.2",
4848
"@clerk/clerk-react": "4.30.3",
49-
"@clerk/clerk-sdk-node": "4.13.5",
49+
"@clerk/clerk-sdk-node": "4.13.6",
5050
"@clerk/types": "3.60.0",
5151
"cookie": "0.5.0",
5252
"tslib": "2.4.1"

packages/nextjs/CHANGELOG.md

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

3+
## 4.29.3
4+
5+
### Patch Changes
6+
7+
- Replace the `Clerk-Backend-SDK` header with `User-Agent` in BAPI requests and update it's value to contain both the package name and the package version of the clerk package ([#2579](https://github.com/clerk/javascript/pull/2579)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
executing the request. Eg request from `@clerk/nextjs` to BAPI with append `User-Agent: @clerk/[email protected]` using the latest version.
10+
11+
Miscellaneous changes: The backend test build changed to use tsup.
12+
13+
- Updated dependencies [[`c59a2d4a2`](https://github.com/clerk/javascript/commit/c59a2d4a22166076340b3c5c5e20c112a138acbe), [`2a615bf98`](https://github.com/clerk/javascript/commit/2a615bf98a22250c9105671ce72bf5374602802f)]:
14+
- @clerk/clerk-sdk-node@4.13.6
15+
- @clerk/backend@0.37.2
16+
317
## 4.29.2
418

519
### Patch Changes

packages/nextjs/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/nextjs",
3-
"version": "4.29.2",
3+
"version": "4.29.3",
44
"description": "Clerk SDK for NextJS",
55
"keywords": [
66
"clerk",
@@ -87,9 +87,9 @@
8787
"test:ci": "jest --maxWorkers=70%"
8888
},
8989
"dependencies": {
90-
"@clerk/backend": "0.37.1",
90+
"@clerk/backend": "0.37.2",
9191
"@clerk/clerk-react": "4.30.3",
92-
"@clerk/clerk-sdk-node": "4.13.5",
92+
"@clerk/clerk-sdk-node": "4.13.6",
9393
"@clerk/shared": "1.3.1",
9494
"@clerk/types": "3.60.0",
9595
"path-to-regexp": "6.2.1",

packages/remix/CHANGELOG.md

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

3+
## 3.1.15
4+
5+
### Patch Changes
6+
7+
- Replace the `Clerk-Backend-SDK` header with `User-Agent` in BAPI requests and update it's value to contain both the package name and the package version of the clerk package ([#2579](https://github.com/clerk/javascript/pull/2579)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
executing the request. Eg request from `@clerk/nextjs` to BAPI with append `User-Agent: @clerk/[email protected]` using the latest version.
10+
11+
Miscellaneous changes: The backend test build changed to use tsup.
12+
13+
- Updated dependencies [[`c59a2d4a2`](https://github.com/clerk/javascript/commit/c59a2d4a22166076340b3c5c5e20c112a138acbe), [`2a615bf98`](https://github.com/clerk/javascript/commit/2a615bf98a22250c9105671ce72bf5374602802f)]:
14+
- @clerk/backend@0.37.2
15+
316
## 3.1.14
417

518
### Patch Changes

packages/remix/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/remix",
3-
"version": "3.1.14",
3+
"version": "3.1.15",
44
"description": "Clerk SDK for Remix",
55
"keywords": [
66
"clerk",
@@ -69,7 +69,7 @@
6969
"publish:local": "npx yalc push --replace --sig"
7070
},
7171
"dependencies": {
72-
"@clerk/backend": "0.37.1",
72+
"@clerk/backend": "0.37.2",
7373
"@clerk/clerk-react": "4.30.3",
7474
"@clerk/shared": "1.3.1",
7575
"@clerk/types": "3.60.0",

packages/sdk-node/CHANGELOG.md

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

3+
## 4.13.6
4+
5+
### Patch Changes
6+
7+
- Replace the `Clerk-Backend-SDK` header with `User-Agent` in BAPI requests and update it's value to contain both the package name and the package version of the clerk package ([#2579](https://github.com/clerk/javascript/pull/2579)) by [@nikosdouvlis](https://github.com/nikosdouvlis)
8+
9+
executing the request. Eg request from `@clerk/nextjs` to BAPI with append `User-Agent: @clerk/[email protected]` using the latest version.
10+
11+
Miscellaneous changes: The backend test build changed to use tsup.
12+
13+
- Updated dependencies [[`c59a2d4a2`](https://github.com/clerk/javascript/commit/c59a2d4a22166076340b3c5c5e20c112a138acbe), [`2a615bf98`](https://github.com/clerk/javascript/commit/2a615bf98a22250c9105671ce72bf5374602802f)]:
14+
- @clerk/backend@0.37.2
15+
316
## 4.13.5
417

518
### Patch Changes

packages/sdk-node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/clerk-sdk-node",
3-
"version": "4.13.5",
3+
"version": "4.13.6",
44
"description": "Clerk server SDK for usage with node",
55
"keywords": [
66
"clerk",
@@ -65,7 +65,7 @@
6565
"test:ci": "jest --maxWorkers=70%"
6666
},
6767
"dependencies": {
68-
"@clerk/backend": "0.37.1",
68+
"@clerk/backend": "0.37.2",
6969
"@clerk/shared": "1.3.1",
7070
"@clerk/types": "3.60.0",
7171
"@types/cookies": "0.7.7",

0 commit comments

Comments
 (0)