@backstage/plugin-kubernetes 0.11.15 → 0.11.16-next.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 +25 -3
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +24 -6
- package/package.json +25 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,34 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
-
## 0.11.
|
|
3
|
+
## 0.11.16-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
8
|
+
- 605e0bb: Updated dependency `@kubernetes-models/base` to `^5.0.0`.
|
|
7
9
|
- Updated dependencies
|
|
8
|
-
- @backstage/
|
|
9
|
-
- @backstage/
|
|
10
|
+
- @backstage/core-components@0.15.1-next.1
|
|
11
|
+
- @backstage/frontend-plugin-api@0.9.0-next.1
|
|
12
|
+
- @backstage/core-compat-api@0.3.1-next.1
|
|
13
|
+
- @backstage/core-plugin-api@1.10.0-next.1
|
|
14
|
+
- @backstage/plugin-kubernetes-react@0.4.4-next.1
|
|
15
|
+
- @backstage/plugin-catalog-react@1.14.0-next.1
|
|
16
|
+
- @backstage/catalog-model@1.7.0
|
|
17
|
+
- @backstage/plugin-kubernetes-common@0.8.3
|
|
18
|
+
|
|
19
|
+
## 0.11.15-next.0
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
25
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
26
|
+
- @backstage/core-components@0.15.1-next.0
|
|
27
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
28
|
+
- @backstage/plugin-catalog-react@1.13.1-next.0
|
|
29
|
+
- @backstage/catalog-model@1.7.0
|
|
30
|
+
- @backstage/plugin-kubernetes-common@0.8.3
|
|
31
|
+
- @backstage/plugin-kubernetes-react@0.4.4-next.0
|
|
10
32
|
|
|
11
33
|
## 0.11.14
|
|
12
34
|
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -8,16 +8,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
8
8
|
}, {}, {
|
|
9
9
|
"api:kubernetes": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
10
|
kind: "api";
|
|
11
|
-
namespace: undefined;
|
|
12
11
|
name: undefined;
|
|
13
12
|
config: {};
|
|
14
13
|
configInput: {};
|
|
15
14
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
16
15
|
inputs: {};
|
|
16
|
+
params: {
|
|
17
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
18
|
+
};
|
|
17
19
|
}>;
|
|
18
20
|
"page:kubernetes": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
19
21
|
kind: "page";
|
|
20
|
-
namespace: undefined;
|
|
21
22
|
name: undefined;
|
|
22
23
|
config: {
|
|
23
24
|
path: string | undefined;
|
|
@@ -29,10 +30,14 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
29
30
|
optional: true;
|
|
30
31
|
}>;
|
|
31
32
|
inputs: {};
|
|
33
|
+
params: {
|
|
34
|
+
defaultPath: string;
|
|
35
|
+
loader: () => Promise<JSX.Element>;
|
|
36
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
37
|
+
};
|
|
32
38
|
}>;
|
|
33
39
|
"entity-content:kubernetes/kubernetes": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
34
40
|
kind: "entity-content";
|
|
35
|
-
namespace: undefined;
|
|
36
41
|
name: "kubernetes";
|
|
37
42
|
config: {
|
|
38
43
|
path: string | undefined;
|
|
@@ -52,33 +57,46 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
52
57
|
optional: true;
|
|
53
58
|
}>;
|
|
54
59
|
inputs: {};
|
|
60
|
+
params: {
|
|
61
|
+
loader: () => Promise<JSX.Element>;
|
|
62
|
+
defaultPath: string;
|
|
63
|
+
defaultTitle: string;
|
|
64
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
65
|
+
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
66
|
+
};
|
|
55
67
|
}>;
|
|
56
68
|
"api:kubernetes/proxy": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
57
69
|
kind: "api";
|
|
58
|
-
namespace: undefined;
|
|
59
70
|
name: "proxy";
|
|
60
71
|
config: {};
|
|
61
72
|
configInput: {};
|
|
62
73
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
63
74
|
inputs: {};
|
|
75
|
+
params: {
|
|
76
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
77
|
+
};
|
|
64
78
|
}>;
|
|
65
79
|
"api:kubernetes/auth-providers": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
66
80
|
kind: "api";
|
|
67
|
-
namespace: undefined;
|
|
68
81
|
name: "auth-providers";
|
|
69
82
|
config: {};
|
|
70
83
|
configInput: {};
|
|
71
84
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
72
85
|
inputs: {};
|
|
86
|
+
params: {
|
|
87
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
88
|
+
};
|
|
73
89
|
}>;
|
|
74
90
|
"api:kubernetes/cluster-link-formatter": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
75
91
|
kind: "api";
|
|
76
|
-
namespace: undefined;
|
|
77
92
|
name: "cluster-link-formatter";
|
|
78
93
|
config: {};
|
|
79
94
|
configInput: {};
|
|
80
95
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
81
96
|
inputs: {};
|
|
97
|
+
params: {
|
|
98
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
99
|
+
};
|
|
82
100
|
}>;
|
|
83
101
|
}>;
|
|
84
102
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.16-next.1",
|
|
4
4
|
"description": "A Backstage plugin that integrates towards Kubernetes",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"default": "./dist/index.esm.js"
|
|
36
36
|
},
|
|
37
37
|
"./alpha": {
|
|
38
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
38
39
|
"import": "./dist/alpha.esm.js",
|
|
39
40
|
"types": "./dist/alpha.d.ts",
|
|
40
41
|
"default": "./dist/alpha.esm.js"
|
|
@@ -57,19 +58,18 @@
|
|
|
57
58
|
"test": "backstage-cli package test"
|
|
58
59
|
},
|
|
59
60
|
"dependencies": {
|
|
60
|
-
"@backstage/catalog-model": "
|
|
61
|
-
"@backstage/core-compat-api": "
|
|
62
|
-
"@backstage/core-components": "
|
|
63
|
-
"@backstage/core-plugin-api": "
|
|
64
|
-
"@backstage/frontend-plugin-api": "
|
|
65
|
-
"@backstage/plugin-catalog-react": "
|
|
66
|
-
"@backstage/plugin-kubernetes-common": "
|
|
67
|
-
"@backstage/plugin-kubernetes-react": "
|
|
61
|
+
"@backstage/catalog-model": "1.7.0",
|
|
62
|
+
"@backstage/core-compat-api": "0.3.1-next.1",
|
|
63
|
+
"@backstage/core-components": "0.15.1-next.1",
|
|
64
|
+
"@backstage/core-plugin-api": "1.10.0-next.1",
|
|
65
|
+
"@backstage/frontend-plugin-api": "0.9.0-next.1",
|
|
66
|
+
"@backstage/plugin-catalog-react": "1.14.0-next.1",
|
|
67
|
+
"@backstage/plugin-kubernetes-common": "0.8.3",
|
|
68
|
+
"@backstage/plugin-kubernetes-react": "0.4.4-next.1",
|
|
68
69
|
"@kubernetes-models/apimachinery": "^1.1.0",
|
|
69
|
-
"@kubernetes-models/base": "^
|
|
70
|
+
"@kubernetes-models/base": "^5.0.0",
|
|
70
71
|
"@kubernetes/client-node": "0.20.0",
|
|
71
72
|
"@material-ui/core": "^4.12.2",
|
|
72
|
-
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
73
73
|
"cronstrue": "^2.2.0",
|
|
74
74
|
"js-yaml": "^4.0.0",
|
|
75
75
|
"kubernetes-models": "^4.1.0",
|
|
@@ -80,17 +80,27 @@
|
|
|
80
80
|
"xterm-addon-fit": "^0.8.0"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@backstage/cli": "
|
|
84
|
-
"@backstage/dev-utils": "
|
|
85
|
-
"@backstage/test-utils": "
|
|
83
|
+
"@backstage/cli": "0.28.0-next.1",
|
|
84
|
+
"@backstage/dev-utils": "1.1.2-next.1",
|
|
85
|
+
"@backstage/test-utils": "1.6.1-next.1",
|
|
86
86
|
"@testing-library/dom": "^10.0.0",
|
|
87
87
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
|
-
"@testing-library/react": "^16.0.0"
|
|
88
|
+
"@testing-library/react": "^16.0.0",
|
|
89
|
+
"@types/react": "^18.0.0",
|
|
90
|
+
"react": "^18.0.2",
|
|
91
|
+
"react-dom": "^18.0.2",
|
|
92
|
+
"react-router-dom": "^6.3.0"
|
|
89
93
|
},
|
|
90
94
|
"peerDependencies": {
|
|
95
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
91
96
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
92
97
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
93
98
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
94
99
|
},
|
|
100
|
+
"peerDependenciesMeta": {
|
|
101
|
+
"@types/react": {
|
|
102
|
+
"optional": true
|
|
103
|
+
}
|
|
104
|
+
},
|
|
95
105
|
"module": "./dist/index.esm.js"
|
|
96
106
|
}
|