@stytch/react 5.0.0 → 7.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 +20 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 7.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - a4083c7: Breaking Changes: The intermediate session token (IST) will no longer be accepted as an argument for the discovery list organizations, intermediate sessions exchange, and create organization via discovery endpoints. The IST will be passed in automatically. ISTs are stored as browser cookies or persisted on device when they are generated after calls to discovery authenticate endpoints, such as email magic link discovery authenticate, or primary authenticate endpoints in the case where MFA is required, such as email magic link authenticate or SSO authenticate.
8
+
9
+ New Features: Our B2B product now supports multi-factor authentication (MFA) with one-time passcodes (OTPs) via SMS. MFA policies can be set on the Organization level or on the Member level. See the Stytch docs for more information.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [a4083c7]
14
+ - @stytch/vanilla-js@2.0.0
15
+
16
+ ## 6.0.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [e7302d7]
21
+ - @stytch/vanilla-js@1.1.0
22
+
3
23
  ## 5.0.0
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stytch/react",
3
- "version": "5.0.0",
3
+ "version": "7.0.0",
4
4
  "description": "Stytch's official React Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -32,7 +32,7 @@
32
32
  ],
33
33
  "devDependencies": {
34
34
  "@babel/runtime": "7.18.6",
35
- "@stytch/vanilla-js": "1.0.0",
35
+ "@stytch/vanilla-js": "2.0.0",
36
36
  "@testing-library/react": "14.0.0",
37
37
  "eslint-config-custom": "0.0.1",
38
38
  "react-test-renderer": "18.0.0",
@@ -40,7 +40,7 @@
40
40
  "typescript": "4.7.4"
41
41
  },
42
42
  "peerDependencies": {
43
- "@stytch/vanilla-js": "^1.0.0",
43
+ "@stytch/vanilla-js": "^2.0.0",
44
44
  "react": ">= 17.0.2",
45
45
  "react-dom": ">= 17.0.2"
46
46
  }