@backstage/plugin-devtools 0.0.0-nightly-20240930023420 → 0.0.0-nightly-20241002023110

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 CHANGED
@@ -1,17 +1,32 @@
1
1
  # @backstage/plugin-devtools
2
2
 
3
- ## 0.0.0-nightly-20240930023420
3
+ ## 0.0.0-nightly-20241002023110
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-20240930023420
9
- - @backstage/frontend-plugin-api@0.0.0-nightly-20240930023420
10
- - @backstage/core-compat-api@0.0.0-nightly-20240930023420
11
- - @backstage/core-plugin-api@0.0.0-nightly-20240930023420
9
+ - @backstage/core-components@0.0.0-nightly-20241002023110
10
+ - @backstage/frontend-plugin-api@0.0.0-nightly-20241002023110
11
+ - @backstage/core-compat-api@0.0.0-nightly-20241002023110
12
+ - @backstage/core-plugin-api@0.0.0-nightly-20241002023110
13
+ - @backstage/plugin-permission-react@0.0.0-nightly-20241002023110
14
+ - @backstage/errors@1.2.4
15
+ - @backstage/plugin-devtools-common@0.1.12
16
+
17
+ ## 0.1.19-next.1
18
+
19
+ ### Patch Changes
20
+
21
+ - e969dc7: Move `@types/react` to a peer dependency.
22
+ - Updated dependencies
23
+ - @backstage/core-components@0.15.1-next.1
24
+ - @backstage/frontend-plugin-api@0.9.0-next.1
25
+ - @backstage/core-compat-api@0.3.1-next.1
26
+ - @backstage/core-plugin-api@1.10.0-next.1
27
+ - @backstage/plugin-permission-react@0.4.27-next.1
12
28
  - @backstage/errors@1.2.4
13
29
  - @backstage/plugin-devtools-common@0.1.12
14
- - @backstage/plugin-permission-react@0.0.0-nightly-20240930023420
15
30
 
16
31
  ## 0.1.19-next.0
17
32
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools__alpha",
3
- "version": "0.0.0-nightly-20240930023420",
3
+ "version": "0.0.0-nightly-20241002023110",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools",
3
- "version": "0.0.0-nightly-20240930023420",
3
+ "version": "0.0.0-nightly-20241002023110",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "devtools",
@@ -51,13 +51,13 @@
51
51
  "test": "backstage-cli package test"
52
52
  },
53
53
  "dependencies": {
54
- "@backstage/core-compat-api": "0.0.0-nightly-20240930023420",
55
- "@backstage/core-components": "0.0.0-nightly-20240930023420",
56
- "@backstage/core-plugin-api": "0.0.0-nightly-20240930023420",
54
+ "@backstage/core-compat-api": "0.0.0-nightly-20241002023110",
55
+ "@backstage/core-components": "0.0.0-nightly-20241002023110",
56
+ "@backstage/core-plugin-api": "0.0.0-nightly-20241002023110",
57
57
  "@backstage/errors": "1.2.4",
58
- "@backstage/frontend-plugin-api": "0.0.0-nightly-20240930023420",
58
+ "@backstage/frontend-plugin-api": "0.0.0-nightly-20241002023110",
59
59
  "@backstage/plugin-devtools-common": "0.1.12",
60
- "@backstage/plugin-permission-react": "0.0.0-nightly-20240930023420",
60
+ "@backstage/plugin-permission-react": "0.0.0-nightly-20241002023110",
61
61
  "@material-ui/core": "^4.9.13",
62
62
  "@material-ui/icons": "^4.9.1",
63
63
  "@material-ui/lab": "^4.0.0-alpha.57",
@@ -65,9 +65,13 @@
65
65
  "react-use": "^17.2.4"
66
66
  },
67
67
  "devDependencies": {
68
- "@backstage/cli": "0.0.0-nightly-20240930023420",
69
- "@backstage/dev-utils": "0.0.0-nightly-20240930023420",
70
- "@testing-library/jest-dom": "^6.0.0"
68
+ "@backstage/cli": "0.0.0-nightly-20241002023110",
69
+ "@backstage/dev-utils": "0.0.0-nightly-20241002023110",
70
+ "@testing-library/jest-dom": "^6.0.0",
71
+ "@types/react": "^18.0.0",
72
+ "react": "^18.0.2",
73
+ "react-dom": "^18.0.2",
74
+ "react-router-dom": "^6.3.0"
71
75
  },
72
76
  "peerDependencies": {
73
77
  "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
@@ -75,5 +79,10 @@
75
79
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
76
80
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
77
81
  },
82
+ "peerDependenciesMeta": {
83
+ "@types/react": {
84
+ "optional": true
85
+ }
86
+ },
78
87
  "module": "./dist/index.esm.js"
79
88
  }