@backstage/plugin-catalog 1.27.0-next.3 → 1.27.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 +27 -0
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.27.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b07756e: The Entity Page now retains the visibility of the Inspect Dialog after a reload. This allows sharing the URL with the dialog open.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7a15cff: Revert client side paginated catalog table to using built in Material Table toolbar component
|
|
12
|
+
- 58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/plugin-search-react@1.8.6
|
|
15
|
+
- @backstage/core-components@0.16.4
|
|
16
|
+
- @backstage/plugin-catalog-react@1.15.2
|
|
17
|
+
- @backstage/frontend-plugin-api@0.9.5
|
|
18
|
+
- @backstage/integration-react@1.2.4
|
|
19
|
+
- @backstage/core-compat-api@0.3.6
|
|
20
|
+
- @backstage/core-plugin-api@1.10.4
|
|
21
|
+
- @backstage/plugin-permission-react@0.4.31
|
|
22
|
+
- @backstage/catalog-client@1.9.1
|
|
23
|
+
- @backstage/catalog-model@1.7.3
|
|
24
|
+
- @backstage/errors@1.2.7
|
|
25
|
+
- @backstage/types@1.2.1
|
|
26
|
+
- @backstage/plugin-catalog-common@1.1.3
|
|
27
|
+
- @backstage/plugin-scaffolder-common@1.5.9
|
|
28
|
+
- @backstage/plugin-search-common@1.2.17
|
|
29
|
+
|
|
3
30
|
## 1.27.0-next.3
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog",
|
|
3
|
-
"version": "1.27.0
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "The Backstage plugin for browsing the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,21 +70,21 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-client": "1.9.1",
|
|
74
|
-
"@backstage/catalog-model": "1.7.3",
|
|
75
|
-
"@backstage/core-compat-api": "0.3.6
|
|
76
|
-
"@backstage/core-components": "0.16.4
|
|
77
|
-
"@backstage/core-plugin-api": "1.10.4
|
|
78
|
-
"@backstage/errors": "1.2.7",
|
|
79
|
-
"@backstage/frontend-plugin-api": "0.9.5
|
|
80
|
-
"@backstage/integration-react": "1.2.4
|
|
81
|
-
"@backstage/plugin-catalog-common": "1.1.3",
|
|
82
|
-
"@backstage/plugin-catalog-react": "1.15.2
|
|
83
|
-
"@backstage/plugin-permission-react": "0.4.31
|
|
84
|
-
"@backstage/plugin-scaffolder-common": "1.5.9",
|
|
85
|
-
"@backstage/plugin-search-common": "1.2.17",
|
|
86
|
-
"@backstage/plugin-search-react": "1.8.6
|
|
87
|
-
"@backstage/types": "1.2.1",
|
|
73
|
+
"@backstage/catalog-client": "^1.9.1",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
75
|
+
"@backstage/core-compat-api": "^0.3.6",
|
|
76
|
+
"@backstage/core-components": "^0.16.4",
|
|
77
|
+
"@backstage/core-plugin-api": "^1.10.4",
|
|
78
|
+
"@backstage/errors": "^1.2.7",
|
|
79
|
+
"@backstage/frontend-plugin-api": "^0.9.5",
|
|
80
|
+
"@backstage/integration-react": "^1.2.4",
|
|
81
|
+
"@backstage/plugin-catalog-common": "^1.1.3",
|
|
82
|
+
"@backstage/plugin-catalog-react": "^1.15.2",
|
|
83
|
+
"@backstage/plugin-permission-react": "^0.4.31",
|
|
84
|
+
"@backstage/plugin-scaffolder-common": "^1.5.9",
|
|
85
|
+
"@backstage/plugin-search-common": "^1.2.17",
|
|
86
|
+
"@backstage/plugin-search-react": "^1.8.6",
|
|
87
|
+
"@backstage/types": "^1.2.1",
|
|
88
88
|
"@material-ui/core": "^4.12.2",
|
|
89
89
|
"@material-ui/icons": "^4.9.1",
|
|
90
90
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -98,12 +98,12 @@
|
|
|
98
98
|
"zen-observable": "^0.10.0"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
|
-
"@backstage/cli": "0.30.0
|
|
102
|
-
"@backstage/core-app-api": "1.15.5
|
|
103
|
-
"@backstage/dev-utils": "1.1.7
|
|
104
|
-
"@backstage/frontend-test-utils": "0.2.6
|
|
105
|
-
"@backstage/plugin-permission-common": "0.8.4",
|
|
106
|
-
"@backstage/test-utils": "1.7.5
|
|
101
|
+
"@backstage/cli": "^0.30.0",
|
|
102
|
+
"@backstage/core-app-api": "^1.15.5",
|
|
103
|
+
"@backstage/dev-utils": "^1.1.7",
|
|
104
|
+
"@backstage/frontend-test-utils": "^0.2.6",
|
|
105
|
+
"@backstage/plugin-permission-common": "^0.8.4",
|
|
106
|
+
"@backstage/test-utils": "^1.7.5",
|
|
107
107
|
"@testing-library/dom": "^10.0.0",
|
|
108
108
|
"@testing-library/jest-dom": "^6.0.0",
|
|
109
109
|
"@testing-library/react": "^16.0.0",
|