@backstage/plugin-kubernetes-react 0.3.0-next.3 → 0.3.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 +30 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-react
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0dfc185: **BREAKING** The `PodScope`, `PodAndErrors`, and `PodExecTerminalProps` types no
|
|
8
|
+
longer have a `clusterName` field; instead they now have the field `cluster`
|
|
9
|
+
which contains the full `ClusterAttributes`.
|
|
10
|
+
- 0d526c8: **BREAKING** The pod exec terminal is now disabled by default since there are several scenarios where it is known not to work. It can be re-enabled at your own risk by setting the config parameter `kubernetes.podExecTerminal.enabled` to `true`.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 5bf0c17: Pod dialogs display cluster title when specified.
|
|
15
|
+
- 74770c8: The `ErrorPanel` component will display the `title` field (when specified) for
|
|
16
|
+
clusters with errors.
|
|
17
|
+
- 536f67d: Fix broken XtermJS CSS import
|
|
18
|
+
- b01c86c: The `ErrorReporting` component's cluster column now displays cluster titles when
|
|
19
|
+
specified.
|
|
20
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
21
|
+
- 8472188: Added or fixed the `repository` field in `package.json`.
|
|
22
|
+
- 2b305eb: The `Cluster` component now renders the cluster's title, if specified.
|
|
23
|
+
- 3c184af: Extracted common dialog component.
|
|
24
|
+
- db1054b: Fixed a bug where the logs dialog and any other functionality depending on the proxy endpoint would fail for clusters configured with the OIDC auth provider.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/core-components@0.14.0
|
|
27
|
+
- @backstage/plugin-kubernetes-common@0.7.4
|
|
28
|
+
- @backstage/catalog-model@1.4.4
|
|
29
|
+
- @backstage/core-plugin-api@1.9.0
|
|
30
|
+
- @backstage/errors@1.2.3
|
|
31
|
+
- @backstage/types@1.1.1
|
|
32
|
+
|
|
3
33
|
## 0.3.0-next.3
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-react",
|
|
3
3
|
"description": "Web library for the kubernetes-react plugin",
|
|
4
|
-
"version": "0.3.0
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"postpack": "backstage-cli package postpack"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@backstage/catalog-model": "^1.4.4
|
|
34
|
-
"@backstage/core-components": "^0.14.0
|
|
35
|
-
"@backstage/core-plugin-api": "^1.9.0
|
|
33
|
+
"@backstage/catalog-model": "^1.4.4",
|
|
34
|
+
"@backstage/core-components": "^0.14.0",
|
|
35
|
+
"@backstage/core-plugin-api": "^1.9.0",
|
|
36
36
|
"@backstage/errors": "^1.2.3",
|
|
37
|
-
"@backstage/plugin-kubernetes-common": "^0.7.4
|
|
37
|
+
"@backstage/plugin-kubernetes-common": "^0.7.4",
|
|
38
38
|
"@backstage/types": "^1.1.1",
|
|
39
39
|
"@kubernetes-models/apimachinery": "^1.1.0",
|
|
40
40
|
"@kubernetes-models/base": "^4.0.1",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@backstage/cli": "^0.25.2
|
|
61
|
-
"@backstage/core-app-api": "^1.12.0
|
|
62
|
-
"@backstage/test-utils": "^1.5.0
|
|
60
|
+
"@backstage/cli": "^0.25.2",
|
|
61
|
+
"@backstage/core-app-api": "^1.12.0",
|
|
62
|
+
"@backstage/test-utils": "^1.5.0",
|
|
63
63
|
"@testing-library/jest-dom": "^6.0.0",
|
|
64
64
|
"@testing-library/react": "^14.0.0",
|
|
65
65
|
"jest-websocket-mock": "^2.5.0",
|