@backstage/plugin-kubernetes-node 0.1.4-next.3 → 0.1.4

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 +16 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - a775596: Enabled a way to include custom auth metadata info on the clusters endpoint. If you want to implement a Kubernetes auth strategy which requires surfacing custom auth metadata to the frontend, use the new presentAuthMetadata method on the AuthenticationStrategy interface.
8
+ - 8472188: Added or fixed the `repository` field in `package.json`.
9
+ - 043cf88: The `ClusterDetails` type now has a `title` field, which should be a
10
+ human-readable name.
11
+ - cceed8a: Introduced `PinnipedHelper` class to enable authentication to Kubernetes clusters through Pinniped
12
+ - f180cba: Enabling authentication to kubernetes clusters with mTLS x509 client certs
13
+ - Updated dependencies
14
+ - @backstage/plugin-kubernetes-common@0.7.4
15
+ - @backstage/backend-plugin-api@0.6.10
16
+ - @backstage/catalog-model@1.4.4
17
+ - @backstage/types@1.1.1
18
+
3
19
  ## 0.1.4-next.3
4
20
 
5
21
  ### Patch Changes
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.3",
4
+ "version": "0.1.4",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -27,11 +27,11 @@
27
27
  "postpack": "backstage-cli package postpack"
28
28
  },
29
29
  "devDependencies": {
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
+ "@backstage/backend-app-api": "^0.5.11",
31
+ "@backstage/backend-common": "^0.21.0",
32
+ "@backstage/backend-test-utils": "^0.3.0",
33
+ "@backstage/cli": "^0.25.2",
34
+ "@backstage/plugin-kubernetes-backend": "^0.15.0",
35
35
  "msw": "^1.3.1",
36
36
  "supertest": "^6.1.3"
37
37
  },
@@ -39,9 +39,9 @@
39
39
  "dist"
40
40
  ],
41
41
  "dependencies": {
42
- "@backstage/backend-plugin-api": "^0.6.10-next.3",
43
- "@backstage/catalog-model": "^1.4.4-next.0",
44
- "@backstage/plugin-kubernetes-common": "^0.7.4-next.2",
42
+ "@backstage/backend-plugin-api": "^0.6.10",
43
+ "@backstage/catalog-model": "^1.4.4",
44
+ "@backstage/plugin-kubernetes-common": "^0.7.4",
45
45
  "@backstage/types": "^1.1.1",
46
46
  "@kubernetes/client-node": "^0.20.0",
47
47
  "node-fetch": "^2.6.7",