@backstage/plugin-kubernetes-backend 0.6.0-next.2 → 0.6.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 +15 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-backend
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4328737af6: Add support to fetch data for Stateful Sets from Kubernetes
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 0c70cd8e1d: cache and refresh Azure tokens to avoid excessive calls to Azure Identity
|
|
12
|
+
- 2aedf64ad3: Updated dependency `@google-cloud/container` to `^4.0.0`.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-common@0.14.0
|
|
15
|
+
- @backstage/plugin-kubernetes-common@0.3.0
|
|
16
|
+
- @backstage/catalog-model@1.0.3
|
|
17
|
+
|
|
3
18
|
## 0.6.0-next.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-backend",
|
|
3
3
|
"description": "A Backstage backend plugin that integrates towards Kubernetes",
|
|
4
|
-
"version": "0.6.0
|
|
4
|
+
"version": "0.6.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@azure/identity": "^2.0.4",
|
|
39
|
-
"@backstage/backend-common": "^0.14.0
|
|
40
|
-
"@backstage/catalog-model": "^1.0.3
|
|
39
|
+
"@backstage/backend-common": "^0.14.0",
|
|
40
|
+
"@backstage/catalog-model": "^1.0.3",
|
|
41
41
|
"@backstage/config": "^1.0.1",
|
|
42
42
|
"@backstage/errors": "^1.0.0",
|
|
43
|
-
"@backstage/plugin-kubernetes-common": "^0.3.0
|
|
44
|
-
"@google-cloud/container": "^
|
|
43
|
+
"@backstage/plugin-kubernetes-common": "^0.3.0",
|
|
44
|
+
"@google-cloud/container": "^4.0.0",
|
|
45
45
|
"@kubernetes/client-node": "^0.16.0",
|
|
46
46
|
"@types/express": "^4.17.6",
|
|
47
47
|
"@types/luxon": "^2.0.4",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"yn": "^4.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/cli": "^0.17.2
|
|
64
|
+
"@backstage/cli": "^0.17.2",
|
|
65
65
|
"@types/aws4": "^1.5.1",
|
|
66
66
|
"aws-sdk-mock": "^5.2.1",
|
|
67
67
|
"supertest": "^6.1.3"
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"dist",
|
|
71
71
|
"schema.d.ts"
|
|
72
72
|
],
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee"
|
|
74
74
|
}
|