@stytch/react 1.0.1 → 2.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 +17 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 2.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 6a27584: Make organization name and slug optional for discovery organization create
8
+ - Updated dependencies [dde1f2a]
9
+ - Updated dependencies [6a27584]
10
+ - @stytch/vanilla-js@0.12.0
11
+
12
+ ## 1.0.2
13
+
14
+ ### Patch Changes
15
+
16
+ - 79ca7ba: Add locale argument to B2B email magic link methods
17
+ - Updated dependencies [79ca7ba]
18
+ - @stytch/vanilla-js@0.11.3
19
+
3
20
  ## 1.0.1
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stytch/react",
3
- "version": "1.0.1",
3
+ "version": "2.0.0",
4
4
  "description": "Stytch's official React Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -32,14 +32,15 @@
32
32
  ],
33
33
  "devDependencies": {
34
34
  "@babel/runtime": "7.18.6",
35
- "@stytch/vanilla-js": "0.11.2",
36
- "@testing-library/react": "12.1.3",
35
+ "@stytch/vanilla-js": "0.12.0",
36
+ "@testing-library/react": "14.0.0",
37
37
  "eslint-config-custom": "0.0.1",
38
+ "react-test-renderer": "18.0.0",
38
39
  "rollup": "2.56.3",
39
40
  "typescript": "4.7.4"
40
41
  },
41
42
  "peerDependencies": {
42
- "@stytch/vanilla-js": "^0.11.2",
43
+ "@stytch/vanilla-js": "^0.12.0",
43
44
  "react": ">= 17.0.2",
44
45
  "react-dom": ">= 17.0.2"
45
46
  }