@backstage/plugin-kubernetes-node 0.1.4-next.1 → 0.1.4-next.3
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 +23 -0
- package/dist/index.d.ts +5 -1
- package/package.json +13 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-node
|
|
2
2
|
|
|
3
|
+
## 0.1.4-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8472188: Added or fixed the `repository` field in `package.json`.
|
|
8
|
+
- 043cf88: The `ClusterDetails` type now has a `title` field, which should be a
|
|
9
|
+
human-readable name.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/plugin-kubernetes-common@0.7.4-next.2
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.10-next.3
|
|
13
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
14
|
+
- @backstage/types@1.1.1
|
|
15
|
+
|
|
16
|
+
## 0.1.4-next.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/backend-plugin-api@0.6.10-next.2
|
|
22
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
23
|
+
- @backstage/types@1.1.1
|
|
24
|
+
- @backstage/plugin-kubernetes-common@0.7.4-next.1
|
|
25
|
+
|
|
3
26
|
## 0.1.4-next.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -110,9 +110,13 @@ type AuthMetadata = Record<string, string>;
|
|
|
110
110
|
*/
|
|
111
111
|
interface ClusterDetails {
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
113
|
+
* Name of the Kubernetes cluster; used as an internal identifier.
|
|
114
114
|
*/
|
|
115
115
|
name: string;
|
|
116
|
+
/**
|
|
117
|
+
* Human-readable name for the cluster, to be dispayed in UIs.
|
|
118
|
+
*/
|
|
119
|
+
title?: string;
|
|
116
120
|
url: string;
|
|
117
121
|
authMetadata: AuthMetadata;
|
|
118
122
|
skipTLSVerify?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-node",
|
|
3
3
|
"description": "Node.js library for the kubernetes plugin",
|
|
4
|
-
"version": "0.1.4-next.
|
|
4
|
+
"version": "0.1.4-next.3",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -10,6 +10,11 @@
|
|
|
10
10
|
"main": "dist/index.cjs.js",
|
|
11
11
|
"types": "dist/index.d.ts"
|
|
12
12
|
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/backstage/backstage",
|
|
16
|
+
"directory": "plugins/kubernetes-node"
|
|
17
|
+
},
|
|
13
18
|
"backstage": {
|
|
14
19
|
"role": "node-library"
|
|
15
20
|
},
|
|
@@ -22,11 +27,11 @@
|
|
|
22
27
|
"postpack": "backstage-cli package postpack"
|
|
23
28
|
},
|
|
24
29
|
"devDependencies": {
|
|
25
|
-
"@backstage/backend-app-api": "^0.5.11-next.
|
|
26
|
-
"@backstage/backend-common": "^0.21.0-next.
|
|
27
|
-
"@backstage/backend-test-utils": "^0.3.0-next.
|
|
28
|
-
"@backstage/cli": "^0.25.2-next.
|
|
29
|
-
"@backstage/plugin-kubernetes-backend": "^0.
|
|
30
|
+
"@backstage/backend-app-api": "^0.5.11-next.3",
|
|
31
|
+
"@backstage/backend-common": "^0.21.0-next.3",
|
|
32
|
+
"@backstage/backend-test-utils": "^0.3.0-next.3",
|
|
33
|
+
"@backstage/cli": "^0.25.2-next.3",
|
|
34
|
+
"@backstage/plugin-kubernetes-backend": "^0.15.0-next.3",
|
|
30
35
|
"msw": "^1.3.1",
|
|
31
36
|
"supertest": "^6.1.3"
|
|
32
37
|
},
|
|
@@ -34,9 +39,9 @@
|
|
|
34
39
|
"dist"
|
|
35
40
|
],
|
|
36
41
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.6.10-next.
|
|
42
|
+
"@backstage/backend-plugin-api": "^0.6.10-next.3",
|
|
38
43
|
"@backstage/catalog-model": "^1.4.4-next.0",
|
|
39
|
-
"@backstage/plugin-kubernetes-common": "^0.7.4-next.
|
|
44
|
+
"@backstage/plugin-kubernetes-common": "^0.7.4-next.2",
|
|
40
45
|
"@backstage/types": "^1.1.1",
|
|
41
46
|
"@kubernetes/client-node": "^0.20.0",
|
|
42
47
|
"node-fetch": "^2.6.7",
|