diff --git a/.changeset/afraid-planets-fly.md b/.changeset/afraid-planets-fly.md deleted file mode 100644 index a845151cc84..00000000000 --- a/.changeset/afraid-planets-fly.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/brown-garlics-boil.md b/.changeset/brown-garlics-boil.md deleted file mode 100644 index 1eab1f4b3c0..00000000000 --- a/.changeset/brown-garlics-boil.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@clerk/tanstack-react-start': patch -'@clerk/localizations': patch -'@clerk/react-router': patch -'@clerk/clerk-js': patch -'@clerk/testing': patch -'@clerk/nextjs': patch -'@clerk/clerk-react': patch -'@clerk/remix': patch -'@clerk/types': patch ---- - -Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps diff --git a/.changeset/dull-cups-accept.md b/.changeset/dull-cups-accept.md deleted file mode 100644 index e9c91de2f7e..00000000000 --- a/.changeset/dull-cups-accept.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@clerk/clerk-js': patch -'@clerk/clerk-react': patch -'@clerk/types': patch ---- - -[Experimental] Signals diff --git a/.changeset/early-bats-shout.md b/.changeset/early-bats-shout.md deleted file mode 100644 index 0b5f0b361eb..00000000000 --- a/.changeset/early-bats-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@clerk/backend': minor ---- - -Add billing API for fetching available plans. diff --git a/.changeset/hot-tables-worry.md b/.changeset/hot-tables-worry.md deleted file mode 100644 index 90e7fec86b6..00000000000 --- a/.changeset/hot-tables-worry.md +++ /dev/null @@ -1,83 +0,0 @@ ---- -"@clerk/backend": minor ---- - -Adds machine-to-machine endpoints to the Backend SDK: - -**Note:** Renamed from "machine_tokens" to "m2m_tokens" for clarity and consistency with canonical terminology. This avoids confusion with other machine-related concepts like machine secrets. - -### Create M2M Tokens - -A machine secret is required when creating M2M tokens. - -```ts -const clerkClient = createClerkClient({ - machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY -}) - -clerkClient.m2mTokens.create({ - // or pass as an option here - // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY - secondsUntilExpiration: 3600, -}) -``` - -### Revoke M2M Tokens - -You can revoke tokens using either a machine secret or instance secret: - -```ts -// Using machine secret -const clerkClient = createClerkClient({ machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY }) -clerkClient.m2mTokens.revoke({ - // or pass as an option here - // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY - m2mTokenId: 'mt_xxxxx', - revocationReason: 'Revoked by user', -}) - -// Using instance secret (default) -const clerkClient = createClerkClient({ secretKey: 'sk_xxxx' }) -clerkClient.m2mTokens.revoke({ - m2mTokenId: 'mt_xxxxx', - revocationReason: 'Revoked by user', -}) -``` - -### Verify M2M Tokens - -You can verify tokens using either a machine secret or instance secret: - -```ts -// Using machine secret -const clerkClient = createClerkClient({ machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY }) -clerkClient.m2mTokens.verifySecret({ - // or pass as an option here - // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY - secret: 'mt_secret_xxxxx', -}) - -// Using instance secret (default) -const clerkClient = createClerkClient({ secretKey: 'sk_xxxx' }) -clerkClient.m2mTokens.verifySecret({ - secret: 'mt_secret_xxxxx', -}) -``` - -To verify machine-to-machine tokens using when using `authenticateRequest()` with a machine secret, use the `machineSecret` option: - -```ts -const clerkClient = createClerkClient({ - machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY -}) - -const authReq = await clerkClient.authenticateRequest(c.req.raw, { - // or pass as an option here - // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY - acceptsToken: 'm2m_token', // previously machine_token -}) - -if (authReq.isAuthenticated) { - // ... do something -} -``` diff --git a/.changeset/pink-countries-hunt.md b/.changeset/pink-countries-hunt.md deleted file mode 100644 index 2f1e0154a3d..00000000000 --- a/.changeset/pink-countries-hunt.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"@clerk/astro": patch -"@clerk/express": patch -"@clerk/fastify": patch -"@clerk/nextjs": patch -"@clerk/nuxt": patch -"@clerk/react-router": patch -"@clerk/remix": patch -"@clerk/tanstack-react-start": patch ---- - -Add ability to define a machine secret key to Clerk BAPI client function - -```ts -const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) - -clerkClient.m2mTokens.create({...}) -``` diff --git a/.changeset/shaky-papers-push.md b/.changeset/shaky-papers-push.md deleted file mode 100644 index 53ce7c03c0b..00000000000 --- a/.changeset/shaky-papers-push.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@clerk/clerk-js': patch -'@clerk/types': patch ---- - -Rename task key from `select-organization` to `choose-organization` diff --git a/.changeset/shaky-sloths-unite.md b/.changeset/shaky-sloths-unite.md deleted file mode 100644 index bd67ff657cf..00000000000 --- a/.changeset/shaky-sloths-unite.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@clerk/clerk-js': minor -'@clerk/types': minor -'@clerk/nextjs': minor -'@clerk/clerk-react': minor ---- - -[Billing Beta] Update `PlanDetailsProps` to reflect that either `planId` or `plan` is allowed. diff --git a/.changeset/strong-chicken-lie.md b/.changeset/strong-chicken-lie.md deleted file mode 100644 index 1586dfc87ab..00000000000 --- a/.changeset/strong-chicken-lie.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@clerk/backend": patch -"@clerk/nextjs": patch ---- - -feat(nextjs): Forward user-agent, arch, platform, and npm config with POST requests to /accountless_applications diff --git a/.changeset/twenty-poems-push.md b/.changeset/twenty-poems-push.md deleted file mode 100644 index d6cd2916061..00000000000 --- a/.changeset/twenty-poems-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@clerk/shared': patch ---- - -Fix a potential memory leak in `TelemetryCollector` diff --git a/packages/agent-toolkit/CHANGELOG.md b/packages/agent-toolkit/CHANGELOG.md index fc14f2e4f47..649be7675dc 100644 --- a/packages/agent-toolkit/CHANGELOG.md +++ b/packages/agent-toolkit/CHANGELOG.md @@ -1,5 +1,14 @@ # @clerk/agent-toolkit +## 0.1.18 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 0.1.17 ### Patch Changes diff --git a/packages/agent-toolkit/package.json b/packages/agent-toolkit/package.json index e05f7808fd0..d2db1a6fb05 100644 --- a/packages/agent-toolkit/package.json +++ b/packages/agent-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/agent-toolkit", - "version": "0.1.17", + "version": "0.1.18", "description": "Clerk Toolkit for AI Agents", "homepage": "https://clerk.com/", "bugs": { diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 06463929fd8..1bdf71f8abc 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,22 @@ # @clerk/astro +## 2.10.15 + +### Patch Changes + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 2.10.14 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index aab7742dca6..a07ffa825e9 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/astro", - "version": "2.10.14", + "version": "2.10.15", "description": "Clerk SDK for Astro", "keywords": [ "auth", diff --git a/packages/backend/CHANGELOG.md b/packages/backend/CHANGELOG.md index 0e10a197d17..63cc027d2e4 100644 --- a/packages/backend/CHANGELOG.md +++ b/packages/backend/CHANGELOG.md @@ -1,5 +1,99 @@ # Change Log +## 2.7.0 + +### Minor Changes + +- Add billing API for fetching available plans. ([#6449](https://github.com/clerk/javascript/pull/6449)) by [@panteliselef](https://github.com/panteliselef) + +- Adds machine-to-machine endpoints to the Backend SDK: ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + **Note:** Renamed from "machine_tokens" to "m2m_tokens" for clarity and consistency with canonical terminology. This avoids confusion with other machine-related concepts like machine secrets. + + ### Create M2M Tokens + + A machine secret is required when creating M2M tokens. + + ```ts + const clerkClient = createClerkClient({ + machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY, + }); + + clerkClient.m2mTokens.create({ + // or pass as an option here + // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY + secondsUntilExpiration: 3600, + }); + ``` + + ### Revoke M2M Tokens + + You can revoke tokens using either a machine secret or instance secret: + + ```ts + // Using machine secret + const clerkClient = createClerkClient({ machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY }); + clerkClient.m2mTokens.revoke({ + // or pass as an option here + // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY + m2mTokenId: 'mt_xxxxx', + revocationReason: 'Revoked by user', + }); + + // Using instance secret (default) + const clerkClient = createClerkClient({ secretKey: 'sk_xxxx' }); + clerkClient.m2mTokens.revoke({ + m2mTokenId: 'mt_xxxxx', + revocationReason: 'Revoked by user', + }); + ``` + + ### Verify M2M Tokens + + You can verify tokens using either a machine secret or instance secret: + + ```ts + // Using machine secret + const clerkClient = createClerkClient({ machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY }); + clerkClient.m2mTokens.verifySecret({ + // or pass as an option here + // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY + secret: 'mt_secret_xxxxx', + }); + + // Using instance secret (default) + const clerkClient = createClerkClient({ secretKey: 'sk_xxxx' }); + clerkClient.m2mTokens.verifySecret({ + secret: 'mt_secret_xxxxx', + }); + ``` + + To verify machine-to-machine tokens using when using `authenticateRequest()` with a machine secret, use the `machineSecret` option: + + ```ts + const clerkClient = createClerkClient({ + machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY, + }); + + const authReq = await clerkClient.authenticateRequest(c.req.raw, { + // or pass as an option here + // machineSecretKey: process.env.CLERK_MACHINE_SECRET_KEY + acceptsToken: 'm2m_token', // previously machine_token + }); + + if (authReq.isAuthenticated) { + // ... do something + } + ``` + +### Patch Changes + +- feat(nextjs): Forward user-agent, arch, platform, and npm config with POST requests to /accountless_applications ([#6483](https://github.com/clerk/javascript/pull/6483)) by [@heatlikeheatwave](https://github.com/heatlikeheatwave) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 2.6.3 ### Patch Changes diff --git a/packages/backend/package.json b/packages/backend/package.json index acd2db63b8d..fd7ca579361 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/backend", - "version": "2.6.3", + "version": "2.7.0", "description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities", "homepage": "https://clerk.com/", "bugs": { diff --git a/packages/chrome-extension/CHANGELOG.md b/packages/chrome-extension/CHANGELOG.md index 8df470bf639..e6c22e1c13f 100644 --- a/packages/chrome-extension/CHANGELOG.md +++ b/packages/chrome-extension/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 2.5.17 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-js@5.81.0 + - @clerk/clerk-react@5.40.0 + - @clerk/shared@3.18.1 + ## 2.5.16 ### Patch Changes diff --git a/packages/chrome-extension/package.json b/packages/chrome-extension/package.json index cf0bbbac111..33dc824a89e 100644 --- a/packages/chrome-extension/package.json +++ b/packages/chrome-extension/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/chrome-extension", - "version": "2.5.16", + "version": "2.5.17", "description": "Clerk SDK for Chrome extensions", "keywords": [ "auth", diff --git a/packages/clerk-js/CHANGELOG.md b/packages/clerk-js/CHANGELOG.md index 3d1f1772890..4d6be950796 100644 --- a/packages/clerk-js/CHANGELOG.md +++ b/packages/clerk-js/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## 5.81.0 + +### Minor Changes + +- [Billing Beta] Update `PlanDetailsProps` to reflect that either `planId` or `plan` is allowed. ([#6472](https://github.com/clerk/javascript/pull/6472)) by [@panteliselef](https://github.com/panteliselef) + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- [Experimental] Signals ([#6450](https://github.com/clerk/javascript/pull/6450)) by [@dstaley](https://github.com/dstaley) + +- Rename task key from `select-organization` to `choose-organization` ([#6482](https://github.com/clerk/javascript/pull/6482)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/localizations@3.20.8 + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 5.80.0 ### Minor Changes diff --git a/packages/clerk-js/package.json b/packages/clerk-js/package.json index b0e2b93c080..98f553978c5 100644 --- a/packages/clerk-js/package.json +++ b/packages/clerk-js/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/clerk-js", - "version": "5.80.0", + "version": "5.81.0", "description": "Clerk JS library", "keywords": [ "clerk", diff --git a/packages/elements/CHANGELOG.md b/packages/elements/CHANGELOG.md index 4f55a05ddd6..304e80d328a 100644 --- a/packages/elements/CHANGELOG.md +++ b/packages/elements/CHANGELOG.md @@ -1,5 +1,14 @@ # @clerk/elements +## 0.23.50 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-react@5.40.0 + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 0.23.49 ### Patch Changes diff --git a/packages/elements/package.json b/packages/elements/package.json index 847743e9aae..4410060b456 100644 --- a/packages/elements/package.json +++ b/packages/elements/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/elements", - "version": "0.23.49", + "version": "0.23.50", "description": "Clerk Elements", "keywords": [ "clerk", diff --git a/packages/expo-passkeys/CHANGELOG.md b/packages/expo-passkeys/CHANGELOG.md index df5250b14f6..8af2716e344 100644 --- a/packages/expo-passkeys/CHANGELOG.md +++ b/packages/expo-passkeys/CHANGELOG.md @@ -1,5 +1,13 @@ # @clerk/expo-passkeys +## 0.3.27 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 0.3.26 ### Patch Changes diff --git a/packages/expo-passkeys/package.json b/packages/expo-passkeys/package.json index 2608a42fb1b..d1eac3923a0 100644 --- a/packages/expo-passkeys/package.json +++ b/packages/expo-passkeys/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/expo-passkeys", - "version": "0.3.26", + "version": "0.3.27", "description": "Passkeys library to be used with Clerk for expo", "keywords": [ "react-native", diff --git a/packages/expo/CHANGELOG.md b/packages/expo/CHANGELOG.md index e84f5793f5f..0c128cbc96b 100644 --- a/packages/expo/CHANGELOG.md +++ b/packages/expo/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 2.14.16 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-js@5.81.0 + - @clerk/clerk-react@5.40.0 + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 2.14.15 ### Patch Changes diff --git a/packages/expo/package.json b/packages/expo/package.json index bd2b84336a0..aac8fa9d8f0 100644 --- a/packages/expo/package.json +++ b/packages/expo/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/clerk-expo", - "version": "2.14.15", + "version": "2.14.16", "description": "Clerk React Native/Expo library", "keywords": [ "react", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 6d1dc82c941..fe68e7551b0 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 1.7.17 + +### Patch Changes + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 1.7.16 ### Patch Changes diff --git a/packages/express/package.json b/packages/express/package.json index cb06f3e2788..118ac7afad7 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/express", - "version": "1.7.16", + "version": "1.7.17", "description": "Clerk server SDK for usage with Express", "keywords": [ "clerk", diff --git a/packages/fastify/CHANGELOG.md b/packages/fastify/CHANGELOG.md index 52eb331c232..5e0c028f193 100644 --- a/packages/fastify/CHANGELOG.md +++ b/packages/fastify/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 2.4.17 + +### Patch Changes + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 2.4.16 ### Patch Changes diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 61ccbbaa727..27439a3b21f 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/fastify", - "version": "2.4.16", + "version": "2.4.17", "description": "Clerk SDK for Fastify", "keywords": [ "auth", diff --git a/packages/localizations/CHANGELOG.md b/packages/localizations/CHANGELOG.md index ed17aec6144..485266c294d 100644 --- a/packages/localizations/CHANGELOG.md +++ b/packages/localizations/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 3.20.8 + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7)]: + - @clerk/types@4.74.0 + ## 3.20.7 ### Patch Changes diff --git a/packages/localizations/package.json b/packages/localizations/package.json index f9ebaeea868..dc06a616e5f 100644 --- a/packages/localizations/package.json +++ b/packages/localizations/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/localizations", - "version": "3.20.7", + "version": "3.20.8", "description": "Localizations for the Clerk components", "keywords": [ "react", diff --git a/packages/nextjs/CHANGELOG.md b/packages/nextjs/CHANGELOG.md index 260a78dd0c1..4e0147405b9 100644 --- a/packages/nextjs/CHANGELOG.md +++ b/packages/nextjs/CHANGELOG.md @@ -1,5 +1,31 @@ # Change Log +## 6.30.0 + +### Minor Changes + +- [Billing Beta] Update `PlanDetailsProps` to reflect that either `planId` or `plan` is allowed. ([#6472](https://github.com/clerk/javascript/pull/6472)) by [@panteliselef](https://github.com/panteliselef) + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- feat(nextjs): Forward user-agent, arch, platform, and npm config with POST requests to /accountless_applications ([#6483](https://github.com/clerk/javascript/pull/6483)) by [@heatlikeheatwave](https://github.com/heatlikeheatwave) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-react@5.40.0 + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 6.29.0 ### Minor Changes diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json index 99aa6c23f8b..a6a9eb15741 100644 --- a/packages/nextjs/package.json +++ b/packages/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/nextjs", - "version": "6.29.0", + "version": "6.30.0", "description": "Clerk SDK for NextJS", "keywords": [ "clerk", diff --git a/packages/nuxt/CHANGELOG.md b/packages/nuxt/CHANGELOG.md index 2754e85d144..cbc4ca9bfbd 100644 --- a/packages/nuxt/CHANGELOG.md +++ b/packages/nuxt/CHANGELOG.md @@ -1,5 +1,23 @@ # @clerk/nuxt +## 1.8.3 + +### Patch Changes + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + - @clerk/vue@1.9.3 + ## 1.8.2 ### Patch Changes diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index f91a6e943cd..44de07a1ec6 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/nuxt", - "version": "1.8.2", + "version": "1.8.3", "description": "Clerk SDK for Nuxt", "keywords": [ "clerk", diff --git a/packages/react-router/CHANGELOG.md b/packages/react-router/CHANGELOG.md index f69b6e3aa76..d76528796e2 100644 --- a/packages/react-router/CHANGELOG.md +++ b/packages/react-router/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 1.8.11 + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-react@5.40.0 + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 1.8.10 ### Patch Changes diff --git a/packages/react-router/package.json b/packages/react-router/package.json index a287f921c92..796ce944a62 100644 --- a/packages/react-router/package.json +++ b/packages/react-router/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/react-router", - "version": "1.8.10", + "version": "1.8.11", "description": "Clerk SDK for React Router", "keywords": [ "clerk", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index a14aab7a30c..8d176213eb6 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 5.40.0 + +### Minor Changes + +- [Billing Beta] Update `PlanDetailsProps` to reflect that either `planId` or `plan` is allowed. ([#6472](https://github.com/clerk/javascript/pull/6472)) by [@panteliselef](https://github.com/panteliselef) + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- [Experimental] Signals ([#6450](https://github.com/clerk/javascript/pull/6450)) by [@dstaley](https://github.com/dstaley) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 5.39.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index df0eaedef82..e1122b74ddd 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/clerk-react", - "version": "5.39.0", + "version": "5.40.0", "description": "Clerk React library", "keywords": [ "clerk", diff --git a/packages/remix/CHANGELOG.md b/packages/remix/CHANGELOG.md index 5933a132f92..11f0cc55675 100644 --- a/packages/remix/CHANGELOG.md +++ b/packages/remix/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 4.10.11 + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-react@5.40.0 + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 4.10.10 ### Patch Changes diff --git a/packages/remix/package.json b/packages/remix/package.json index 73de6315a3b..5c7ea681348 100644 --- a/packages/remix/package.json +++ b/packages/remix/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/remix", - "version": "4.10.10", + "version": "4.10.11", "description": "Clerk SDK for Remix", "keywords": [ "clerk", diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md index 093903de4c2..59cd2c79436 100644 --- a/packages/shared/CHANGELOG.md +++ b/packages/shared/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 3.18.1 + +### Patch Changes + +- Fix a potential memory leak in `TelemetryCollector` ([#6485](https://github.com/clerk/javascript/pull/6485)) by [@brkalow](https://github.com/brkalow) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7)]: + - @clerk/types@4.74.0 + ## 3.18.0 ### Minor Changes diff --git a/packages/shared/package.json b/packages/shared/package.json index da47114cf3f..2ee3b721bb1 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/shared", - "version": "3.18.0", + "version": "3.18.1", "description": "Internal package utils used by the Clerk SDKs", "repository": { "type": "git", diff --git a/packages/tanstack-react-start/CHANGELOG.md b/packages/tanstack-react-start/CHANGELOG.md index cf43a24401f..62c103b0d61 100644 --- a/packages/tanstack-react-start/CHANGELOG.md +++ b/packages/tanstack-react-start/CHANGELOG.md @@ -1,5 +1,25 @@ # @clerk/tanstack-react-start +## 0.21.7 + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Add ability to define a machine secret key to Clerk BAPI client function ([#6479](https://github.com/clerk/javascript/pull/6479)) by [@wobsoriano](https://github.com/wobsoriano) + + ```ts + const clerkClient = createClerkClient({ machineSecretKey: 'ak_xxxxx' }) + + clerkClient.m2mTokens.create({...}) + ``` + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/clerk-react@5.40.0 + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 0.21.6 ### Patch Changes diff --git a/packages/tanstack-react-start/package.json b/packages/tanstack-react-start/package.json index 86a3dee18da..4ea5f4decfa 100644 --- a/packages/tanstack-react-start/package.json +++ b/packages/tanstack-react-start/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/tanstack-react-start", - "version": "0.21.6", + "version": "0.21.7", "description": "Clerk SDK for TanStack React Start", "keywords": [ "clerk", diff --git a/packages/testing/CHANGELOG.md b/packages/testing/CHANGELOG.md index 922f733e503..04a61143662 100644 --- a/packages/testing/CHANGELOG.md +++ b/packages/testing/CHANGELOG.md @@ -1,5 +1,16 @@ # @clerk/testing +## 1.10.11 + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`6ff416f`](https://github.com/clerk/javascript/commit/6ff416f4b35fc01ba7dca61abe4698d7d1460dee), [`e82f177`](https://github.com/clerk/javascript/commit/e82f1775de889eb9cac444cb26b69fb5de1e2d05), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`0d27281`](https://github.com/clerk/javascript/commit/0d272815b216f7a7538b5633cb397d6cd2695b73), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/backend@2.7.0 + - @clerk/shared@3.18.1 + ## 1.10.10 ### Patch Changes diff --git a/packages/testing/package.json b/packages/testing/package.json index b41474c6dde..08e91d357ec 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/testing", - "version": "1.10.10", + "version": "1.10.11", "description": "Utilities to help you create E2E test suites for apps using Clerk", "keywords": [ "auth", diff --git a/packages/themes/CHANGELOG.md b/packages/themes/CHANGELOG.md index 73a098f092e..8ff88107aba 100644 --- a/packages/themes/CHANGELOG.md +++ b/packages/themes/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.4.6 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7)]: + - @clerk/types@4.74.0 + ## 2.4.5 ### Patch Changes diff --git a/packages/themes/package.json b/packages/themes/package.json index 301a64d3a2f..f8cce07b0fb 100644 --- a/packages/themes/package.json +++ b/packages/themes/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/themes", - "version": "2.4.5", + "version": "2.4.6", "description": "Themes for the Clerk auth components", "keywords": [ "react", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 018bc8f6628..b32a71718dd 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 4.74.0 + +### Minor Changes + +- [Billing Beta] Update `PlanDetailsProps` to reflect that either `planId` or `plan` is allowed. ([#6472](https://github.com/clerk/javascript/pull/6472)) by [@panteliselef](https://github.com/panteliselef) + +### Patch Changes + +- Introduce `TaskChooseOrganization` component which replaces `TaskSelectOrganization` with a new UI that make the experience similar to the previous `SignIn` and `SignUp` steps ([#6446](https://github.com/clerk/javascript/pull/6446)) by [@LauraBeatris](https://github.com/LauraBeatris) + +- [Experimental] Signals ([#6450](https://github.com/clerk/javascript/pull/6450)) by [@dstaley](https://github.com/dstaley) + +- Rename task key from `select-organization` to `choose-organization` ([#6482](https://github.com/clerk/javascript/pull/6482)) by [@LauraBeatris](https://github.com/LauraBeatris) + ## 4.73.0 ### Minor Changes diff --git a/packages/types/package.json b/packages/types/package.json index e9151555846..773e5cc34ac 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/types", - "version": "4.73.0", + "version": "4.74.0", "description": "Typings for Clerk libraries.", "keywords": [ "clerk", diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index cb61244421b..fa3c1440233 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,13 @@ # @clerk/vue +## 1.9.3 + +### Patch Changes + +- Updated dependencies [[`1ad16da`](https://github.com/clerk/javascript/commit/1ad16daa49795a861ae277001831230580b6b9f4), [`4edef81`](https://github.com/clerk/javascript/commit/4edef81dd423a0471e3f579dd6b36094aa8546aa), [`696f8e1`](https://github.com/clerk/javascript/commit/696f8e11a3e5391e6b5a97d98e929b8973575b9a), [`f318d22`](https://github.com/clerk/javascript/commit/f318d22cf83caaef272bcf532561a03ca72575e7), [`1cc66ab`](https://github.com/clerk/javascript/commit/1cc66aba1c0adac24323876e4cc3d96be888b07b)]: + - @clerk/types@4.74.0 + - @clerk/shared@3.18.1 + ## 1.9.2 ### Patch Changes diff --git a/packages/vue/package.json b/packages/vue/package.json index a31e327933a..d1f8fa9b80a 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@clerk/vue", - "version": "1.9.2", + "version": "1.9.3", "description": "Clerk SDK for Vue", "keywords": [ "clerk",