@backstage/plugin-catalog 1.17.0-next.1 → 1.17.0-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.
- package/CHANGELOG.md +23 -0
- package/README.md +1 -1
- package/alpha/package.json +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.17.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
8
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/core-components@0.14.0-next.1
|
|
11
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
12
|
+
- @backstage/frontend-plugin-api@0.6.0-next.2
|
|
13
|
+
- @backstage/plugin-catalog-react@1.10.0-next.2
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.20-next.1
|
|
15
|
+
- @backstage/plugin-search-react@1.7.6-next.2
|
|
16
|
+
- @backstage/integration-react@1.1.24-next.1
|
|
17
|
+
- @backstage/core-compat-api@0.2.0-next.2
|
|
18
|
+
- @backstage/catalog-client@1.6.0-next.1
|
|
19
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
20
|
+
- @backstage/errors@1.2.3
|
|
21
|
+
- @backstage/types@1.1.1
|
|
22
|
+
- @backstage/plugin-catalog-common@1.0.21-next.0
|
|
23
|
+
- @backstage/plugin-scaffolder-common@1.5.0-next.1
|
|
24
|
+
- @backstage/plugin-search-common@1.2.10
|
|
25
|
+
|
|
3
26
|
## 1.17.0-next.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ plugin, if you previously removed it.
|
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
# From your Backstage root directory
|
|
23
|
-
yarn
|
|
23
|
+
yarn --cwd packages/app add @backstage/plugin-catalog
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### Add the plugin to your `packages/app`
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog",
|
|
3
3
|
"description": "The Backstage plugin for browsing the Backstage catalog",
|
|
4
|
-
"version": "1.17.0-next.
|
|
4
|
+
"version": "1.17.0-next.2",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -46,24 +46,24 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@backstage/catalog-client": "^1.6.0-next.1",
|
|
48
48
|
"@backstage/catalog-model": "^1.4.4-next.0",
|
|
49
|
-
"@backstage/core-compat-api": "^0.2.0-next.
|
|
50
|
-
"@backstage/core-components": "^0.14.0-next.
|
|
51
|
-
"@backstage/core-plugin-api": "^1.
|
|
49
|
+
"@backstage/core-compat-api": "^0.2.0-next.2",
|
|
50
|
+
"@backstage/core-components": "^0.14.0-next.1",
|
|
51
|
+
"@backstage/core-plugin-api": "^1.9.0-next.1",
|
|
52
52
|
"@backstage/errors": "^1.2.3",
|
|
53
|
-
"@backstage/frontend-plugin-api": "^0.6.0-next.
|
|
54
|
-
"@backstage/integration-react": "^1.1.24-next.
|
|
53
|
+
"@backstage/frontend-plugin-api": "^0.6.0-next.2",
|
|
54
|
+
"@backstage/integration-react": "^1.1.24-next.1",
|
|
55
55
|
"@backstage/plugin-catalog-common": "^1.0.21-next.0",
|
|
56
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
57
|
-
"@backstage/plugin-permission-react": "^0.4.20-next.
|
|
56
|
+
"@backstage/plugin-catalog-react": "^1.10.0-next.2",
|
|
57
|
+
"@backstage/plugin-permission-react": "^0.4.20-next.1",
|
|
58
58
|
"@backstage/plugin-scaffolder-common": "^1.5.0-next.1",
|
|
59
59
|
"@backstage/plugin-search-common": "^1.2.10",
|
|
60
|
-
"@backstage/plugin-search-react": "^1.7.6-next.
|
|
60
|
+
"@backstage/plugin-search-react": "^1.7.6-next.2",
|
|
61
61
|
"@backstage/types": "^1.1.1",
|
|
62
62
|
"@material-ui/core": "^4.12.2",
|
|
63
63
|
"@material-ui/icons": "^4.9.1",
|
|
64
64
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
65
65
|
"@mui/utils": "^5.14.15",
|
|
66
|
-
"@types/react": "^16.13.1 || ^17.0.0",
|
|
66
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
67
67
|
"dataloader": "^2.0.0",
|
|
68
68
|
"expiry-map": "^2.0.0",
|
|
69
69
|
"history": "^5.0.0",
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "^0.25.2-next.
|
|
82
|
-
"@backstage/core-app-api": "^1.
|
|
83
|
-
"@backstage/dev-utils": "^1.0.27-next.
|
|
81
|
+
"@backstage/cli": "^0.25.2-next.2",
|
|
82
|
+
"@backstage/core-app-api": "^1.12.0-next.1",
|
|
83
|
+
"@backstage/dev-utils": "^1.0.27-next.2",
|
|
84
84
|
"@backstage/plugin-permission-common": "^0.7.12",
|
|
85
|
-
"@backstage/test-utils": "^1.5.0-next.
|
|
85
|
+
"@backstage/test-utils": "^1.5.0-next.2",
|
|
86
86
|
"@testing-library/dom": "^9.0.0",
|
|
87
87
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
88
|
"@testing-library/react": "^14.0.0",
|