Release v1.16.0-next.2
@backstage/plugin-catalog@1.12.0-next.2
Minor Changes
- eae0352d3864: Tables which use
EntityTablePropsnow have an additionaltableOptionsprop 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
nullorundefinedfrom an event handler to indicate no-oop, instead return the value { type: "ignored" }.before
import { createDelta, shouldIgnore } from "./my-delta-creater";
eventHandler: {
onEvent(params) {
if (shouldIgnore(params)) {
return;
}
return createDelta(params);
}
}after
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
EntityTablePropsnow have an additionaltableOptionsprop 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.authconfiguration. However, only the confluence-to-markdown action uses theconfluence.authas a string. This change updates it so thatconfluence.authis an object.Required Changes
Below are examples for updating
bearer,basic, anduserpassimplementations.For
bearer: Before:confluence:
baseUrl: 'https://confluence.example.com'
auth: 'bearer'
token: '${CONFLUENCE_TOKEN}'After:
confluence:
baseUrl: 'https://confluence.example.com'
auth:
type: 'bearer'
token: '${CONFLUENCE_TOKEN}'For
basic:Before:
confluence:
baseUrl: 'https://confluence.example.com'
auth: 'basic'
token: '${CONFLUENCE_TOKEN}'
email: 'example@company.org'After:
confluence:
baseUrl: 'https://confluence.example.com'
auth:
type: 'basic'
token: '${CONFLUENCE_TOKEN}'
email: 'example@company.org'For
userpassBefore:confluence:
baseUrl: 'https://confluence.example.com'
auth: 'userpass'
username: 'your-username'
password: 'your-password'After:
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
esbuildto^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
jscodeshiftto^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
- 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
- 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
- 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