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";