@backstage/plugin-kubernetes 0.9.0 → 0.9.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a3360ecd0d7f: Fix cyclical dependency in built output
8
+
3
9
  ## 0.9.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.esm.js CHANGED
@@ -11,7 +11,6 @@ import lodash from 'lodash';
11
11
  import { DateTime } from 'luxon';
12
12
  import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
13
13
  import { Skeleton } from '@material-ui/lab';
14
- import { kubernetesProxyApiRef as kubernetesProxyApiRef$1 } from '@backstage/plugin-kubernetes';
15
14
  import useAsync from 'react-use/lib/useAsync';
16
15
  import SubjectIcon from '@material-ui/icons/Subject';
17
16
  import CloseIcon from '@material-ui/icons/Close';
@@ -705,7 +704,7 @@ const detectErrors = (objects) => {
705
704
  };
706
705
 
707
706
  const usePodLogs = ({ podScope }) => {
708
- const kubernetesProxyApi = useApi(kubernetesProxyApiRef$1);
707
+ const kubernetesProxyApi = useApi(kubernetesProxyApiRef);
709
708
  return useAsync(async () => {
710
709
  return await kubernetesProxyApi.getPodLogs({
711
710
  podName: podScope.podName,