@backstage/app-defaults 1.5.12-next.0 → 1.5.12-next.2

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 +23 -0
  2. package/package.json +18 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/app-defaults
2
2
 
3
+ ## 1.5.12-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/theme@0.6.0-next.1
9
+ - @backstage/core-app-api@1.15.1-next.1
10
+ - @backstage/core-components@0.15.1-next.2
11
+ - @backstage/core-plugin-api@1.10.0-next.1
12
+ - @backstage/plugin-permission-react@0.4.27-next.1
13
+
14
+ ## 1.5.12-next.1
15
+
16
+ ### Patch Changes
17
+
18
+ - e969dc7: Move `@types/react` to a peer dependency.
19
+ - Updated dependencies
20
+ - @backstage/core-components@0.15.1-next.1
21
+ - @backstage/core-plugin-api@1.10.0-next.1
22
+ - @backstage/plugin-permission-react@0.4.27-next.1
23
+ - @backstage/core-app-api@1.15.1-next.1
24
+ - @backstage/theme@0.5.8-next.0
25
+
3
26
  ## 1.5.12-next.0
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/app-defaults",
3
- "version": "1.5.12-next.0",
3
+ "version": "1.5.12-next.2",
4
4
  "description": "Provides the default wiring of a Backstage App",
5
5
  "backstage": {
6
6
  "role": "web-library"
@@ -36,25 +36,34 @@
36
36
  "test": "backstage-cli package test"
37
37
  },
38
38
  "dependencies": {
39
- "@backstage/core-app-api": "^1.15.1-next.0",
40
- "@backstage/core-components": "^0.15.1-next.0",
41
- "@backstage/core-plugin-api": "^1.10.0-next.0",
42
- "@backstage/plugin-permission-react": "^0.4.27-next.0",
43
- "@backstage/theme": "^0.5.7",
39
+ "@backstage/core-app-api": "1.15.1-next.1",
40
+ "@backstage/core-components": "0.15.1-next.2",
41
+ "@backstage/core-plugin-api": "1.10.0-next.1",
42
+ "@backstage/plugin-permission-react": "0.4.27-next.1",
43
+ "@backstage/theme": "0.6.0-next.1",
44
44
  "@material-ui/core": "^4.12.2",
45
45
  "@material-ui/icons": "^4.9.1"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/cli": "^0.28.0-next.0",
49
- "@backstage/test-utils": "^1.6.1-next.0",
48
+ "@backstage/cli": "0.28.0-next.2",
49
+ "@backstage/test-utils": "1.6.1-next.2",
50
50
  "@testing-library/jest-dom": "^6.0.0",
51
51
  "@testing-library/react": "^16.0.0",
52
- "@types/react": "^16.13.1 || ^17.0.0"
52
+ "@types/react": "^18.0.0",
53
+ "react": "^18.0.2",
54
+ "react-dom": "^18.0.2",
55
+ "react-router-dom": "^6.3.0"
53
56
  },
54
57
  "peerDependencies": {
58
+ "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
55
59
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
56
60
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
57
61
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
58
62
  },
63
+ "peerDependenciesMeta": {
64
+ "@types/react": {
65
+ "optional": true
66
+ }
67
+ },
59
68
  "module": "./dist/index.esm.js"
60
69
  }