# Release v1.16.0 ## @backstage/core-app-api@1.9.0 ### Minor Changes - a77ddf7ccd71: add login in popup options to config popup width and height ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 ## @backstage/plugin-catalog@1.12.0 ### Minor Changes - eae0352d3864: Tables which use `EntityTableProps` now have an additional `tableOptions` prop which can be used to provide additional table options to these components. ### Patch Changes - 294b1629de28: Display a warning alert if relations are defined, which don't exist in the catalog. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/integration-react@1.1.15 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-scaffolder-common@1.3.2 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 ## @backstage/plugin-catalog-backend@1.11.0 ### Minor Changes - f06f0e46ba88: Support placeholder resolvers in the CatalogPlugin, also moves `PlaceholderResolver` and related types from `@backstage/plugin-catalog-backend` to `@backstage/plugin-catalog-node`. ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-events-node@0.2.8 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 - @backstage/plugin-scaffolder-common@1.3.2 - @backstage/plugin-search-backend-module-catalog@0.1.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.0 ### Minor Changes - b1cc10696f2f: **BREAKING** Allow incremental event handlers to be async; Force event handler to indicate if it made a change. Instead of returning `null` or `undefined` from an event handler to indicate no-oop, instead return the value { type: "ignored" }. **before** ```javascript import { createDelta, shouldIgnore } from "./my-delta-creater"; eventHandler: { onEvent(params) { if (shouldIgnore(params)) { return; } return createDelta(params); } } ``` **after** ```javascript import { createDelta, shouldIgnore } from "./my-delta-creater"; eventHandler: { async onEvent(params) { if (shouldIgnore(params) { return { type: "ignored" }; } // code to create delta can now be async if needed return await createDelta(params); } } ``` ### Patch Changes - e1d615757f48: Update readme and instructions - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-backend@1.11.0 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-events-node@0.2.8 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-catalog-node@1.4.0 ### Minor Changes - f06f0e46ba88: Support placeholder resolvers in the CatalogPlugin, also moves `PlaceholderResolver` and related types from `@backstage/plugin-catalog-backend` to `@backstage/plugin-catalog-node`. ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-catalog-react@1.8.0 ### Minor Changes - eae0352d3864: Tables which use `EntityTableProps` now have an additional `tableOptions` prop which can be used to provide additional table options to these components. ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-react@0.4.14 ## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.0 ### Minor Changes - 0a7e7c5d0c04: **BREAKING** This change updates the configuration of the confluence-to-markdown action so that it does not conflict with other confluence plguins. Currently many plugins make use of the `confluence.auth` configuration. However, only the confluence-to-markdown action uses the `confluence.auth` as a string. This change updates it so that `confluence.auth` is an object. ## Required Changes Below are examples for updating `bearer`, `basic`, and `userpass` implementations. For `bearer`: Before: ```yaml confluence: baseUrl: 'https://confluence.example.com' auth: 'bearer' token: '${CONFLUENCE_TOKEN}' ``` After: ```yaml confluence: baseUrl: 'https://confluence.example.com' auth: type: 'bearer' token: '${CONFLUENCE_TOKEN}' ``` For `basic`: Before: ```yaml confluence: baseUrl: 'https://confluence.example.com' auth: 'basic' token: '${CONFLUENCE_TOKEN}' email: 'example@company.org' ``` After: ```yaml confluence: baseUrl: 'https://confluence.example.com' auth: type: 'basic' token: '${CONFLUENCE_TOKEN}' email: 'example@company.org' ``` For `userpass` Before: ```yaml confluence: baseUrl: 'https://confluence.example.com' auth: 'userpass' username: 'your-username' password: 'your-password' ``` After: ```yaml confluence: baseUrl: 'https://confluence.example.com' auth: type: 'userpass' username: 'your-username' password: 'your-password' ``` ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-scaffolder-backend@1.15.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/app-defaults@1.4.1 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-app-api@1.9.0 - @backstage/core-plugin-api@1.5.3 - @backstage/plugin-permission-react@0.4.14 ## @backstage/backend-app-api@0.4.5 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-node@0.7.10 ## @backstage/backend-common@0.19.1 ### Patch Changes - 787ddcc5ef99: use `Readable.from` to explicitly convert the `buffer` from `node-fetch` to a `Readable` stream - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-app-api@0.4.5 - @backstage/backend-dev-utils@0.1.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2 - @backstage/integration@1.5.1 - @backstage/integration-aws-node@0.1.5 - @backstage/types@1.1.0 ## @backstage/backend-defaults@0.1.12 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-app-api@0.4.5 - @backstage/backend-plugin-api@0.5.4 ## @backstage/backend-plugin-api@0.5.4 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.4 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-common@0.7.7 ## @backstage/backend-tasks@0.5.4 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/backend-test-utils@0.1.39 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-app-api@0.4.5 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 ## @backstage/catalog-client@1.4.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/catalog-model@1.4.1 ## @backstage/catalog-model@1.4.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/cli@0.22.9 ### Patch Changes - 6adb6f41711a: Fixed the `--alwaysYarnPack` flag on the`backstage-cli build-workspace` command. - 4edd1ef71453: semver upgrade to 7.5.3 - ff45cb559e49: Updated dependency `esbuild` to `^0.18.0`. - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/errors@1.2.1 - @backstage/cli-node@0.1.2 - @backstage/catalog-model@1.4.1 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2 - @backstage/eslint-plugin@0.1.3 - @backstage/integration@1.5.1 - @backstage/release-manifests@0.0.9 - @backstage/types@1.1.0 ## @backstage/cli-node@0.1.2 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - Updated dependencies - @backstage/errors@1.2.1 - @backstage/cli-common@0.1.12 - @backstage/types@1.1.0 ## @backstage/codemods@0.1.45 ### Patch Changes - 325a32e9476e: Updated dependency `jscodeshift` to `^0.15.0`. - Updated dependencies - @backstage/cli-common@0.1.12 ## @backstage/config-loader@1.3.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/core-components@0.13.3 ### Patch Changes - 7e0f558fbc37: The `Skip to content` button on click focuses on the main article tag and skips the `h1` tag. Users are not able to identify which page they are on currently. Now it's changed the behaviour of the button and focuses on the `h1` tag on the page. - 68531cc70e1f: Break some internal circular import chains - 4722c948c217: Parse unicode characters in name for avatar component - 015439b5b6ca: Updated dependency `rc-progress` to `3.4.2`. - 8174cf4c0edf: Fixing MUI / Material UI references - 4317b1c2f430: Remove zooming in restrictions in the catalog graph - a011d2316a58: Fix keyboard navigation & focus highlight on Select component. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/version-bridge@1.0.4 ## @backstage/core-plugin-api@1.5.3 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - 13426ebd1235: Change `IconComponent` type to be compatible with Material UI v5 icons. - Updated dependencies - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 ## @backstage/create-app@0.5.3 ### Patch Changes - 76b83a4422bb: Post-create message - added instruction to run `yarn install` when app was created with `--skip-install` - d72e2eeba6f1: Bumped create-app version. - e3ce5dd3f89a: add cy.\*\*.should to cypress eslintrc - f920a61031c5: Enable specifying an external application template when using the `create-app` CLI command. - 294b1629de28: Display a warning alert if relations are defined, which don't exist in the catalog. - 4f7292c74dff: Updated included Dockerfile to include `g++`. Also updated the comments to note that some of the dependencies are also needed by isolated-vm - Updated dependencies - @backstage/cli-common@0.1.12 ## @backstage/dev-utils@1.0.17 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-app-api@1.9.0 - @backstage/test-utils@1.4.1 - @backstage/core-plugin-api@1.5.3 - @backstage/app-defaults@1.4.1 - @backstage/catalog-model@1.4.1 - @backstage/integration-react@1.1.15 ## @backstage/errors@1.2.1 ### Patch Changes - e205b3e6ede8: Set `this.name` in all error classes that extend `CustomErrorBase` class to their actual name - Updated dependencies - @backstage/types@1.1.0 ## @backstage/integration@1.5.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/config@1.0.8 ## @backstage/integration-aws-node@0.1.5 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/config@1.0.8 ## @backstage/integration-react@1.1.15 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 ## @backstage/repo-tools@0.3.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/cli-node@0.1.2 - @backstage/cli-common@0.1.12 ## @techdocs/cli@1.4.4 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/catalog-model@1.4.1 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/plugin-techdocs-node@1.7.3 ## @backstage/test-utils@1.4.1 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-app-api@1.9.0 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-react@0.4.14 ## @backstage/theme@0.4.1 ### Patch Changes - 4f28914d9f0e: Overwrite `PaletteOptions` & `ThemeOptions` type to allow use of `createTheme` from `@backstage/theme` as well as `@material-ui/core/styles` with the same type. Also replaced the default `CSSBaseline` with v4 instead of v5 for better backwards compatibility for now. - 41c5aa0ab589: Applying the modified `theme.spacing` method only to overrides instead of replacing it in the whole theme. - 9395baa82413: You can now customize the typography of your theme by passing in your own custom typography defaults - 8174cf4c0edf: Fixing MUI / Material UI references - f0444f094396: Removed the hard coded color and background color in the `MuiChip` overrides so that they work better with custom themes - 874c3e8bf909: Override the spacing to a v5 compliant method ## @backstage/plugin-adr@0.6.3 ### Patch Changes - 2b4513abb784: fixed error with date parsing. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/plugin-adr-common@0.2.11 - @backstage/catalog-model@1.4.1 - @backstage/integration-react@1.1.15 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 ## @backstage/plugin-adr-backend@0.3.5 ### Patch Changes - a8805a9a4f25: Added support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-adr-common@0.2.11 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-adr-common@0.2.11 ### Patch Changes - 2b4513abb784: fixed error with date parsing. - Updated dependencies - @backstage/catalog-model@1.4.1 - @backstage/integration@1.5.1 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-airbrake@0.3.20 ### Patch Changes - 7b6033587650: Added documentation for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/test-utils@1.4.1 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/dev-utils@1.0.17 ## @backstage/plugin-airbrake-backend@0.2.20 ### Patch Changes - a95bb64e461a: Added support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 ## @backstage/plugin-allure@0.1.36 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-analytics-module-ga@0.1.31 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 ## @backstage/plugin-analytics-module-ga4@0.1.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 ## @backstage/plugin-apache-airflow@0.2.13 ### Patch Changes - Updated dependencies - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-api-docs@0.9.6 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/plugin-catalog@1.12.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-apollo-explorer@0.1.13 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-app-backend@0.3.47 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2 - @backstage/types@1.1.0 ## @backstage/plugin-auth-backend@0.18.5 ### Patch Changes - c27ae5004fc2: Support for Token Endpoint Auth Method for OIDC Provider - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 ## @backstage/plugin-auth-node@0.2.16 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 ## @backstage/plugin-azure-devops@0.3.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-azure-devops-common@0.3.0 ## @backstage/plugin-azure-devops-backend@0.3.26 ### Patch Changes - ae261e79d256: Added alpha support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-azure-devops-common@0.3.0 ## @backstage/plugin-azure-sites@0.1.9 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-azure-sites-common@0.1.0 ## @backstage/plugin-azure-sites-backend@0.1.9 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 - @backstage/plugin-azure-sites-common@0.1.0 ## @backstage/plugin-badges@0.2.44 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-badges-backend@0.2.2 ### Patch Changes - 2bbdcb4154c3: Added support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 ## @backstage/plugin-bazaar@0.2.11 ### Patch Changes - Updated dependencies - @backstage/cli@0.22.9 - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/plugin-catalog@1.12.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-bazaar-backend@0.2.10 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 ## @backstage/plugin-bitbucket-cloud-common@0.2.8 ### Patch Changes - Updated dependencies - @backstage/integration@1.5.1 ## @backstage/plugin-bitrise@0.1.47 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-catalog-backend-module-aws@0.2.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/integration-aws-node@0.1.5 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-kubernetes-common@0.6.5 ## @backstage/plugin-catalog-backend-module-azure@0.1.18 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-catalog-backend-module-bitbucket@0.2.14 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-bitbucket-cloud-common@0.2.8 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.14 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/plugin-bitbucket-cloud-common@0.2.8 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-catalog-backend-module-bitbucket-server@0.1.12 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 ## @backstage/plugin-catalog-backend-module-gerrit@0.1.15 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 ## @backstage/plugin-catalog-backend-module-github@0.3.2 ### Patch Changes - b01b869d7158: fixed event handler to respect configured organization - 68531cc70e1f: Break some internal circular import chains - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-backend@1.11.0 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-catalog-backend-module-gitlab@0.2.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 ## @backstage/plugin-catalog-backend-module-ldap@0.5.14 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-catalog-backend-module-msgraph@0.5.6 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-catalog-backend-module-openapi@0.1.13 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-backend@1.11.0 - @backstage/plugin-catalog-node@1.4.0 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-catalog-backend-module-puppetdb@0.1.4 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/plugin-catalog-backend-module-unprocessed@0.1.1 ### Patch Changes - a8fa79ccc105: Fix and improve documentation for the unprocessed entities modules. - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/plugin-auth-node@0.2.16 ## @backstage/plugin-catalog-common@1.0.15 ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.4.1 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-catalog-graph@0.2.32 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-catalog-graphql@0.3.22 ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/plugin-catalog-import@0.9.10 ### Patch Changes - 36b7edf39585: Add a "View Component" button as the primary CTA after registering a new component using a link to catalog-info.yaml - Updated dependencies - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/integration-react@1.1.15 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-catalog-unprocessed-entities@0.1.1 ### Patch Changes - 2c4869473155: The Catalog Unprocessed Entities plugin can now be integrated as a tab within the DevTools plugin - Added an export for `UnprocessedEntitiesContent` - Updated the `README` with images of the features - Adjusted the styles to fill in the available space - Set the table page size to 20 as 40 was causing errors in the browser console - 57585d89f926: Export some types and API items. This allows people to call the API from different places with the ApiRef, as well as completely customize the client if required. Check the [README.md](https://github.com/backstage/backstage/blob/master/plugins/catalog-unprocessed-entities/README.md) to note what needs to be added in order to use the new `catalogUnprocessedEntitiesApiRef` exported function. - a8fa79ccc105: Fix and improve documentation for the unprocessed entities modules. - 267396f45bd0: Corrected the installation instructions. - 7a9c8a9cd0ce: Fixed spacing for success message - e6f50426333b: update some peer dependencies to silence yarn install - 77b408fad872: install command points to correct package name - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-cicd-statistics@0.1.22 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-cicd-statistics-module-gitlab@0.1.16 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-cicd-statistics@0.1.22 ## @backstage/plugin-circleci@0.3.20 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-cloudbuild@0.3.20 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-code-climate@0.1.20 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-code-coverage@0.2.13 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 ## @backstage/plugin-code-coverage-backend@0.2.13 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 ## @backstage/plugin-codescene@0.1.15 ### Patch Changes - 015439b5b6ca: Updated dependency `rc-progress` to `3.4.2`. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 ## @backstage/plugin-config-schema@0.1.43 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/plugin-cost-insights@0.12.9 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-cost-insights-common@0.1.1 ## @backstage/plugin-devtools@0.1.2 ### Patch Changes - 5969639fd075: Allow specifying custom title for `DevToolsLayout` - 2c4869473155: Updated the `README` with instructions on how to integrate the Catalog Unprocessed Entities plugin as a tab within DevTools - e6f50426333b: update some peer dependencies to silence yarn install - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/types@1.1.0 - @backstage/plugin-devtools-common@0.1.2 - @backstage/plugin-permission-react@0.4.14 ## @backstage/plugin-devtools-backend@0.1.2 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - ae261e79d256: Added alpha support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-devtools-common@0.1.2 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 ## @backstage/plugin-devtools-common@0.1.2 ### Patch Changes - Updated dependencies - @backstage/types@1.1.0 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-dynatrace@7.0.0 ### Patch Changes - 3424cbfe5f4a: updated the link that the "View Entity in Dynatrace" redirects the user to. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-entity-feedback@0.2.3 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-entity-feedback-common@0.1.1 ## @backstage/plugin-entity-feedback-backend@0.1.5 ### Patch Changes - 5c1c10adac8f: Added support for the new backend system - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-entity-feedback-common@0.1.1 ## @backstage/plugin-entity-validation@0.1.5 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-catalog-common@1.0.15 ## @backstage/plugin-events-backend@0.2.8 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-module-aws-sqs@0.2.2 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-module-azure@0.1.9 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-module-bitbucket-cloud@0.1.9 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-module-gerrit@0.1.9 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-module-github@0.1.9 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-module-gitlab@0.1.9 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-backend-test-utils@0.1.9 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.2.8 ## @backstage/plugin-events-node@0.2.8 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 ## @backstage/plugin-explore@0.4.6 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-explore-common@0.0.1 - @backstage/plugin-explore-react@0.0.30 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 ## @backstage/plugin-explore-backend@0.0.9 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-explore-common@0.0.1 - @backstage/plugin-search-backend-module-explore@0.1.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-explore-react@0.0.30 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3 - @backstage/plugin-explore-common@0.0.1 ## @backstage/plugin-firehydrant@0.2.4 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-fossa@0.2.52 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-gcalendar@0.3.16 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-gcp-projects@0.3.39 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-git-release-manager@0.3.33 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/integration@1.5.1 ## @backstage/plugin-github-actions@0.6.1 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/integration@1.5.1 - @backstage/integration-react@1.1.15 ## @backstage/plugin-github-deployments@0.1.51 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/integration@1.5.1 - @backstage/integration-react@1.1.15 ## @backstage/plugin-github-issues@0.2.9 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/integration@1.5.1 ## @backstage/plugin-github-pull-requests-board@0.1.14 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/integration@1.5.1 ## @backstage/plugin-gitops-profiles@0.3.38 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 ## @backstage/plugin-gocd@0.1.26 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-graphiql@0.2.52 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-graphql-backend@0.1.37 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 - @backstage/plugin-catalog-graphql@0.3.22 ## @backstage/plugin-graphql-voyager@0.1.5 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-home@0.5.4 ### Patch Changes - 88c62048fcbd: fix: update plugin home dependency for `@rjsf/material-ui` to `@rjsf/material-ui-v5` - 0b89ca8ce24a: Add possibility to customize the settings widget for different properties by using the `uiSchema` provided by the json-schema. More information here: - b8ebd3d2e4e5: Fix missing column breakpoints in `CustomHompageGrid` - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/plugin-home-react@0.1.1 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 ## @backstage/plugin-home-react@0.1.1 ### Patch Changes - 0b89ca8ce24a: Add possibility to customize the settings widget for different properties by using the `uiSchema` provided by the json-schema. More information here: - Updated dependencies - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-ilert@0.2.9 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-jenkins@0.8.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-jenkins-common@0.1.17 ## @backstage/plugin-jenkins-backend@0.2.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-jenkins-common@0.1.17 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 ## @backstage/plugin-jenkins-common@0.1.17 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-kafka@0.3.20 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 ## @backstage/plugin-kafka-backend@0.2.40 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 ## @backstage/plugin-kubernetes@0.9.3 ### Patch Changes - d62fc3fe85ba: Make pod drawer headings consistent - cc27fa4a1aac: Changed Google cloud auth scope to read-only. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-kubernetes-common@0.6.5 ## @backstage/plugin-kubernetes-backend@0.11.2 ### Patch Changes - 4db037c20148: Replace reference to deprecated import - c2e530653539: Add WebSocket support to `kubernetes-backend` proxy. - be6395601d1f: Proxy endpoint supports cluster URLs with subpath - 47154c8ddba6: Fixed a bug where the proxy endpoint would error when used in combination with a local kubectl proxy process and a token-based auth strategy on-cluster. - faac6b7425b2: Update readme with a valid link to k8s documentation - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration-aws-node@0.1.5 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-kubernetes-common@0.6.5 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 ## @backstage/plugin-kubernetes-common@0.6.5 ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.4.1 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-lighthouse@0.4.5 ### Patch Changes - cb200dbb8038: Added more verbose components (used to render `null`) when no audits for a website corresponding to the provided url were found. Added `Create New Audit` button for the `AuditListForEntity` component used by `EntityLighthouseContent` and `EmbeddedRouter`. Removed error alert from `errorApi` if error was due to no audits being found for a website (empty database query result). - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-lighthouse-common@0.1.2 ## @backstage/plugin-lighthouse-backend@0.2.3 ### Patch Changes - 402749b00531: Added support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-lighthouse-common@0.1.2 ## @backstage/plugin-linguist@0.1.5 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-linguist-common@0.1.0 ## @backstage/plugin-linguist-backend@0.3.1 ### Patch Changes - ae261e79d256: Added alpha support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-linguist-common@0.1.0 ## @backstage/plugin-microsoft-calendar@0.1.5 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-newrelic@0.3.38 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-newrelic-dashboard@0.2.13 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-nomad@0.1.1 ### Patch Changes - 68531cc70e1f: Break some internal circular import chains - e6f50426333b: update some peer dependencies to silence yarn install - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 ## @backstage/plugin-nomad-backend@0.1.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 ## @backstage/plugin-octopus-deploy@0.2.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-org@0.6.10 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-org-react@0.1.9 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-pagerduty@0.6.1 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/plugin-home-react@0.1.1 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-periskop@0.1.18 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-periskop-backend@0.1.18 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 ## @backstage/plugin-permission-backend@0.5.22 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 ## @backstage/plugin-permission-common@0.7.7 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 ## @backstage/plugin-permission-node@0.7.10 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-permission-react@0.4.14 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-playlist@0.1.12 ### Patch Changes - 68531cc70e1f: Break some internal circular import chains - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-react@0.4.14 - @backstage/plugin-playlist-common@0.1.8 - @backstage/plugin-search-react@1.6.3 ## @backstage/plugin-playlist-backend@0.3.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 - @backstage/plugin-playlist-common@0.1.8 ## @backstage/plugin-playlist-common@0.1.8 ### Patch Changes - Updated dependencies - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-proxy-backend@0.2.41 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 ## @backstage/plugin-puppetdb@0.1.3 ### Patch Changes - e6f50426333b: update some peer dependencies to silence yarn install - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-rollbar@0.4.20 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-rollbar-backend@0.1.44 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 ## @backstage/plugin-scaffolder@1.14.1 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-scaffolder-react@1.5.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/integration-react@1.1.15 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-react@0.4.14 - @backstage/plugin-scaffolder-common@1.3.2 ## @backstage/plugin-scaffolder-backend@1.15.1 ### Patch Changes - 600be804927d: Indicate the name of the option that is being deprecated in task deprecation warning. - ff45cb559e49: Updated dependency `esbuild` to `^0.18.0`. - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-backend@1.11.0 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 - @backstage/plugin-scaffolder-common@1.3.2 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.23 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-scaffolder-backend@1.15.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.2.2 ### Patch Changes - dd367967e2e1: Fixed a bug in `gitlab:group:ensureExists` where `repos` was always set as the root group. - Updated dependencies - @backstage/errors@1.2.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/plugin-scaffolder-backend-module-rails@0.4.16 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-scaffolder-backend@1.15.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/plugin-scaffolder-backend-module-sentry@0.1.7 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/config@1.0.8 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/plugin-scaffolder-backend-module-yeoman@0.2.20 ### Patch Changes - Updated dependencies - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5 ## @backstage/plugin-scaffolder-common@1.3.2 ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.4.1 - @backstage/types@1.1.0 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-scaffolder-node@0.1.5 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-common@1.3.2 ## @backstage/plugin-scaffolder-react@1.5.1 ### Patch Changes - f74a27de4d2c: Made markdown description theme-able - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-scaffolder-common@1.3.2 ## @backstage/plugin-search@1.3.3 ### Patch Changes - c3381408d633: Fixed bug in "View Full Results" link of Search Modal that did not navigate to the full results page. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 ## @backstage/plugin-search-backend@1.3.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-search-backend-module-catalog@0.1.3 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-search-backend-module-elasticsearch@1.3.2 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/integration-aws-node@0.1.5 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-search-backend-module-explore@0.1.3 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-explore-common@0.0.1 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-search-backend-module-pg@0.5.8 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-search-backend-module-techdocs@0.1.3 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-techdocs-node@1.7.3 ## @backstage/plugin-search-backend-node@1.2.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/backend-tasks@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-search-common@1.2.5 ### Patch Changes - Updated dependencies - @backstage/types@1.1.0 - @backstage/plugin-permission-common@0.7.7 ## @backstage/plugin-search-react@1.6.3 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-sentry@0.5.5 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-shortcuts@0.3.12 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/types@1.1.0 ## @backstage/plugin-sonarqube@0.7.1 ### Patch Changes - fcaf4cfc70ee: Made default config optional - 015439b5b6ca: Updated dependency `rc-progress` to `3.4.2`. - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/plugin-sonarqube-react@0.1.7 ## @backstage/plugin-sonarqube-backend@0.2.1 ### Patch Changes - fcaf4cfc70ee: Made default config optional - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 ## @backstage/plugin-sonarqube-react@0.1.7 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-splunk-on-call@0.4.9 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-stack-overflow@0.1.18 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/plugin-home-react@0.1.1 - @backstage/core-plugin-api@1.5.3 - @backstage/config@1.0.8 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 ## @backstage/plugin-stack-overflow-backend@0.2.3 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-stackstorm@0.1.4 ### Patch Changes - 1745959daf98: Add props to StackstormHome for Header Customization - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-tech-insights@0.3.12 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/types@1.1.0 - @backstage/plugin-tech-insights-common@0.2.11 ## @backstage/plugin-tech-insights-backend@0.5.13 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-tech-insights-common@0.2.11 - @backstage/plugin-tech-insights-node@0.4.5 ## @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.31 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/config@1.0.8 - @backstage/plugin-tech-insights-common@0.2.11 - @backstage/plugin-tech-insights-node@0.4.5 ## @backstage/plugin-tech-insights-node@0.4.5 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.1 - @backstage/backend-tasks@0.5.4 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-tech-insights-common@0.2.11 ## @backstage/plugin-tech-radar@0.6.6 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @backstage/plugin-techdocs@1.6.5 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/integration-react@1.1.15 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 - @backstage/plugin-techdocs-react@1.1.8 ## @backstage/plugin-techdocs-addons-test-utils@1.0.16 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/plugin-catalog@1.12.0 - @backstage/core-components@0.13.3 - @backstage/core-app-api@1.9.0 - @backstage/test-utils@1.4.1 - @backstage/core-plugin-api@1.5.3 - @backstage/integration-react@1.1.15 - @backstage/plugin-search-react@1.6.3 - @backstage/plugin-techdocs@1.6.5 - @backstage/plugin-techdocs-react@1.1.8 ## @backstage/plugin-techdocs-backend@1.6.4 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-search-backend-module-techdocs@0.1.3 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-techdocs-node@1.7.3 ## @backstage/plugin-techdocs-module-addons-contrib@1.0.15 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/integration@1.5.1 - @backstage/integration-react@1.1.15 - @backstage/plugin-techdocs-react@1.1.8 ## @backstage/plugin-techdocs-node@1.7.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/integration-aws-node@0.1.5 - @backstage/plugin-search-common@1.2.5 ## @backstage/plugin-techdocs-react@1.1.8 ### Patch Changes - Updated dependencies - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/version-bridge@1.0.4 ## @backstage/plugin-todo@0.2.22 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-todo-backend@0.1.44 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/plugin-catalog-node@1.4.0 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 ## @backstage/plugin-user-settings@0.7.5 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-app-api@1.9.0 - @backstage/core-plugin-api@1.5.3 - @backstage/types@1.1.0 ## @backstage/plugin-user-settings-backend@0.1.11 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/catalog-model@1.4.1 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16 ## @backstage/plugin-vault@0.1.14 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/plugin-catalog-react@1.8.0 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 - @backstage/catalog-model@1.4.1 ## @backstage/plugin-vault-backend@0.3.3 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-tasks@0.5.4 - @backstage/config@1.0.8 ## @backstage/plugin-xcmetrics@0.2.40 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/errors@1.2.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## example-app@0.2.85 ### Patch Changes - Updated dependencies - @backstage/plugin-search@1.3.3 - @backstage/plugin-devtools@0.1.2 - @backstage/cli@0.22.9 - @backstage/theme@0.4.1 - @backstage/plugin-catalog-unprocessed-entities@0.1.1 - @backstage/plugin-stackstorm@0.1.4 - @backstage/plugin-scaffolder-react@1.5.1 - @backstage/plugin-airbrake@0.3.20 - @backstage/plugin-lighthouse@0.4.5 - @backstage/plugin-catalog-import@0.9.10 - @backstage/plugin-dynatrace@7.0.0 - @backstage/plugin-catalog-react@1.8.0 - @backstage/plugin-home@0.5.4 - @backstage/core-components@0.13.3 - @backstage/plugin-playlist@0.1.12 - @backstage/plugin-nomad@0.1.1 - @backstage/plugin-kubernetes@0.9.3 - @backstage/core-app-api@1.9.0 - @backstage/plugin-cost-insights@0.12.9 - @backstage/plugin-user-settings@0.7.5 - @backstage/core-plugin-api@1.5.3 - @backstage/plugin-adr@0.6.3 - @backstage/plugin-puppetdb@0.1.3 - @backstage/app-defaults@1.4.1 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration-react@1.1.15 - @backstage/plugin-apache-airflow@0.2.13 - @backstage/plugin-api-docs@0.9.6 - @backstage/plugin-azure-devops@0.3.2 - @backstage/plugin-azure-sites@0.1.9 - @backstage/plugin-badges@0.2.44 - @backstage/plugin-catalog-common@1.0.15 - @backstage/plugin-catalog-graph@0.2.32 - @backstage/plugin-circleci@0.3.20 - @backstage/plugin-cloudbuild@0.3.20 - @backstage/plugin-code-coverage@0.2.13 - @backstage/plugin-entity-feedback@0.2.3 - @backstage/plugin-explore@0.4.6 - @backstage/plugin-gcalendar@0.3.16 - @backstage/plugin-gcp-projects@0.3.39 - @backstage/plugin-github-actions@0.6.1 - @backstage/plugin-gocd@0.1.26 - @backstage/plugin-graphiql@0.2.52 - @backstage/plugin-jenkins@0.8.2 - @backstage/plugin-kafka@0.3.20 - @backstage/plugin-linguist@0.1.5 - @backstage/plugin-linguist-common@0.1.0 - @backstage/plugin-microsoft-calendar@0.1.5 - @backstage/plugin-newrelic@0.3.38 - @backstage/plugin-newrelic-dashboard@0.2.13 - @backstage/plugin-octopus-deploy@0.2.2 - @backstage/plugin-org@0.6.10 - @backstage/plugin-pagerduty@0.6.1 - @backstage/plugin-permission-react@0.4.14 - @backstage/plugin-rollbar@0.4.20 - @backstage/plugin-scaffolder@1.14.1 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-search-react@1.6.3 - @backstage/plugin-sentry@0.5.5 - @backstage/plugin-shortcuts@0.3.12 - @backstage/plugin-stack-overflow@0.1.18 - @backstage/plugin-tech-insights@0.3.12 - @backstage/plugin-tech-radar@0.6.6 - @backstage/plugin-techdocs@1.6.5 - @backstage/plugin-techdocs-module-addons-contrib@1.0.15 - @backstage/plugin-techdocs-react@1.1.8 - @backstage/plugin-todo@0.2.22 - @internal/plugin-catalog-customized@0.0.12 ## example-backend@0.2.85 ### Patch Changes - Updated dependencies - @backstage/plugin-kubernetes-backend@0.11.2 - @backstage/plugin-badges-backend@0.2.2 - @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.0 - @backstage/plugin-devtools-backend@0.1.2 - @backstage/plugin-tech-insights-backend@0.5.13 - @backstage/backend-common@0.19.1 - @backstage/plugin-scaffolder-backend@1.15.1 - @backstage/plugin-catalog-backend-module-unprocessed@0.1.1 - @backstage/plugin-azure-devops-backend@0.3.26 - @backstage/plugin-linguist-backend@0.3.1 - @backstage/plugin-adr-backend@0.3.5 - @backstage/plugin-lighthouse-backend@0.2.3 - @backstage/plugin-entity-feedback-backend@0.1.5 - @backstage/plugin-catalog-backend@1.11.0 - @backstage/plugin-catalog-node@1.4.0 - @backstage/plugin-auth-backend@0.18.5 - example-app@0.2.85 - @backstage/backend-tasks@0.5.4 - @backstage/catalog-client@1.4.3 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration@1.5.1 - @backstage/plugin-app-backend@0.3.47 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-azure-sites-backend@0.1.9 - @backstage/plugin-code-coverage-backend@0.2.13 - @backstage/plugin-events-backend@0.2.8 - @backstage/plugin-events-node@0.2.8 - @backstage/plugin-explore-backend@0.0.9 - @backstage/plugin-graphql-backend@0.1.37 - @backstage/plugin-jenkins-backend@0.2.2 - @backstage/plugin-kafka-backend@0.2.40 - @backstage/plugin-nomad-backend@0.1.1 - @backstage/plugin-permission-backend@0.5.22 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 - @backstage/plugin-playlist-backend@0.3.3 - @backstage/plugin-proxy-backend@0.2.41 - @backstage/plugin-rollbar-backend@0.1.44 - @backstage/plugin-scaffolder-backend-module-rails@0.4.16 - @backstage/plugin-search-backend@1.3.3 - @backstage/plugin-search-backend-module-elasticsearch@1.3.2 - @backstage/plugin-search-backend-module-pg@0.5.8 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-search-common@1.2.5 - @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.31 - @backstage/plugin-tech-insights-node@0.4.5 - @backstage/plugin-techdocs-backend@1.6.4 - @backstage/plugin-todo-backend@0.1.44 ## example-backend-next@0.0.13 ### Patch Changes - Updated dependencies - @backstage/plugin-kubernetes-backend@0.11.2 - @backstage/plugin-badges-backend@0.2.2 - @backstage/plugin-devtools-backend@0.1.2 - @backstage/plugin-scaffolder-backend@1.15.1 - @backstage/plugin-catalog-backend-module-unprocessed@0.1.1 - @backstage/plugin-azure-devops-backend@0.3.26 - @backstage/plugin-linguist-backend@0.3.1 - @backstage/plugin-adr-backend@0.3.5 - @backstage/plugin-lighthouse-backend@0.2.3 - @backstage/plugin-entity-feedback-backend@0.1.5 - @backstage/plugin-catalog-backend@1.11.0 - @backstage/backend-defaults@0.1.12 - @backstage/backend-tasks@0.5.4 - @backstage/plugin-app-backend@0.3.47 - @backstage/plugin-auth-node@0.2.16 - @backstage/plugin-permission-backend@0.5.22 - @backstage/plugin-permission-common@0.7.7 - @backstage/plugin-permission-node@0.7.10 - @backstage/plugin-search-backend@1.3.3 - @backstage/plugin-search-backend-module-catalog@0.1.3 - @backstage/plugin-search-backend-module-explore@0.1.3 - @backstage/plugin-search-backend-module-techdocs@0.1.3 - @backstage/plugin-search-backend-node@1.2.3 - @backstage/plugin-techdocs-backend@1.6.4 - @backstage/plugin-todo-backend@0.1.44 ## e2e-test@0.2.5 ### Patch Changes - Updated dependencies - @backstage/create-app@0.5.3 - @backstage/errors@1.2.1 - @backstage/cli-common@0.1.12 ## techdocs-cli-embedded-app@0.2.84 ### Patch Changes - Updated dependencies - @backstage/cli@0.22.9 - @backstage/theme@0.4.1 - @backstage/plugin-catalog@1.12.0 - @backstage/core-components@0.13.3 - @backstage/core-app-api@1.9.0 - @backstage/test-utils@1.4.1 - @backstage/core-plugin-api@1.5.3 - @backstage/app-defaults@1.4.1 - @backstage/catalog-model@1.4.1 - @backstage/config@1.0.8 - @backstage/integration-react@1.1.15 - @backstage/plugin-techdocs@1.6.5 - @backstage/plugin-techdocs-react@1.1.8 ## @internal/plugin-catalog-customized@0.0.12 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0 - @backstage/plugin-catalog@1.12.0 ## @internal/plugin-todo-list@1.0.15 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1 - @backstage/core-components@0.13.3 - @backstage/core-plugin-api@1.5.3 ## @internal/plugin-todo-list-backend@1.0.15 ### Patch Changes - Updated dependencies - @backstage/errors@1.2.1 - @backstage/backend-common@0.19.1 - @backstage/backend-plugin-api@0.5.4 - @backstage/config@1.0.8 - @backstage/plugin-auth-node@0.2.16 ## @internal/plugin-todo-list-common@1.0.12 ### Patch Changes - Updated dependencies - @backstage/plugin-permission-common@0.7.7