@stytch/react 7.0.1 → 8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 8.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [67d42f0]
8
+ - @stytch/vanilla-js@2.1.0
9
+
10
+ ## 7.0.2
11
+
12
+ ### Patch Changes
13
+
14
+ - 1b1ea1b: updateStateAndTokens call in resetBySession and resetExistingPassword
15
+ - Updated dependencies [1b1ea1b]
16
+ - Updated dependencies [47cd46c]
17
+ - @stytch/vanilla-js@2.0.3
18
+
3
19
  ## 7.0.1
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stytch/react",
3
- "version": "7.0.1",
3
+ "version": "8.0.0",
4
4
  "description": "Stytch's official React Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -14,6 +14,7 @@
14
14
  "clean": "rm -rf ./dist",
15
15
  "compile": "rollup -c",
16
16
  "dev": "rollup -c -w",
17
+ "dev:esbuild": "yarn dev",
17
18
  "test": "jest"
18
19
  },
19
20
  "license": "MIT",
@@ -32,7 +33,7 @@
32
33
  ],
33
34
  "devDependencies": {
34
35
  "@babel/runtime": "7.18.6",
35
- "@stytch/vanilla-js": "2.0.1",
36
+ "@stytch/vanilla-js": "2.1.0",
36
37
  "@testing-library/react": "14.0.0",
37
38
  "eslint-config-custom": "0.0.1",
38
39
  "react-test-renderer": "18.0.0",
@@ -40,7 +41,7 @@
40
41
  "typescript": "4.7.4"
41
42
  },
42
43
  "peerDependencies": {
43
- "@stytch/vanilla-js": "^2.0.1",
44
+ "@stytch/vanilla-js": "^2.1.0",
44
45
  "react": ">= 17.0.2",
45
46
  "react-dom": ">= 17.0.2"
46
47
  }