@backstage/plugin-kubernetes-backend 0.18.4-next.1 → 0.18.4-next.2

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 CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/plugin-kubernetes-backend
2
2
 
3
+ ## 0.18.4-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 93095ee: Make sure node-fetch is version 2.7.0 or greater
8
+ - 8c1aa06: Add `kubernetes.clusterLocatorMethods[].clusters[].customResources` to the configuration schema.
9
+ This was already documented and supported by the plugin.
10
+ - Updated dependencies
11
+ - @backstage/backend-plugin-api@0.8.0-next.2
12
+ - @backstage/plugin-permission-common@0.8.1-next.1
13
+ - @backstage/backend-common@0.23.4-next.2
14
+ - @backstage/plugin-kubernetes-node@0.1.17-next.2
15
+ - @backstage/plugin-auth-node@0.5.0-next.2
16
+ - @backstage/plugin-permission-node@0.8.1-next.2
17
+ - @backstage/plugin-catalog-node@1.12.5-next.2
18
+ - @backstage/plugin-kubernetes-common@0.8.2-next.1
19
+ - @backstage/integration-aws-node@0.1.12
20
+ - @backstage/catalog-client@1.6.5
21
+ - @backstage/catalog-model@1.5.0
22
+ - @backstage/config@1.2.0
23
+ - @backstage/errors@1.2.4
24
+ - @backstage/types@1.1.1
25
+
3
26
  ## 0.18.4-next.1
4
27
 
5
28
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-backend__alpha",
3
- "version": "0.18.4-next.1",
3
+ "version": "0.18.4-next.2",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/config.d.ts CHANGED
@@ -68,6 +68,11 @@ export interface Config {
68
68
  caData?: string;
69
69
  /** @visibility secret */
70
70
  caFile?: string;
71
+ customResources?: Array<{
72
+ group: string;
73
+ apiVersion: string;
74
+ plural: string;
75
+ }>;
71
76
  }>;
72
77
  }
73
78
  | {
package/dist/index.cjs.js CHANGED
@@ -438,7 +438,7 @@ function runPeriodically(fn, delayMs) {
438
438
  }
439
439
 
440
440
  var name = "@backstage/plugin-kubernetes-backend";
441
- var version = "0.18.4-next.1";
441
+ var version = "0.18.4-next.2";
442
442
  var description = "A Backstage backend plugin that integrates towards Kubernetes";
443
443
  var backstage = {
444
444
  role: "backend-plugin",
@@ -530,7 +530,7 @@ var dependencies = {
530
530
  lodash: "^4.17.21",
531
531
  luxon: "^3.0.0",
532
532
  morgan: "^1.10.0",
533
- "node-fetch": "^2.6.7",
533
+ "node-fetch": "^2.7.0",
534
534
  "stream-buffers": "^3.0.2",
535
535
  winston: "^3.2.1",
536
536
  yn: "^4.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-backend",
3
- "version": "0.18.4-next.1",
3
+ "version": "0.18.4-next.2",
4
4
  "description": "A Backstage backend plugin that integrates towards Kubernetes",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -61,19 +61,19 @@
61
61
  "@aws-sdk/credential-providers": "^3.350.0",
62
62
  "@aws-sdk/signature-v4": "^3.347.0",
63
63
  "@azure/identity": "^4.0.0",
64
- "@backstage/backend-common": "^0.23.4-next.1",
65
- "@backstage/backend-plugin-api": "^0.7.1-next.1",
64
+ "@backstage/backend-common": "^0.23.4-next.2",
65
+ "@backstage/backend-plugin-api": "^0.8.0-next.2",
66
66
  "@backstage/catalog-client": "^1.6.5",
67
67
  "@backstage/catalog-model": "^1.5.0",
68
68
  "@backstage/config": "^1.2.0",
69
69
  "@backstage/errors": "^1.2.4",
70
70
  "@backstage/integration-aws-node": "^0.1.12",
71
- "@backstage/plugin-auth-node": "^0.4.18-next.1",
72
- "@backstage/plugin-catalog-node": "^1.12.5-next.1",
73
- "@backstage/plugin-kubernetes-common": "^0.8.2-next.0",
74
- "@backstage/plugin-kubernetes-node": "^0.1.17-next.1",
75
- "@backstage/plugin-permission-common": "^0.8.1-next.0",
76
- "@backstage/plugin-permission-node": "^0.8.1-next.1",
71
+ "@backstage/plugin-auth-node": "^0.5.0-next.2",
72
+ "@backstage/plugin-catalog-node": "^1.12.5-next.2",
73
+ "@backstage/plugin-kubernetes-common": "^0.8.2-next.1",
74
+ "@backstage/plugin-kubernetes-node": "^0.1.17-next.2",
75
+ "@backstage/plugin-permission-common": "^0.8.1-next.1",
76
+ "@backstage/plugin-permission-node": "^0.8.1-next.2",
77
77
  "@backstage/types": "^1.1.1",
78
78
  "@google-cloud/container": "^5.0.0",
79
79
  "@jest-mock/express": "^2.0.1",
@@ -91,17 +91,17 @@
91
91
  "lodash": "^4.17.21",
92
92
  "luxon": "^3.0.0",
93
93
  "morgan": "^1.10.0",
94
- "node-fetch": "^2.6.7",
94
+ "node-fetch": "^2.7.0",
95
95
  "stream-buffers": "^3.0.2",
96
96
  "winston": "^3.2.1",
97
97
  "yn": "^4.0.0"
98
98
  },
99
99
  "devDependencies": {
100
- "@backstage/backend-app-api": "^0.8.1-next.1",
101
- "@backstage/backend-test-utils": "^0.4.5-next.1",
102
- "@backstage/cli": "^0.27.0-next.1",
103
- "@backstage/plugin-permission-backend": "^0.5.47-next.1",
104
- "@backstage/plugin-permission-backend-module-allow-all-policy": "^0.1.20-next.1",
100
+ "@backstage/backend-app-api": "^0.8.1-next.2",
101
+ "@backstage/backend-test-utils": "^0.4.5-next.2",
102
+ "@backstage/cli": "^0.27.0-next.3",
103
+ "@backstage/plugin-permission-backend": "^0.5.47-next.2",
104
+ "@backstage/plugin-permission-backend-module-allow-all-policy": "^0.1.20-next.2",
105
105
  "@types/aws4": "^1.5.1",
106
106
  "msw": "^1.0.0",
107
107
  "supertest": "^6.1.3",