@stytch/react 0.10.2 → 1.0.0
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 +19 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @stytch/react
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c0e42bc: Add B2B Discovery headless client and session exchange method
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c0e42bc]
|
|
12
|
+
- @stytch/vanilla-js@0.11.0
|
|
13
|
+
|
|
14
|
+
## 0.10.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 1652706: Fix session/user persisting after logging out
|
|
19
|
+
- Updated dependencies [1652706]
|
|
20
|
+
- @stytch/vanilla-js@0.10.7
|
|
21
|
+
|
|
3
22
|
## 0.10.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stytch/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Stytch's official React Library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@babel/runtime": "7.18.6",
|
|
34
|
-
"@stytch/vanilla-js": "0.
|
|
34
|
+
"@stytch/vanilla-js": "0.11.0",
|
|
35
35
|
"@testing-library/react": "12.1.3",
|
|
36
|
-
"eslint-config-custom": "0.0.
|
|
36
|
+
"eslint-config-custom": "0.0.1",
|
|
37
37
|
"rollup": "2.56.3",
|
|
38
38
|
"typescript": "4.7.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@stytch/vanilla-js": "^0.
|
|
41
|
+
"@stytch/vanilla-js": "^0.11.0",
|
|
42
42
|
"react": ">= 17.0.2",
|
|
43
43
|
"react-dom": ">= 17.0.2"
|
|
44
44
|
}
|