@backstage/plugin-catalog-react 1.0.1-next.3 → 1.0.1
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 +30 -0
- package/alpha/package.json +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0ffd88a90e: Prevent permissions with types other than `ResourcePermission<'catalog-entity'>` from being used with the `useEntityPermission` hook.
|
|
8
|
+
- 7c7919777e: build(deps-dev): bump `@testing-library/react-hooks` from 7.0.2 to 8.0.0
|
|
9
|
+
- 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
|
|
10
|
+
- 4af82967f4: Decouple tags picker from backend entities
|
|
11
|
+
|
|
12
|
+
`EntityTagPicker` fetches all the tags independently and it doesn't require all the entities to be available client side.
|
|
13
|
+
|
|
14
|
+
- 4be0d1e777: Changed catalog filter components to only pay attention to query parameters relevant to the component.
|
|
15
|
+
- 5d5fdbe541: Columns in CatalogTable now change depending on the entity kind, ensuring only relevant columns are displayed.
|
|
16
|
+
- 863e7bcb7b: Updated the "unregister location" behavior in `UnregisterEntityDialog`. Removed unnecessary entity deletion requests that were sent after successfully deleting a location.
|
|
17
|
+
- 37b04b5a5e: Removed broken link from Labels section of entity inspector.
|
|
18
|
+
- a496cee4d1: Add support for string refs to the `EntityRefLinks` component
|
|
19
|
+
- d34900af81: Added a new `NextScaffolderRouter` which will eventually replace the exiting router
|
|
20
|
+
- 99063c39ae: Minor API report cleanup
|
|
21
|
+
- 4431873583: Update `usePermission` usage.
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/integration@1.1.0
|
|
24
|
+
- @backstage/plugin-permission-react@0.4.0
|
|
25
|
+
- @backstage/plugin-permission-common@0.6.0
|
|
26
|
+
- @backstage/catalog-model@1.0.1
|
|
27
|
+
- @backstage/core-components@0.9.3
|
|
28
|
+
- @backstage/core-plugin-api@1.0.1
|
|
29
|
+
- @backstage/version-bridge@1.0.1
|
|
30
|
+
- @backstage/plugin-catalog-common@1.0.1
|
|
31
|
+
- @backstage/catalog-client@1.0.1
|
|
32
|
+
|
|
3
33
|
## 1.0.1-next.3
|
|
4
34
|
|
|
5
35
|
### 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.0.1
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"start": "backstage-cli package start"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/catalog-client": "^1.0.1
|
|
38
|
-
"@backstage/catalog-model": "^1.0.1
|
|
39
|
-
"@backstage/core-components": "^0.9.3
|
|
40
|
-
"@backstage/core-plugin-api": "^1.0.1
|
|
37
|
+
"@backstage/catalog-client": "^1.0.1",
|
|
38
|
+
"@backstage/catalog-model": "^1.0.1",
|
|
39
|
+
"@backstage/core-components": "^0.9.3",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.0.1",
|
|
41
41
|
"@backstage/errors": "^1.0.0",
|
|
42
|
-
"@backstage/integration": "^1.1.0
|
|
43
|
-
"@backstage/plugin-catalog-common": "^1.0.1
|
|
44
|
-
"@backstage/plugin-permission-common": "^0.6.0
|
|
45
|
-
"@backstage/plugin-permission-react": "^0.4.0
|
|
42
|
+
"@backstage/integration": "^1.1.0",
|
|
43
|
+
"@backstage/plugin-catalog-common": "^1.0.1",
|
|
44
|
+
"@backstage/plugin-permission-common": "^0.6.0",
|
|
45
|
+
"@backstage/plugin-permission-react": "^0.4.0",
|
|
46
46
|
"@backstage/theme": "^0.2.15",
|
|
47
47
|
"@backstage/types": "^1.0.0",
|
|
48
|
-
"@backstage/version-bridge": "^1.0.
|
|
48
|
+
"@backstage/version-bridge": "^1.0.1",
|
|
49
49
|
"@material-ui/core": "^4.12.2",
|
|
50
50
|
"@material-ui/icons": "^4.9.1",
|
|
51
51
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"react": "^16.13.1 || ^17.0.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/cli": "^0.17.0
|
|
67
|
-
"@backstage/core-app-api": "^1.0.1
|
|
68
|
-
"@backstage/plugin-catalog-common": "^1.0.1
|
|
69
|
-
"@backstage/plugin-scaffolder-common": "^1.0.1
|
|
70
|
-
"@backstage/test-utils": "^1.0.1
|
|
66
|
+
"@backstage/cli": "^0.17.0",
|
|
67
|
+
"@backstage/core-app-api": "^1.0.1",
|
|
68
|
+
"@backstage/plugin-catalog-common": "^1.0.1",
|
|
69
|
+
"@backstage/plugin-scaffolder-common": "^1.0.1",
|
|
70
|
+
"@backstage/test-utils": "^1.0.1",
|
|
71
71
|
"@testing-library/jest-dom": "^5.10.1",
|
|
72
72
|
"@testing-library/react": "^12.1.3",
|
|
73
|
-
"@testing-library/react-hooks": "^
|
|
73
|
+
"@testing-library/react-hooks": "^8.0.0",
|
|
74
74
|
"@testing-library/user-event": "^14.0.0",
|
|
75
75
|
"@types/jest": "^26.0.7",
|
|
76
76
|
"@types/jwt-decode": "^3.1.0",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"dist",
|
|
83
83
|
"alpha"
|
|
84
84
|
],
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
86
86
|
}
|