@backstage/plugin-kubernetes-backend 0.11.6-next.3 → 0.12.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.
- package/CHANGELOG.md +57 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +265 -213
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +77 -73
- package/package.json +17 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-backend
|
|
2
2
|
|
|
3
|
+
## 0.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-auth-node@0.3.1
|
|
9
|
+
- @backstage/backend-plugin-api@0.6.4
|
|
10
|
+
- @backstage/plugin-permission-node@0.7.15
|
|
11
|
+
- @backstage/backend-common@0.19.6
|
|
12
|
+
- @backstage/plugin-catalog-node@1.4.5
|
|
13
|
+
|
|
14
|
+
## 0.12.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 0ad36158d980: Integrators can now bring their own auth strategies through the use of the `addAuthStrategy` method on `KubernetesBuilder`.
|
|
19
|
+
|
|
20
|
+
**BREAKING** on the slight chance you were using the `setAuthTranslatorMap` method on `KubernetesBuilder`, it has been removed along with the entire `KubernetesAuthTranslator` interface. This notion has been replaced with the more focused concept of an `AuthenticationStrategy`. Converting a translator to a strategy should not be especially difficult.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- ccf00accb408: Add AWS Annotations to Kubernetes Cluster Resource
|
|
25
|
+
- 72390ab2670d: Handle Proxy WS upgrade manually for WS handshakes
|
|
26
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
27
|
+
|
|
28
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
29
|
+
|
|
30
|
+
```ts
|
|
31
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
32
|
+
|
|
33
|
+
backend.add(examplePlugin);
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
It should be migrated to this:
|
|
37
|
+
|
|
38
|
+
```ts
|
|
39
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
- 024b2b66a332: Fixed a bug where requests to the proxy endpoint would fail for clusters with `caFile` configured
|
|
43
|
+
- a8a614ba0d07: Minor `package.json` update.
|
|
44
|
+
- 47ea122590f5: fix "undefined" kind for custom resources
|
|
45
|
+
- Updated dependencies
|
|
46
|
+
- @backstage/plugin-kubernetes-common@0.6.6
|
|
47
|
+
- @backstage/backend-common@0.19.5
|
|
48
|
+
- @backstage/plugin-auth-node@0.3.0
|
|
49
|
+
- @backstage/config@1.1.0
|
|
50
|
+
- @backstage/catalog-client@1.4.4
|
|
51
|
+
- @backstage/catalog-model@1.4.2
|
|
52
|
+
- @backstage/errors@1.2.2
|
|
53
|
+
- @backstage/plugin-permission-common@0.7.8
|
|
54
|
+
- @backstage/types@1.1.1
|
|
55
|
+
- @backstage/plugin-permission-node@0.7.14
|
|
56
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
57
|
+
- @backstage/plugin-catalog-node@1.4.4
|
|
58
|
+
- @backstage/integration-aws-node@0.1.6
|
|
59
|
+
|
|
3
60
|
## 0.11.6-next.3
|
|
4
61
|
|
|
5
62
|
### Patch Changes
|