@backstage/plugin-auth-react 0.0.0-nightly-20241001023625 → 0.0.0-nightly-20241003023252

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 +14 -3
  2. package/package.json +20 -9
package/CHANGELOG.md CHANGED
@@ -1,12 +1,23 @@
1
1
  # @backstage/plugin-auth-react
2
2
 
3
- ## 0.0.0-nightly-20241001023625
3
+ ## 0.0.0-nightly-20241003023252
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - e969dc7: Move `@types/react` to a peer dependency.
7
8
  - Updated dependencies
8
- - @backstage/core-components@0.0.0-nightly-20241001023625
9
- - @backstage/core-plugin-api@0.0.0-nightly-20241001023625
9
+ - @backstage/core-components@0.0.0-nightly-20241003023252
10
+ - @backstage/core-plugin-api@0.0.0-nightly-20241003023252
11
+ - @backstage/errors@1.2.4
12
+
13
+ ## 0.1.7-next.1
14
+
15
+ ### Patch Changes
16
+
17
+ - e969dc7: Move `@types/react` to a peer dependency.
18
+ - Updated dependencies
19
+ - @backstage/core-components@0.15.1-next.1
20
+ - @backstage/core-plugin-api@1.10.0-next.1
10
21
  - @backstage/errors@1.2.4
11
22
 
12
23
  ## 0.1.7-next.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-react",
3
- "version": "0.0.0-nightly-20241001023625",
3
+ "version": "0.0.0-nightly-20241003023252",
4
4
  "description": "Web library for the auth plugin",
5
5
  "backstage": {
6
6
  "role": "web-library",
@@ -38,23 +38,34 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/core-components": "0.0.0-nightly-20241001023625",
42
- "@backstage/core-plugin-api": "0.0.0-nightly-20241001023625",
41
+ "@backstage/core-components": "0.0.0-nightly-20241003023252",
42
+ "@backstage/core-plugin-api": "0.0.0-nightly-20241003023252",
43
43
  "@backstage/errors": "1.2.4",
44
44
  "@material-ui/core": "^4.9.13",
45
- "@react-hookz/web": "^24.0.0",
46
- "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0"
45
+ "@react-hookz/web": "^24.0.0"
47
46
  },
48
47
  "devDependencies": {
49
- "@backstage/cli": "0.0.0-nightly-20241001023625",
50
- "@backstage/test-utils": "0.0.0-nightly-20241001023625",
48
+ "@backstage/cli": "0.0.0-nightly-20241003023252",
49
+ "@backstage/test-utils": "0.0.0-nightly-20241003023252",
51
50
  "@testing-library/jest-dom": "^6.0.0",
52
51
  "@testing-library/react": "^16.0.0",
53
52
  "@testing-library/user-event": "^14.0.0",
54
- "msw": "^1.0.0"
53
+ "@types/react": "^18.0.0",
54
+ "msw": "^1.0.0",
55
+ "react": "^18.0.2",
56
+ "react-dom": "^18.0.2",
57
+ "react-router-dom": "^6.3.0"
55
58
  },
56
59
  "peerDependencies": {
57
- "react": "^16.13.1 || ^17.0.0 || ^18.0.0"
60
+ "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
61
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
62
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
63
+ "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
64
+ },
65
+ "peerDependenciesMeta": {
66
+ "@types/react": {
67
+ "optional": true
68
+ }
58
69
  },
59
70
  "module": "./dist/index.esm.js"
60
71
  }