jazz-react-auth-clerk 0.8.34 → 0.8.36
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 +24 -0
- package/README.md +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# jazz-browser-media-images
|
|
2
2
|
|
|
3
|
+
## 0.8.36
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [441fe27]
|
|
8
|
+
- cojson@0.8.36
|
|
9
|
+
- jazz-tools@0.8.36
|
|
10
|
+
- jazz-browser-auth-clerk@0.8.36
|
|
11
|
+
- jazz-react@0.8.36
|
|
12
|
+
|
|
13
|
+
## 0.8.35
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [3f15a23]
|
|
18
|
+
- Updated dependencies [9212ab8]
|
|
19
|
+
- Updated dependencies [46f2ab8]
|
|
20
|
+
- Updated dependencies [8b87117]
|
|
21
|
+
- Updated dependencies [a6b6ccf]
|
|
22
|
+
- cojson@0.8.35
|
|
23
|
+
- jazz-react@0.8.35
|
|
24
|
+
- jazz-tools@0.8.35
|
|
25
|
+
- jazz-browser-auth-clerk@0.8.35
|
|
26
|
+
|
|
3
27
|
## 0.8.34
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This package provides a [Clerk-based](https://clerk.com/) authentication strateg
|
|
|
7
7
|
`useJazzClerkAuth` is a hook that returns a `JazzAuth` object and a `JazzAuthState` object. Provide a Clerk instance to `useJazzClerkAuth`, and it will return the appropriate `JazzAuth` object. Once authenticated, authentication will persist across page reloads, even if the device is offline.
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
See the full [example app](https://github.com/
|
|
10
|
+
See the full [example app](https://github.com/garden-co/jazz/tree/main/examples/clerk) for a complete example.
|
|
11
11
|
|
|
12
12
|
```tsx
|
|
13
13
|
import { ClerkProvider, SignInButton, useClerk } from "@clerk/clerk-react";
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jazz-react-auth-clerk",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.36",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "src/index.tsx",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"cojson": "0.8.
|
|
10
|
-
"jazz-browser-auth-clerk": "0.8.
|
|
11
|
-
"jazz-react": "0.8.
|
|
12
|
-
"jazz-tools": "0.8.
|
|
9
|
+
"cojson": "0.8.36",
|
|
10
|
+
"jazz-browser-auth-clerk": "0.8.36",
|
|
11
|
+
"jazz-react": "0.8.36",
|
|
12
|
+
"jazz-tools": "0.8.36"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"react": "^18.2.0"
|