@backstage/plugin-catalog-react 1.12.0-next.2 → 1.12.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.
- package/CHANGELOG.md +17 -2
- package/alpha/package.json +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8834daf: Updated the presentation API to return a promise, in addition to the snapshot and observable that were there before. This makes it much easier to consume the API in a non-React context.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/core-components@0.14.7
|
|
13
|
+
- @backstage/catalog-model@1.5.0
|
|
14
|
+
- @backstage/catalog-client@1.6.5
|
|
15
|
+
- @backstage/frontend-plugin-api@0.6.5
|
|
16
|
+
- @backstage/integration-react@1.1.27
|
|
17
|
+
- @backstage/plugin-catalog-common@1.0.23
|
|
18
|
+
|
|
3
19
|
## 1.12.0-next.2
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -2945,8 +2961,7 @@
|
|
|
2945
2961
|
`CatalogPage` component in your `App.tsx` routing allows you to adjust the
|
|
2946
2962
|
layout, header, and which filters are available.
|
|
2947
2963
|
|
|
2948
|
-
See the documentation added on [Catalog
|
|
2949
|
-
Customization](https://backstage.io/docs/features/software-catalog/catalog-customization)
|
|
2964
|
+
See the documentation added on [Catalog Customization](https://backstage.io/docs/features/software-catalog/catalog-customization)
|
|
2950
2965
|
for instructions.
|
|
2951
2966
|
|
|
2952
2967
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-react",
|
|
3
3
|
"description": "A frontend library that helps other Backstage plugins interact with the catalog",
|
|
4
|
-
"version": "1.12.0
|
|
4
|
+
"version": "1.12.0",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"start": "backstage-cli package start"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/catalog-client": "^1.6.5
|
|
48
|
-
"@backstage/catalog-model": "^1.5.0
|
|
49
|
-
"@backstage/core-components": "^0.14.7
|
|
47
|
+
"@backstage/catalog-client": "^1.6.5",
|
|
48
|
+
"@backstage/catalog-model": "^1.5.0",
|
|
49
|
+
"@backstage/core-components": "^0.14.7",
|
|
50
50
|
"@backstage/core-plugin-api": "^1.9.2",
|
|
51
51
|
"@backstage/errors": "^1.2.4",
|
|
52
|
-
"@backstage/frontend-plugin-api": "^0.6.5
|
|
53
|
-
"@backstage/integration-react": "^1.1.27
|
|
54
|
-
"@backstage/plugin-catalog-common": "^1.0.23
|
|
52
|
+
"@backstage/frontend-plugin-api": "^0.6.5",
|
|
53
|
+
"@backstage/integration-react": "^1.1.27",
|
|
54
|
+
"@backstage/plugin-catalog-common": "^1.0.23",
|
|
55
55
|
"@backstage/plugin-permission-common": "^0.7.13",
|
|
56
56
|
"@backstage/plugin-permission-react": "^0.4.22",
|
|
57
57
|
"@backstage/types": "^1.1.1",
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@backstage/cli": "^0.26.5
|
|
79
|
-
"@backstage/core-app-api": "^1.12.
|
|
80
|
-
"@backstage/plugin-catalog-common": "^1.0.23
|
|
81
|
-
"@backstage/plugin-scaffolder-common": "^1.5.2
|
|
82
|
-
"@backstage/test-utils": "^1.5.5
|
|
78
|
+
"@backstage/cli": "^0.26.5",
|
|
79
|
+
"@backstage/core-app-api": "^1.12.5",
|
|
80
|
+
"@backstage/plugin-catalog-common": "^1.0.23",
|
|
81
|
+
"@backstage/plugin-scaffolder-common": "^1.5.2",
|
|
82
|
+
"@backstage/test-utils": "^1.5.5",
|
|
83
83
|
"@testing-library/dom": "^10.0.0",
|
|
84
84
|
"@testing-library/jest-dom": "^6.0.0",
|
|
85
85
|
"@testing-library/react": "^15.0.0",
|