@backstage/plugin-kubernetes-node 0.4.0-next.2 → 0.4.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 +12 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-node
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7f9846f: Add possibility to extends Kubernetes REST API. Add fetcher to parameters for custom objects provider
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@1.6.0
|
|
13
|
+
- @backstage/plugin-kubernetes-common@0.9.9
|
|
14
|
+
|
|
3
15
|
## 0.4.0-next.2
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-node",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Node.js library for the kubernetes plugin",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-plugin-api": "1.6.0
|
|
42
|
-
"@backstage/catalog-model": "1.7.6",
|
|
43
|
-
"@backstage/plugin-kubernetes-common": "0.9.9
|
|
44
|
-
"@backstage/types": "1.2.2",
|
|
41
|
+
"@backstage/backend-plugin-api": "^1.6.0",
|
|
42
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
43
|
+
"@backstage/plugin-kubernetes-common": "^0.9.9",
|
|
44
|
+
"@backstage/types": "^1.2.2",
|
|
45
45
|
"@kubernetes/client-node": "1.4.0",
|
|
46
46
|
"@types/express": "^4.17.6",
|
|
47
47
|
"node-fetch": "^2.7.0",
|
|
48
48
|
"winston": "^3.2.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/backend-app-api": "1.4.0
|
|
52
|
-
"@backstage/backend-defaults": "0.14.0
|
|
53
|
-
"@backstage/backend-test-utils": "1.10.2
|
|
54
|
-
"@backstage/cli": "0.35.0
|
|
55
|
-
"@backstage/plugin-kubernetes-backend": "0.21.0
|
|
51
|
+
"@backstage/backend-app-api": "^1.4.0",
|
|
52
|
+
"@backstage/backend-defaults": "^0.14.0",
|
|
53
|
+
"@backstage/backend-test-utils": "^1.10.2",
|
|
54
|
+
"@backstage/cli": "^0.35.0",
|
|
55
|
+
"@backstage/plugin-kubernetes-backend": "^0.21.0",
|
|
56
56
|
"msw": "^1.3.1",
|
|
57
57
|
"supertest": "^7.0.0"
|
|
58
58
|
},
|