@backstage/plugin-kubernetes 0.7.8 → 0.7.9-next.0

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,18 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.7.9-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-react@1.4.0-next.0
9
+ - @backstage/core-plugin-api@1.4.1-next.0
10
+ - @backstage/catalog-model@1.2.1-next.0
11
+ - @backstage/config@1.0.6
12
+ - @backstage/core-components@0.12.5-next.0
13
+ - @backstage/theme@0.2.17
14
+ - @backstage/plugin-kubernetes-common@0.6.1-next.0
15
+
3
16
  ## 0.7.8
4
17
 
5
18
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -154,25 +154,25 @@ declare const ErrorPanel: ({ entityName, errorMessage, clustersWithErrors, }: Er
154
154
  /**
155
155
  * Severity of the error, where 10 is critical and 0 is very low.
156
156
  *
157
- * @alpha
157
+ * @public
158
158
  */
159
159
  declare type ErrorSeverity = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
160
160
  /**
161
161
  * Kubernetes kinds that errors might be reported by the plugin
162
162
  *
163
- * @alpha
163
+ * @public
164
164
  */
165
165
  declare type ErrorDetectableKind = 'Pod' | 'Deployment' | 'HorizontalPodAutoscaler';
166
166
  /**
167
167
  * A list of errors keyed by Cluster name
168
168
  *
169
- * @alpha
169
+ * @public
170
170
  */
171
171
  declare type DetectedErrorsByCluster = Map<string, DetectedError[]>;
172
172
  /**
173
173
  * Represents an error found on a Kubernetes object
174
174
  *
175
- * @alpha
175
+ * @public
176
176
  */
177
177
  interface DetectedError {
178
178
  severity: ErrorSeverity;
@@ -187,7 +187,7 @@ interface DetectedError {
187
187
  * For each cluster try to find errors in each of the object types provided
188
188
  * returning a map of cluster names to errors in that cluster
189
189
  *
190
- * @alpha
190
+ * @public
191
191
  */
192
192
  declare const detectErrors: (objects: ObjectsByEntityResponse) => DetectedErrorsByCluster;
193
193