@backstage/plugin-kubernetes-backend 0.5.1-next.2 → 0.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @backstage/plugin-kubernetes-backend
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1ef98cfe48: add Azure Identity auth provider and AKS dashboard formatter
8
+ - b9f7ffb162: Add filtering to GKE cluster locator
9
+ - 447e060872: Add support for 'oidc' as authProvider for kubernetes authentication
10
+ and adds optional 'oidcTokenProvider' config value. This will allow
11
+ users to authenticate to kubernetes cluster using id tokens obtained
12
+ from the configured auth provider in their backstage instance.
13
+ - cfc0f19699: Updated dependency `fs-extra` to `10.1.0`.
14
+ - Updated dependencies
15
+ - @backstage/backend-common@0.13.3
16
+ - @backstage/plugin-kubernetes-common@0.2.10
17
+ - @backstage/config@1.0.1
18
+ - @backstage/catalog-model@1.0.2
19
+
3
20
  ## 0.5.1-next.2
4
21
 
5
22
  ### 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.5.1-next.2",
4
+ "version": "0.5.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -36,11 +36,11 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@azure/identity": "^2.0.4",
39
- "@backstage/backend-common": "^0.13.3-next.2",
40
- "@backstage/catalog-model": "^1.0.2-next.0",
41
- "@backstage/config": "^1.0.1-next.0",
39
+ "@backstage/backend-common": "^0.13.3",
40
+ "@backstage/catalog-model": "^1.0.2",
41
+ "@backstage/config": "^1.0.1",
42
42
  "@backstage/errors": "^1.0.0",
43
- "@backstage/plugin-kubernetes-common": "^0.2.10-next.1",
43
+ "@backstage/plugin-kubernetes-common": "^0.2.10",
44
44
  "@google-cloud/container": "^3.0.0",
45
45
  "@kubernetes/client-node": "^0.16.0",
46
46
  "@types/express": "^4.17.6",
@@ -61,7 +61,7 @@
61
61
  "yn": "^4.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/cli": "^0.17.1-next.2",
64
+ "@backstage/cli": "^0.17.1",
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": "586464f803f55325dd11aca1cb4bc014fd80f04d"
73
+ "gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
74
74
  }