docs/releases/v1.14.0-next.1-changelog.md
navigate event will now include the route parameters as attributes of the navigate event.generated.ts file name and a warning header at the top, to highlight that they should not be edited by hand.280ec10c18e: Added Pod logs components for Kubernetes plugin
BREAKING: kubernetesProxyApi for custom plugins built with components from the Kubernetes plugin apis, kubernetesProxyApi should be added to the plugin's API list.
...
export const kubernetesPlugin = createPlugin({
id: 'kubernetes',
apis: [
...
createApiFactory({
api: kubernetesProxyApiRef,
deps: {
kubernetesApi: kubernetesApiRef,
},
factory: ({ kubernetesApi }) =>
new KubernetesProxyClient({
kubernetesApi,
}),
}),
BREAKING: KubernetesDrawer is now called KubernetesStructuredMetadataTableDrawer so that we can do more than just show StructuredMetadataTable
import { KubernetesDrawer } from "@backstage/plugin-kubernetes"
should now be:
import { KubernetesStructuredMetadataTableDrawer } from "@backstage/plugin-kubernetes"
f4114f02d49: Allow fetching pod metrics limited by a labelSelector.
This is used by the Kubernetes tab on a components' page and leads to much smaller responses being received from Kubernetes, especially with larger Kubernetes clusters.
575d9178eff: Added a System Icon for resource entities. This can be obtained using:
useApp().getSystemIcon('kind:resource');
Updated dependencies
.generated.ts extensiontsc:fullEntityRelationsGraphProps to Catalog Graph Page@rjsf/*RouterOptions::actions and ScaffolderActionsExtensionPoint::addActions to allow any kind of action being assigned to it.RouterOptions::actions and ScaffolderActionsExtensionPoint::addActions to allow any kind of action being assigned to it.22963209d23: Added the possibility to customize the check description in the scorecard component.
CheckResultRenderer type now exposes an optional description method that allows to overwrite the description with a different string or a React component for a provided check result.Until now only the BooleanCheck element could be overridden, but from now on it's also possible to override the description for a check.
As an example, the description could change depending on the check result. Refer to the README file for more details
Updated dependencies