Skip to content

Commit

Permalink
chore(repo): Version packages (alpha-v5) (#2366)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
clerk-cookie and github-actions[bot] authored Dec 15, 2023
1 parent 9869cb8 commit 381fc58
Show file tree
Hide file tree
Showing 13 changed files with 68 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
"gold-islands-cover",
"gorgeous-baboons-float",
"gorgeous-insects-reply",
"grumpy-drinks-turn",
"grumpy-suns-boil",
"heavy-falcons-help",
"heavy-horses-nail",
Expand Down Expand Up @@ -243,6 +244,7 @@
"tiny-forks-sit",
"tough-pots-grow",
"tough-roses-hunt",
"tricky-bikes-fix",
"tricky-swans-develop",
"twenty-elephants-try",
"two-pumas-doubt",
Expand Down
6 changes: 6 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.0.0-alpha-v5.9

### Major Changes

- Drop unused SearchParams.AuthStatus constant ([#2347](https://github.com/clerk/javascript/pull/2347)) by [@nikosdouvlis](https://github.com/nikosdouvlis)

## 1.0.0-alpha-v5.8

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/backend",
"version": "1.0.0-alpha-v5.8",
"version": "1.0.0-alpha-v5.9",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"homepage": "https://clerk.com/",
"bugs": {
Expand Down
7 changes: 7 additions & 0 deletions packages/fastify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.0.0-alpha-v5.11

### Patch Changes

- Updated dependencies [[`e602d6c1f`](https://github.com/clerk/javascript/commit/e602d6c1fde7a7757d292f24dfaddecd14ac1623)]:
- @clerk/backend@1.0.0-alpha-v5.9

## 1.0.0-alpha-v5.10

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/fastify",
"version": "1.0.0-alpha-v5.10",
"version": "1.0.0-alpha-v5.11",
"description": "Clerk SDK for Fastify",
"keywords": [
"auth",
Expand Down Expand Up @@ -40,7 +40,7 @@
"test:cache:clear": "jest --clearCache --useStderr"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.8",
"@clerk/backend": "1.0.0-alpha-v5.9",
"@clerk/shared": "2.0.0-alpha-v5.6",
"@clerk/types": "4.0.0-alpha-v5.10",
"cookies": "0.8.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/gatsby-plugin-clerk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 5.0.0-alpha-v5.11

### Patch Changes

- Updated dependencies [[`e602d6c1f`](https://github.com/clerk/javascript/commit/e602d6c1fde7a7757d292f24dfaddecd14ac1623)]:
- @clerk/backend@1.0.0-alpha-v5.9
- @clerk/clerk-sdk-node@5.0.0-alpha-v5.9

## 5.0.0-alpha-v5.10

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/gatsby-plugin-clerk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-clerk",
"version": "5.0.0-alpha-v5.10",
"version": "5.0.0-alpha-v5.11",
"description": "Clerk SDK for Gatsby",
"keywords": [
"clerk",
Expand Down Expand Up @@ -44,9 +44,9 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.8",
"@clerk/backend": "1.0.0-alpha-v5.9",
"@clerk/clerk-react": "5.0.0-alpha-v5.10",
"@clerk/clerk-sdk-node": "5.0.0-alpha-v5.8",
"@clerk/clerk-sdk-node": "5.0.0-alpha-v5.9",
"cookie": "0.5.0",
"tslib": "2.4.1"
},
Expand Down
19 changes: 19 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## 5.0.0-alpha-v5.11

### Major Changes

- Drop support for NextJS v12: v12 was released on 26 Oct 2021. Support for security updates stopped on 21 Nov 2022. ([#2347](https://github.com/clerk/javascript/pull/2347)) by [@nikosdouvlis](https://github.com/nikosdouvlis)

Drop support for NextJS <13.0.4: Various header-related bugs were introduced with the 12.1.0, 12.2.0, 13.0.1, 13.0.2, 13.0.3 NextJS releases which are now fixed since next@^13.0.4. We will be dropping support for these problematic versions in order to greatly reduce complexity in our codebase.

Drop support for NextJS < 14.0.3 because of the issues described here: https://github.com/clerk/javascript/issues/1436.

Deprecate `authMiddleware` in favor of `clerkMiddleware`. For more information, see https://clerk.com/docs/upgrade-guides/v5-introduction

Move the server-side APIs from `@clerk/nextjs` to the `@clerk/nextjs/server` module: `WebhookEventType`, `WebhookEvent`, `verifyToken`, `redirectToSignIn`, `auth`, `buildClerkProps`, `clerkClient`, `currentUser`, `getAuth`, `redirectToSignUp` and `authMiddleware`. For more information, see https://clerk.com/docs/upgrade-guides/v5-introduction

### Patch Changes

- Updated dependencies [[`e602d6c1f`](https://github.com/clerk/javascript/commit/e602d6c1fde7a7757d292f24dfaddecd14ac1623)]:
- @clerk/[email protected]

## 5.0.0-alpha-v5.10

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/nextjs",
"version": "5.0.0-alpha-v5.10",
"version": "5.0.0-alpha-v5.11",
"description": "Clerk SDK for NextJS",
"keywords": [
"clerk",
Expand Down Expand Up @@ -62,7 +62,7 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.8",
"@clerk/backend": "1.0.0-alpha-v5.9",
"@clerk/clerk-react": "5.0.0-alpha-v5.10",
"@clerk/shared": "2.0.0-alpha-v5.6",
"path-to-regexp": "6.2.1"
Expand Down
7 changes: 7 additions & 0 deletions packages/remix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 4.0.0-alpha-v5.11

### Patch Changes

- Updated dependencies [[`e602d6c1f`](https://github.com/clerk/javascript/commit/e602d6c1fde7a7757d292f24dfaddecd14ac1623)]:
- @clerk/backend@1.0.0-alpha-v5.9

## 4.0.0-alpha-v5.10

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/remix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/remix",
"version": "4.0.0-alpha-v5.10",
"version": "4.0.0-alpha-v5.11",
"description": "Clerk SDK for Remix",
"keywords": [
"clerk",
Expand Down Expand Up @@ -69,7 +69,7 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.8",
"@clerk/backend": "1.0.0-alpha-v5.9",
"@clerk/clerk-react": "5.0.0-alpha-v5.10",
"@clerk/shared": "2.0.0-alpha-v5.6",
"cookie": "0.5.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/sdk-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 5.0.0-alpha-v5.9

### Patch Changes

- Updated dependencies [[`e602d6c1f`](https://github.com/clerk/javascript/commit/e602d6c1fde7a7757d292f24dfaddecd14ac1623)]:
- @clerk/backend@1.0.0-alpha-v5.9

## 5.0.0-alpha-v5.8

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-sdk-node",
"version": "5.0.0-alpha-v5.8",
"version": "5.0.0-alpha-v5.9",
"description": "Clerk server SDK for usage with node",
"keywords": [
"clerk",
Expand Down Expand Up @@ -53,7 +53,7 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.8",
"@clerk/backend": "1.0.0-alpha-v5.9",
"@clerk/shared": "2.0.0-alpha-v5.6",
"camelcase-keys": "6.2.2",
"snakecase-keys": "3.2.1"
Expand Down

0 comments on commit 381fc58

Please sign in to comment.