Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .changeset/chilled-cougars-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilled-dots-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-apples-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/forty-kings-roll.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/forty-pears-lie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-hairs-dream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-islands-add.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-hotels-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-rings-switch.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/young-pigs-live.md

This file was deleted.

34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 1.3.0

### Minor Changes

- Introduces dynamic keys from `clerkMiddleware`, allowing access by server-side helpers like `auth`. Keys such as `signUpUrl`, `signInUrl`, `publishableKey` and `secretKey` are securely encrypted using AES algorithm. ([#3525](https://github.com/clerk/javascript/pull/3525)) by [@LauraBeatris](https://github.com/LauraBeatris)

- When providing `secretKey`, `CLERK_ENCRYPTION_KEY` is required as the encryption key. If `secretKey` is not provided, `CLERK_SECRET_KEY` is used by default.
- `clerkClient` from `@clerk/nextjs` should now be called as a function, and its singleton form is deprecated. This change allows the Clerk backend client to read keys from the current request, which is necessary to support dynamic keys.

For more information, refer to the documentation: https://clerk.com/docs/references/nextjs/clerk-middleware#dynamic-keys

## 1.2.5

### Patch 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.2.5",
"version": "1.3.0",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"homepage": "https://clerk.com/",
"bugs": {
Expand Down
38 changes: 38 additions & 0 deletions packages/elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# @clerk/elements

## 0.10.0

### Minor Changes

- Add `backup_code` verification strategy ([#3627](https://github.com/clerk/javascript/pull/3627)) by [@tmilewski](https://github.com/tmilewski)

```tsx
<SignIn.Step name='choose-strategy'>
<SignIn.SupportedStrategy name='backup_code'>Use a backup code</SignIn.SupportedStrategy>
<SignIn.Step>
```

```tsx
<SignIn.Step name='verifications'>
<SignIn.Strategy name='backup_code'>
<Clerk.Field name="backup_code">
<Clerk.Label>Code:</Clerk.Label>
<Clerk.Input />
<Clerk.FieldError />
</Clerk.Field>

<Clerk.Action submit>Continue</Clerk.Action>
</SignIn.Strategy>
<SignIn.Step>
```

### Patch Changes

- Addresses the issue where sign-in factors were not properly falling back to empty arrays. ([#3647](https://github.com/clerk/javascript/pull/3647)) by [@LauraBeatris](https://github.com/LauraBeatris)

- Refactors sign-up loading logic to be in-line with sign-in ([#3648](https://github.com/clerk/javascript/pull/3648)) by [@tmilewski](https://github.com/tmilewski)

- Ensure Sign Up resending resets upon being triggered ([#3652](https://github.com/clerk/javascript/pull/3652)) by [@tmilewski](https://github.com/tmilewski)

- Fixes persistent loading states within the `forgot-password` step ([#3648](https://github.com/clerk/javascript/pull/3648)) by [@tmilewski](https://github.com/tmilewski)

- Fix Sign In forgot-password step not rendering ([#3653](https://github.com/clerk/javascript/pull/3653)) by [@tmilewski](https://github.com/tmilewski)

## 0.9.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/elements",
"version": "0.9.2",
"version": "0.10.0",
"description": "Clerk Elements",
"keywords": [
"clerk",
Expand Down
7 changes: 7 additions & 0 deletions packages/express/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.0.15

### Patch Changes

- Updated dependencies [[`f1847b70b`](https://github.com/clerk/javascript/commit/f1847b70b2327bd490faf1f3eed1aa5639d54993)]:
- @clerk/backend@1.3.0

## 0.0.14

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/express",
"version": "0.0.14",
"version": "0.0.15",
"description": "Clerk server SDK for usage with Express",
"keywords": [
"clerk",
Expand Down Expand Up @@ -53,7 +53,7 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "^1.2.5",
"@clerk/backend": "^1.3.0",
"@clerk/shared": "^2.3.2",
"@clerk/types": "4.7.0",
"tslib": "2.4.1"
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.17

### Patch Changes

- Updated dependencies [[`f1847b70b`](https://github.com/clerk/javascript/commit/f1847b70b2327bd490faf1f3eed1aa5639d54993)]:
- @clerk/backend@1.3.0

## 1.0.16

### Patch 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.16",
"version": "1.0.17",
"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.2.5",
"@clerk/backend": "1.3.0",
"@clerk/shared": "2.3.2",
"@clerk/types": "4.7.0",
"cookies": "0.8.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-clerk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "1.2.5",
"@clerk/backend": "1.3.0",
"@clerk/clerk-react": "5.2.6",
"@clerk/clerk-sdk-node": "5.0.13",
"@clerk/clerk-sdk-node": "5.0.14",
"@clerk/types": "4.7.0",
"cookie": "0.5.0",
"tslib": "2.4.1"
Expand Down
16 changes: 16 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## 5.2.0

### Minor Changes

- Introduces dynamic keys from `clerkMiddleware`, allowing access by server-side helpers like `auth`. Keys such as `signUpUrl`, `signInUrl`, `publishableKey` and `secretKey` are securely encrypted using AES algorithm. ([#3525](https://github.com/clerk/javascript/pull/3525)) by [@LauraBeatris](https://github.com/LauraBeatris)

- When providing `secretKey`, `CLERK_ENCRYPTION_KEY` is required as the encryption key. If `secretKey` is not provided, `CLERK_SECRET_KEY` is used by default.
- `clerkClient` from `@clerk/nextjs` should now be called as a function, and its singleton form is deprecated. This change allows the Clerk backend client to read keys from the current request, which is necessary to support dynamic keys.

For more information, refer to the documentation: https://clerk.com/docs/references/nextjs/clerk-middleware#dynamic-keys

### Patch Changes

- Updated dependencies [[`f1847b70b`](https://github.com/clerk/javascript/commit/f1847b70b2327bd490faf1f3eed1aa5639d54993)]:
- @clerk/backend@1.3.0

## 5.1.7

### Patch 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.1.7",
"version": "5.2.0",
"description": "Clerk SDK for NextJS",
"keywords": [
"clerk",
Expand Down Expand Up @@ -67,7 +67,7 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "1.2.5",
"@clerk/backend": "1.3.0",
"@clerk/clerk-react": "5.2.6",
"@clerk/shared": "2.3.2",
"@clerk/types": "4.7.0",
Expand Down
Loading