@backstage/plugin-kubernetes 0.7.0 → 0.7.1-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,32 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.7.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f563b86a5b: Adds namespace column to Kubernetes error reporting table
8
+ - Updated dependencies
9
+ - @backstage/plugin-catalog-react@1.1.3-next.2
10
+ - @backstage/core-components@0.11.0-next.2
11
+
12
+ ## 0.7.1-next.1
13
+
14
+ ### Patch Changes
15
+
16
+ - 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.
17
+ - Updated dependencies
18
+ - @backstage/core-components@0.10.1-next.1
19
+ - @backstage/plugin-catalog-react@1.1.3-next.1
20
+
21
+ ## 0.7.1-next.0
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @backstage/core-plugin-api@1.0.5-next.0
27
+ - @backstage/plugin-catalog-react@1.1.3-next.0
28
+ - @backstage/core-components@0.10.1-next.0
29
+
3
30
  ## 0.7.0
4
31
 
5
32
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -9,7 +9,7 @@ import React from 'react';
9
9
 
10
10
  declare const kubernetesPlugin: _backstage_core_plugin_api.BackstagePlugin<{
11
11
  entityContent: _backstage_core_plugin_api.RouteRef<undefined>;
12
- }, {}>;
12
+ }, {}, {}>;
13
13
  /**
14
14
  * Props of EntityKubernetesContent
15
15
  *
@@ -173,6 +173,7 @@ declare type DetectedErrorsByCluster = Map<string, DetectedError[]>;
173
173
  interface DetectedError {
174
174
  severity: ErrorSeverity;
175
175
  cluster: string;
176
+ namespace: string;
176
177
  kind: ErrorDetectableKind;
177
178
  names: string[];
178
179
  message: string[];