From 8c77db571788dbea4a213cea04bcce5e08638094 Mon Sep 17 00:00:00 2001 From: Tom Ballinger Date: Tue, 26 Nov 2024 17:23:58 -0800 Subject: [PATCH] npm release version 1.17.3 (#31811) GitOrigin-RevId: 8b52b334211eb872145254c1d936735cc437cf01 --- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 932275e..5e06fa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 1.17.3 + +- Fetch a new JWT from Clerk when using CLerk components to change the active + orgId or orgRole in React on the client. Any auth provider can implement this + by returning a new `getToken` function from the `useAuth` hook passed into + `ConvexProviderWithAuth`. + +## 1.17.2 + +- Revert local Prettier settings change described in 1.17.1 which removed angle + brackets in some cases where local prettier config used plugins. + +- `npx convex import --replace-all` flag which behaves like the Restore + functionality in the dashboard. + ## 1.17.1 - Use local Prettier settings to format code in `convex/_generated` if found. diff --git a/package.json b/package.json index 25b4988..5bb5279 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "convex", "description": "Client for the Convex Cloud", - "version": "1.17.2", + "version": "1.17.3", "author": "Convex, Inc. ", "homepage": "https://convex.dev", "repository": { diff --git a/src/index.ts b/src/index.ts index b618e13..b263752 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1 @@ -export const version = "1.17.2"; +export const version = "1.17.3";