convex 1.18.1-alpha.0 → 1.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -8
- package/dist/browser.bundle.js +1 -1
- package/dist/browser.bundle.js.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/nextjs/index.js +0 -5
- package/dist/cjs/nextjs/index.js.map +2 -2
- package/dist/cjs/react/ConvexAuthState.js +19 -19
- package/dist/cjs/react/ConvexAuthState.js.map +2 -2
- package/dist/cjs-types/index.d.ts +1 -1
- package/dist/cjs-types/index.d.ts.map +1 -1
- package/dist/cjs-types/react/ConvexAuthState.d.ts.map +1 -1
- package/dist/cli.bundle.cjs +1 -1
- package/dist/cli.bundle.cjs.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/nextjs/index.js +0 -5
- package/dist/esm/nextjs/index.js.map +2 -2
- package/dist/esm/react/ConvexAuthState.js +19 -19
- package/dist/esm/react/ConvexAuthState.js.map +2 -2
- package/dist/esm-types/index.d.ts +1 -1
- package/dist/esm-types/index.d.ts.map +1 -1
- package/dist/esm-types/react/ConvexAuthState.d.ts.map +1 -1
- package/dist/react.bundle.js +20 -20
- package/dist/react.bundle.js.map +2 -2
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/nextjs/index.ts +0 -5
- package/src/nextjs/nextjs.test.tsx +0 -11
- package/src/react/ConvexAuthState.tsx +31 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 1.18.0
|
|
4
4
|
|
|
5
5
|
- Warn on direct Convex function call. This adds a console.warn whenever a
|
|
6
6
|
Convex Function (mutation, query, action, internalMutation, etc.) is called
|
|
@@ -84,13 +84,6 @@
|
|
|
84
84
|
by returning a new `getToken` function from the `useAuth` hook passed into
|
|
85
85
|
`ConvexProviderWithAuth`.
|
|
86
86
|
|
|
87
|
-
## 1.17.3
|
|
88
|
-
|
|
89
|
-
- Fetch a new JWT from Clerk when using CLerk components to change the active
|
|
90
|
-
orgId or orgRole in React on the client. Any auth provider can implement this
|
|
91
|
-
by returning a new `getToken` function from the `useAuth` hook passed into
|
|
92
|
-
`ConvexProviderWithAuth`.
|
|
93
|
-
|
|
94
87
|
## 1.17.2
|
|
95
88
|
|
|
96
89
|
- Revert local Prettier settings change described in 1.17.1 which removed angle
|