# Release v1.16.0-next.2 ## @backstage/plugin-catalog@1.12.0-next.2 ### 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/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/integration-react@1.1.15-next.2 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15-next.0 - @backstage/plugin-scaffolder-common@1.3.2-next.0 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.0-next.1 ### 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/backend-common@0.19.1-next.0 - @backstage/backend-plugin-api@0.5.4-next.0 - @backstage/backend-tasks@0.5.4-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-catalog-backend@1.11.0-next.0 - @backstage/plugin-catalog-node@1.4.0-next.0 - @backstage/plugin-events-node@0.2.8-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 ## @backstage/plugin-catalog-react@1.8.0-next.2 ### 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-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-catalog-common@1.0.15-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-react@0.4.14-next.2 ## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.0-next.1 ### 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/plugin-scaffolder-backend@1.15.1-next.1 - @backstage/backend-common@0.19.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5-next.0 ## @backstage/app-defaults@1.4.1-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/core-app-api@1.8.2-next.1 - @backstage/plugin-permission-react@0.4.14-next.2 ## @backstage/cli@0.22.9-next.1 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - ff45cb559e49: Updated dependency `esbuild` to `^0.18.0`. - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/cli-node@0.1.2-next.1 - @backstage/catalog-model@1.4.1-next.0 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/eslint-plugin@0.1.3 - @backstage/integration@1.5.1-next.0 - @backstage/release-manifests@0.0.9 - @backstage/types@1.1.0 ## @backstage/cli-node@0.1.2-next.1 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - Updated dependencies - @backstage/cli-common@0.1.12 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 ## @backstage/codemods@0.1.45-next.0 ### Patch Changes - 325a32e9476e: Updated dependency `jscodeshift` to `^0.15.0`. - Updated dependencies - @backstage/cli-common@0.1.12 ## @backstage/core-app-api@1.8.2-next.1 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 ## @backstage/core-components@0.13.3-next.2 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - 4317b1c2f430: Remove zooming in restrictions in the catalog graph - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/version-bridge@1.0.4 ## @backstage/core-plugin-api@1.5.3-next.1 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 ## @backstage/create-app@0.5.3-next.2 ### Patch Changes - 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-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/test-utils@1.4.1-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/core-app-api@1.8.2-next.1 - @backstage/app-defaults@1.4.1-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/integration-react@1.1.15-next.2 ## @backstage/integration-react@1.1.15-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 - @backstage/integration@1.5.1-next.0 ## @backstage/repo-tools@0.3.2-next.1 ### Patch Changes - Updated dependencies - @backstage/cli-node@0.1.2-next.1 - @backstage/cli-common@0.1.12 - @backstage/errors@1.2.1-next.0 ## @backstage/test-utils@1.4.1-next.2 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-app-api@1.8.2-next.1 - @backstage/config@1.0.8 - @backstage/types@1.1.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-react@0.4.14-next.2 ## @backstage/theme@0.4.1-next.1 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references ## @backstage/plugin-adr@0.6.3-next.2 ### Patch Changes - 2b4513abb784: fixed error with date parsing. - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/plugin-adr-common@0.2.11-next.1 - @backstage/catalog-model@1.4.1-next.0 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 ## @backstage/plugin-adr-backend@0.3.5-next.1 ### Patch Changes - a8805a9a4f25: Added support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/plugin-adr-common@0.2.11-next.1 - @backstage/backend-common@0.19.1-next.0 - @backstage/backend-plugin-api@0.5.4-next.0 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/plugin-search-common@1.2.5-next.0 ## @backstage/plugin-adr-common@0.2.11-next.1 ### Patch Changes - 2b4513abb784: fixed error with date parsing. - Updated dependencies - @backstage/catalog-model@1.4.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/plugin-search-common@1.2.5-next.0 ## @backstage/plugin-airbrake@0.3.20-next.2 ### Patch Changes - 7b6033587650: Added documentation for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/test-utils@1.4.1-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/dev-utils@1.0.17-next.2 ## @backstage/plugin-airbrake-backend@0.2.20-next.1 ### Patch Changes - a95bb64e461a: Added support for the [new backend system](https://backstage.io/docs/backend-system/) - Updated dependencies - @backstage/backend-common@0.19.1-next.0 - @backstage/backend-plugin-api@0.5.4-next.0 - @backstage/config@1.0.8 ## @backstage/plugin-allure@0.1.36-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-analytics-module-ga@0.1.31-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 ## @backstage/plugin-analytics-module-ga4@0.1.2-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 ## @backstage/plugin-apache-airflow@0.2.13-next.2 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-api-docs@0.9.6-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/plugin-catalog@1.12.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-apollo-explorer@0.1.13-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-azure-devops@0.3.2-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-azure-devops-common@0.3.0 ## @backstage/plugin-azure-sites@0.1.9-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/plugin-azure-sites-common@0.1.0 ## @backstage/plugin-badges@0.2.44-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-bazaar@0.2.11-next.2 ### Patch Changes - Updated dependencies - @backstage/cli@0.22.9-next.1 - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/plugin-catalog@1.12.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-bitrise@0.1.47-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-catalog-graph@0.2.32-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-catalog-import@0.9.10-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-catalog-common@1.0.15-next.0 ## @backstage/plugin-catalog-unprocessed-entities@0.1.1-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-cicd-statistics@0.1.22-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-cicd-statistics-module-gitlab@0.1.16-next.2 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/catalog-model@1.4.1-next.0 - @backstage/plugin-cicd-statistics@0.1.22-next.2 ## @backstage/plugin-circleci@0.3.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-cloudbuild@0.3.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-code-climate@0.1.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-code-coverage@0.2.13-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-codescene@0.1.15-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-config-schema@0.1.43-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 ## @backstage/plugin-cost-insights@0.12.9-next.2 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/plugin-cost-insights-common@0.1.1 ## @backstage/plugin-devtools@0.1.2-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-devtools-common@0.1.2-next.0 - @backstage/plugin-permission-react@0.4.14-next.2 ## @backstage/plugin-devtools-backend@0.1.2-next.2 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - Updated dependencies - @backstage/backend-common@0.19.1-next.0 - @backstage/backend-plugin-api@0.5.4-next.0 - @backstage/cli-common@0.1.12 - @backstage/config@1.0.8 - @backstage/config-loader@1.3.2-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16-next.0 - @backstage/plugin-devtools-common@0.1.2-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-node@0.7.10-next.0 ## @backstage/plugin-dynatrace@7.0.0-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-entity-feedback@0.2.3-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-entity-feedback-common@0.1.1 ## @backstage/plugin-entity-validation@0.1.5-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-catalog-common@1.0.15-next.0 ## @backstage/plugin-explore@0.4.6-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-explore-common@0.0.1 - @backstage/plugin-explore-react@0.0.30-next.1 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 ## @backstage/plugin-explore-react@0.0.30-next.1 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/plugin-explore-common@0.0.1 ## @backstage/plugin-firehydrant@0.2.4-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-fossa@0.2.52-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-gcalendar@0.3.16-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-gcp-projects@0.3.39-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-git-release-manager@0.3.33-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/integration@1.5.1-next.0 ## @backstage/plugin-github-actions@0.6.1-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/integration-react@1.1.15-next.2 ## @backstage/plugin-github-deployments@0.1.51-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/integration-react@1.1.15-next.2 ## @backstage/plugin-github-issues@0.2.9-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 ## @backstage/plugin-github-pull-requests-board@0.1.14-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/integration@1.5.1-next.0 ## @backstage/plugin-gitops-profiles@0.3.38-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 ## @backstage/plugin-gocd@0.1.26-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-graphiql@0.2.52-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-graphql-voyager@0.1.5-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-home@0.5.4-next.2 ### 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/plugin-catalog-react@1.8.0-next.2 - @backstage/plugin-home-react@0.1.1-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 ## @backstage/plugin-home-react@0.1.1-next.2 ### 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-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-ilert@0.2.9-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-jenkins@0.8.2-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-jenkins-common@0.1.17-next.0 ## @backstage/plugin-kafka@0.3.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 ## @backstage/plugin-kubernetes@0.9.3-next.2 ### Patch Changes - cc27fa4a1aac: Changed Google cloud auth scope to read-only. - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-kubernetes-common@0.6.5-next.0 ## @backstage/plugin-kubernetes-backend@0.11.2-next.2 ### Patch Changes - 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. - Updated dependencies - @backstage/backend-common@0.19.1-next.0 - @backstage/backend-plugin-api@0.5.4-next.0 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration-aws-node@0.1.5-next.0 - @backstage/plugin-auth-node@0.2.16-next.0 - @backstage/plugin-catalog-node@1.4.0-next.0 - @backstage/plugin-kubernetes-common@0.6.5-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-node@0.7.10-next.0 ## @backstage/plugin-lighthouse@0.4.5-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/plugin-lighthouse-common@0.1.2 ## @backstage/plugin-linguist@0.1.5-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-linguist-common@0.1.0 ## @backstage/plugin-microsoft-calendar@0.1.5-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-newrelic@0.3.38-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-newrelic-dashboard@0.2.13-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-nomad@0.1.1-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 ## @backstage/plugin-octopus-deploy@0.2.2-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-org@0.6.10-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-org-react@0.1.9-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-pagerduty@0.6.1-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/plugin-home-react@0.1.1-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-periskop@0.1.18-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-permission-react@0.4.14-next.2 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/config@1.0.8 - @backstage/plugin-permission-common@0.7.7-next.0 ## @backstage/plugin-playlist@0.1.12-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/plugin-catalog-common@1.0.15-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-react@0.4.14-next.2 - @backstage/plugin-playlist-common@0.1.8-next.0 - @backstage/plugin-search-react@1.6.3-next.2 ## @backstage/plugin-puppetdb@0.1.3-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-rollbar@0.4.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-scaffolder@1.14.1-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/integration-react@1.1.15-next.2 - @backstage/types@1.1.0 - @backstage/plugin-catalog-common@1.0.15-next.0 - @backstage/plugin-permission-react@0.4.14-next.2 - @backstage/plugin-scaffolder-common@1.3.2-next.0 - @backstage/plugin-scaffolder-react@1.5.1-next.2 ## @backstage/plugin-scaffolder-backend@1.15.1-next.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/backend-common@0.19.1-next.0 - @backstage/backend-plugin-api@0.5.4-next.0 - @backstage/backend-tasks@0.5.4-next.0 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-auth-node@0.2.16-next.0 - @backstage/plugin-catalog-backend@1.11.0-next.0 - @backstage/plugin-catalog-common@1.0.15-next.0 - @backstage/plugin-catalog-node@1.4.0-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-node@0.7.10-next.0 - @backstage/plugin-scaffolder-common@1.3.2-next.0 - @backstage/plugin-scaffolder-node@0.1.5-next.0 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.23-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-backend@1.15.1-next.1 - @backstage/backend-common@0.19.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5-next.0 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.2.2-next.1 ### Patch Changes - dd367967e2e1: Fixed a bug in `gitlab:group:ensureExists` where `repos` was always set as the root group. - Updated dependencies - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/plugin-scaffolder-node@0.1.5-next.0 ## @backstage/plugin-scaffolder-backend-module-rails@0.4.16-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-backend@1.15.1-next.1 - @backstage/backend-common@0.19.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-scaffolder-node@0.1.5-next.0 ## @backstage/plugin-scaffolder-react@1.5.1-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-scaffolder-common@1.3.2-next.0 ## @backstage/plugin-search@1.3.3-next.2 ### 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/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 ## @backstage/plugin-search-react@1.6.3-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/types@1.1.0 - @backstage/version-bridge@1.0.4 - @backstage/plugin-search-common@1.2.5-next.0 ## @backstage/plugin-sentry@0.5.5-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-shortcuts@0.3.12-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/types@1.1.0 ## @backstage/plugin-sonarqube@0.7.1-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/plugin-sonarqube-react@0.1.7-next.2 ## @backstage/plugin-sonarqube-react@0.1.7-next.2 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-splunk-on-call@0.4.9-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 ## @backstage/plugin-stack-overflow@0.1.18-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-home-react@0.1.1-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/config@1.0.8 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 ## @backstage/plugin-stackstorm@0.1.4-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-tech-insights@0.3.12-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-tech-insights-common@0.2.11 ## @backstage/plugin-tech-insights-backend@0.5.13-next.1 ### Patch Changes - 4edd1ef71453: semver upgrade to 7.5.3 - Updated dependencies - @backstage/backend-common@0.19.1-next.0 - @backstage/backend-tasks@0.5.4-next.0 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 - @backstage/plugin-tech-insights-common@0.2.11 - @backstage/plugin-tech-insights-node@0.4.5-next.0 ## @backstage/plugin-tech-radar@0.6.6-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 ## @backstage/plugin-techdocs@1.6.5-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/errors@1.2.1-next.0 - @backstage/integration@1.5.1-next.0 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 - @backstage/plugin-techdocs-react@1.1.8-next.2 ## @backstage/plugin-techdocs-addons-test-utils@1.0.16-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog@1.12.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/test-utils@1.4.1-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/core-app-api@1.8.2-next.1 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-search-react@1.6.3-next.2 - @backstage/plugin-techdocs@1.6.5-next.2 - @backstage/plugin-techdocs-react@1.1.8-next.2 ## @backstage/plugin-techdocs-module-addons-contrib@1.0.15-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/integration@1.5.1-next.0 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-techdocs-react@1.1.8-next.2 ## @backstage/plugin-techdocs-react@1.1.8-next.2 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/version-bridge@1.0.4 ## @backstage/plugin-todo@0.2.22-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-user-settings@0.7.5-next.2 ### Patch Changes - 8174cf4c0edf: Fixing MUI / Material UI references - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/core-app-api@1.8.2-next.1 - @backstage/errors@1.2.1-next.0 - @backstage/types@1.1.0 ## @backstage/plugin-vault@0.1.14-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/errors@1.2.1-next.0 ## @backstage/plugin-xcmetrics@0.2.40-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/errors@1.2.1-next.0 ## example-app@0.2.85-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-search@1.3.3-next.2 - @backstage/plugin-airbrake@0.3.20-next.2 - @backstage/cli@0.22.9-next.1 - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/plugin-home@0.5.4-next.2 - @backstage/plugin-cost-insights@0.12.9-next.2 - @backstage/plugin-user-settings@0.7.5-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/core-app-api@1.8.2-next.1 - @backstage/plugin-kubernetes@0.9.3-next.2 - @backstage/plugin-adr@0.6.3-next.2 - @backstage/app-defaults@1.4.1-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-apache-airflow@0.2.13-next.2 - @backstage/plugin-api-docs@0.9.6-next.2 - @backstage/plugin-azure-devops@0.3.2-next.2 - @backstage/plugin-azure-sites@0.1.9-next.2 - @backstage/plugin-badges@0.2.44-next.2 - @backstage/plugin-catalog-common@1.0.15-next.0 - @backstage/plugin-catalog-graph@0.2.32-next.2 - @backstage/plugin-catalog-import@0.9.10-next.2 - @backstage/plugin-catalog-unprocessed-entities@0.1.1-next.2 - @backstage/plugin-circleci@0.3.20-next.2 - @backstage/plugin-cloudbuild@0.3.20-next.2 - @backstage/plugin-code-coverage@0.2.13-next.2 - @backstage/plugin-devtools@0.1.2-next.2 - @backstage/plugin-dynatrace@7.0.0-next.2 - @backstage/plugin-entity-feedback@0.2.3-next.2 - @backstage/plugin-explore@0.4.6-next.2 - @backstage/plugin-gcalendar@0.3.16-next.2 - @backstage/plugin-gcp-projects@0.3.39-next.2 - @backstage/plugin-github-actions@0.6.1-next.2 - @backstage/plugin-gocd@0.1.26-next.2 - @backstage/plugin-graphiql@0.2.52-next.2 - @backstage/plugin-jenkins@0.8.2-next.2 - @backstage/plugin-kafka@0.3.20-next.2 - @backstage/plugin-lighthouse@0.4.5-next.2 - @backstage/plugin-linguist@0.1.5-next.2 - @backstage/plugin-linguist-common@0.1.0 - @backstage/plugin-microsoft-calendar@0.1.5-next.2 - @backstage/plugin-newrelic@0.3.38-next.2 - @backstage/plugin-newrelic-dashboard@0.2.13-next.2 - @backstage/plugin-nomad@0.1.1-next.2 - @backstage/plugin-octopus-deploy@0.2.2-next.2 - @backstage/plugin-org@0.6.10-next.2 - @backstage/plugin-pagerduty@0.6.1-next.2 - @backstage/plugin-permission-react@0.4.14-next.2 - @backstage/plugin-playlist@0.1.12-next.2 - @backstage/plugin-puppetdb@0.1.3-next.2 - @backstage/plugin-rollbar@0.4.20-next.2 - @backstage/plugin-scaffolder@1.14.1-next.2 - @backstage/plugin-scaffolder-react@1.5.1-next.2 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-search-react@1.6.3-next.2 - @backstage/plugin-sentry@0.5.5-next.2 - @backstage/plugin-shortcuts@0.3.12-next.2 - @backstage/plugin-stack-overflow@0.1.18-next.2 - @backstage/plugin-stackstorm@0.1.4-next.2 - @backstage/plugin-tech-insights@0.3.12-next.2 - @backstage/plugin-tech-radar@0.6.6-next.2 - @backstage/plugin-techdocs@1.6.5-next.2 - @backstage/plugin-techdocs-module-addons-contrib@1.0.15-next.2 - @backstage/plugin-techdocs-react@1.1.8-next.2 - @backstage/plugin-todo@0.2.22-next.2 - @internal/plugin-catalog-customized@0.0.12-next.2 ## example-backend@0.2.85-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.0-next.1 - @backstage/plugin-devtools-backend@0.1.2-next.2 - @backstage/plugin-tech-insights-backend@0.5.13-next.1 - @backstage/plugin-scaffolder-backend@1.15.1-next.1 - @backstage/plugin-kubernetes-backend@0.11.2-next.2 - @backstage/plugin-adr-backend@0.3.5-next.1 - example-app@0.2.85-next.2 - @backstage/backend-common@0.19.1-next.0 - @backstage/backend-tasks@0.5.4-next.0 - @backstage/catalog-client@1.4.3-next.0 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/integration@1.5.1-next.0 - @backstage/plugin-app-backend@0.3.47-next.0 - @backstage/plugin-auth-backend@0.18.5-next.1 - @backstage/plugin-auth-node@0.2.16-next.0 - @backstage/plugin-azure-devops-backend@0.3.26-next.1 - @backstage/plugin-azure-sites-backend@0.1.9-next.0 - @backstage/plugin-badges-backend@0.2.2-next.1 - @backstage/plugin-catalog-backend@1.11.0-next.0 - @backstage/plugin-catalog-backend-module-unprocessed@0.1.1-next.0 - @backstage/plugin-catalog-node@1.4.0-next.0 - @backstage/plugin-code-coverage-backend@0.2.13-next.0 - @backstage/plugin-entity-feedback-backend@0.1.5-next.0 - @backstage/plugin-events-backend@0.2.8-next.0 - @backstage/plugin-events-node@0.2.8-next.0 - @backstage/plugin-explore-backend@0.0.9-next.0 - @backstage/plugin-graphql-backend@0.1.37-next.0 - @backstage/plugin-jenkins-backend@0.2.2-next.0 - @backstage/plugin-kafka-backend@0.2.40-next.0 - @backstage/plugin-lighthouse-backend@0.2.3-next.0 - @backstage/plugin-linguist-backend@0.3.1-next.1 - @backstage/plugin-nomad-backend@0.1.1-next.0 - @backstage/plugin-permission-backend@0.5.22-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-node@0.7.10-next.0 - @backstage/plugin-playlist-backend@0.3.3-next.0 - @backstage/plugin-proxy-backend@0.2.41-next.0 - @backstage/plugin-rollbar-backend@0.1.44-next.0 - @backstage/plugin-scaffolder-backend-module-rails@0.4.16-next.1 - @backstage/plugin-search-backend@1.3.3-next.0 - @backstage/plugin-search-backend-module-elasticsearch@1.3.2-next.0 - @backstage/plugin-search-backend-module-pg@0.5.8-next.0 - @backstage/plugin-search-backend-node@1.2.3-next.0 - @backstage/plugin-search-common@1.2.5-next.0 - @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.31-next.0 - @backstage/plugin-tech-insights-node@0.4.5-next.0 - @backstage/plugin-techdocs-backend@1.6.4-next.0 - @backstage/plugin-todo-backend@0.1.44-next.0 ## example-backend-next@0.0.13-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-devtools-backend@0.1.2-next.2 - @backstage/plugin-scaffolder-backend@1.15.1-next.1 - @backstage/plugin-kubernetes-backend@0.11.2-next.2 - @backstage/plugin-adr-backend@0.3.5-next.1 - @backstage/backend-defaults@0.1.12-next.0 - @backstage/backend-tasks@0.5.4-next.0 - @backstage/plugin-app-backend@0.3.47-next.0 - @backstage/plugin-auth-node@0.2.16-next.0 - @backstage/plugin-azure-devops-backend@0.3.26-next.1 - @backstage/plugin-badges-backend@0.2.2-next.1 - @backstage/plugin-catalog-backend@1.11.0-next.0 - @backstage/plugin-catalog-backend-module-unprocessed@0.1.1-next.0 - @backstage/plugin-entity-feedback-backend@0.1.5-next.0 - @backstage/plugin-linguist-backend@0.3.1-next.1 - @backstage/plugin-permission-backend@0.5.22-next.0 - @backstage/plugin-permission-common@0.7.7-next.0 - @backstage/plugin-permission-node@0.7.10-next.0 - @backstage/plugin-search-backend@1.3.3-next.0 - @backstage/plugin-search-backend-module-catalog@0.1.3-next.0 - @backstage/plugin-search-backend-module-explore@0.1.3-next.0 - @backstage/plugin-search-backend-module-techdocs@0.1.3-next.0 - @backstage/plugin-search-backend-node@1.2.3-next.0 - @backstage/plugin-techdocs-backend@1.6.4-next.0 - @backstage/plugin-todo-backend@0.1.44-next.0 ## e2e-test@0.2.5-next.2 ### Patch Changes - Updated dependencies - @backstage/create-app@0.5.3-next.2 - @backstage/cli-common@0.1.12 - @backstage/errors@1.2.1-next.0 ## techdocs-cli-embedded-app@0.2.84-next.2 ### Patch Changes - Updated dependencies - @backstage/cli@0.22.9-next.1 - @backstage/plugin-catalog@1.12.0-next.2 - @backstage/theme@0.4.1-next.1 - @backstage/test-utils@1.4.1-next.2 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2 - @backstage/core-app-api@1.8.2-next.1 - @backstage/app-defaults@1.4.1-next.2 - @backstage/catalog-model@1.4.1-next.0 - @backstage/config@1.0.8 - @backstage/integration-react@1.1.15-next.2 - @backstage/plugin-techdocs@1.6.5-next.2 - @backstage/plugin-techdocs-react@1.1.8-next.2 ## @internal/plugin-catalog-customized@0.0.12-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.8.0-next.2 - @backstage/plugin-catalog@1.12.0-next.2 ## @internal/plugin-todo-list@1.0.15-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.4.1-next.1 - @backstage/core-plugin-api@1.5.3-next.1 - @backstage/core-components@0.13.3-next.2