@backstage/plugin-kubernetes 0.7.0-next.3 → 0.7.1-next.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 +46 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +353 -177
- package/dist/index.esm.js.map +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.7.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 860ed68343: Fixed bug in CronJobsAccordions component that causes an error when cronjobs use a kubernetes alias, such as `@hourly` or `@daily` instead of standard cron syntax.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-components@0.10.1-next.1
|
|
10
|
+
- @backstage/plugin-catalog-react@1.1.3-next.1
|
|
11
|
+
|
|
12
|
+
## 0.7.1-next.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/core-plugin-api@1.0.5-next.0
|
|
18
|
+
- @backstage/plugin-catalog-react@1.1.3-next.0
|
|
19
|
+
- @backstage/core-components@0.10.1-next.0
|
|
20
|
+
|
|
21
|
+
## 0.7.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- f5c9730639: Add `localKubectlProxy` cluster locator method to make local development simpler to setup.
|
|
26
|
+
|
|
27
|
+
Consolidated no-op server side auth decorators.
|
|
28
|
+
The following Kubernetes auth decorators are now one class (`ServerSideKubernetesAuthProvider`):
|
|
29
|
+
|
|
30
|
+
- `AwsKubernetesAuthProvider`
|
|
31
|
+
- `AzureKubernetesAuthProvider`
|
|
32
|
+
- `ServiceAccountKubernetesAuthProvider`
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 3ec294a186: expose detectErrors function publicly
|
|
37
|
+
- a70869e775: Updated dependency `msw` to `^0.43.0`.
|
|
38
|
+
- 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
|
|
39
|
+
- 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
|
|
40
|
+
- eadb3a8d2e: Updated dependency `@kubernetes/client-node` to `^0.17.0`.
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
- @backstage/core-components@0.10.0
|
|
43
|
+
- @backstage/catalog-model@1.1.0
|
|
44
|
+
- @backstage/plugin-kubernetes-common@0.4.0
|
|
45
|
+
- @backstage/core-plugin-api@1.0.4
|
|
46
|
+
- @backstage/plugin-catalog-react@1.1.2
|
|
47
|
+
- @backstage/theme@0.2.16
|
|
48
|
+
|
|
3
49
|
## 0.7.0-next.3
|
|
4
50
|
|
|
5
51
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED