Release v1.38.0-next.2
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.38.0-next.2
@backstage/canon@0.3.0-next.2
Minor Changes
- f038613: Updated TextField and Select component to work with React Hook Form.
- 1b0cf40: Add new Select component for Canon
- 5074d61: BREAKING: Added a new TextField component to replace the Field and Input component. After feedback, it became clear that we needed to build a more opinionated version to avoid any problem in the future.
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
24f0e08: Improved Container styles, changing our max-width to 120rem and improving padding on smaller screens.
-
7ae28ba: Move styles to the root of the TextField component.
-
4fe5b08: We added a render prop to the Link component to make sure it can work with React Router.
@backstage/cli@0.32.0-next.2
Minor Changes
-
a47fd39: Removes default React imports from template files, aligning with the requirements for the upcoming React 19 migration. Introduces a new ESLint rule to disallow
import React from 'react'andimport * as React from 'react'.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Patch Changes
-
6969f79: Avoid trailing
/*when automatically adding imports for package with multiple entry points. -
98b7131: Update the
to doplugin template to stop using the deprecated catalog alpha service reference. If you start seeing theshould create TODO item with catalog informationtest failing, you have two options to fix this: Update the test to mock the legacy alpha catalog service, or migrate theTODOplugin backend to use the new catalog service reference. We recommend the second option, see this pull request for an example of how to do the migration. -
d5c4fed: make certificate strings optional for Dev environments
-
d2091c6: Added a new
repo startcommand to replace the existing pattern of usingyarn devscripts. Therepo startcommand runs the app and/or backend package in the repo by default, but will also fall back to running other individual frontend or backend packages or even plugin dev entry points if the can be uniquely selected.The goal of this change is to reduce the number of different necessary scripts and align on
yarn startbeing the only command needed for local development, similar to howrepo testhandles testing in the repo. It also opens up for more powerful options, like the--plugin <pluginId>flag that runs the dev entry point of the selected plugin.The new script is installed as follows, replacing the existing
yarn startscript:{
"scripts": {
"start": "backstage-cli repo start"
}
}In order to help users migrate in existing projects, it is recommended to add the following scripts to the root
package.json:{
"scripts": {
"dev": "echo \"Use 'yarn start' instead\"",
"start-backend": "echo \"Use 'yarn start backend' instead\""
}
}For more information, run
yarn start --helponce the new command is installed. -
Updated dependencies
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/eslint-plugin@0.1.10
- @backstage/integration@1.16.3-next.0
- @backstage/release-manifests@0.0.12
- @backstage/types@1.2.1
@backstage/plugin-catalog@1.29.0-next.2
Minor Changes
-
61d350f: BREAKING ALPHA:
CatalogFilterBlueprint, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.+ import { CatalogFilterBlueprint } from '@backstage/plugin-catalog-react/alpha';
- import { CatalogFilterBlueprint } from '@backstage/plugin-catalog/alpha'; -
09afd67: Adds
EntityContextMenuItemBlueprintto enable extending the entity page's context menu with user defined items.For example:
import { EntityContextMenuItemBlueprint } from '@backstage/plugin-catalog-react/alpha';
const myCustomHref = EntityContextMenuItemBlueprint.make({
name: 'test-href',
params: {
icon: <span>Example Icon</span>,
useProps: () => ({
title: 'Example Href',
href: '/example-path',
disabled: false,
component: 'a',
}),
},
});
const myCustomOnClick = EntityContextMenuItemBlueprint.make({
name: 'test-click',
params: {
icon: <span>Test Icon</span>,
useProps: () => ({
title: 'Example onClick',
onClick: () => window.alert('Hello world!'),
disabled: false,
}),
},
});
Patch Changes
-
e655f62: Updated
README.mdto useyarn startinstead ofyarn dev. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-search-react@1.8.8-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-scaffolder-common@1.5.10
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-catalog-react@1.17.0-next.2
Minor Changes
-
61d350f: BREAKING ALPHA:
CatalogFilterBlueprint, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.+ import { CatalogFilterBlueprint } from '@backstage/plugin-catalog-react/alpha';
- import { CatalogFilterBlueprint } from '@backstage/plugin-catalog/alpha'; -
09afd67: Adds
EntityContextMenuItemBlueprintto enable extending the entity page's context menu with user defined items.For example:
import { EntityContextMenuItemBlueprint } from '@backstage/plugin-catalog-react/alpha';
const myCustomHref = EntityContextMenuItemBlueprint.make({
name: 'test-href',
params: {
icon: <span>Example Icon</span>,
useProps: () => ({
title: 'Example Href',
href: '/example-path',
disabled: false,
component: 'a',
}),
},
});
const myCustomOnClick = EntityContextMenuItemBlueprint.make({
name: 'test-click',
params: {
icon: <span>Test Icon</span>,
useProps: () => ({
title: 'Example onClick',
onClick: () => window.alert('Hello world!'),
disabled: false,
}),
},
});
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/frontend-test-utils@0.3.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-scaffolder@1.30.0-next.2
Minor Changes
-
76681a5: BREAKING ALPHA: Extract out schema rendering components into their own Component. This means that the translation keys have changed for
actionsPage.content.tableCell.*. They have moved to their own root keyrenderSchema.*instead....
- tableCell: {
- name: 'Name',
- title: 'Title',
- description: 'Description',
- type: 'Type',
- },
- noRowsDescription: 'No schema defined',
...
+ renderSchema: {
+ tableCell: {
+ name: 'Name',
+ title: 'Title',
+ description: 'Description',
+ type: 'Type',
+ },
+ undefined: 'No schema defined',
+ },
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
407eba1: Tweaked template editor tooltip to mention HTTPS requirement.
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-scaffolder-react@1.15.0-next.2
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/app-defaults@1.6.1-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/core-app-api@1.16.1-next.0
- @backstage/theme@0.6.5-next.0
@backstage/backend-defaults@0.9.0-next.2
Patch Changes
- 175528c: Adds
backend.auditor.severityLogLevelMappingsto map severity levels to log levels. - Updated dependencies
- @backstage/backend-app-api@1.2.1
- @backstage/backend-dev-utils@0.1.5
- @backstage/backend-plugin-api@1.2.1
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-permission-node@0.9.0
@backstage/backend-dynamic-feature-service@0.6.2-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1-next.1
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.31
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-events-backend@0.5.0
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
- @backstage/plugin-scaffolder-node@0.8.1-next.1
- @backstage/plugin-search-backend-node@1.3.9
- @backstage/plugin-search-common@1.2.17
@backstage/backend-test-utils@1.3.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-app-api@1.2.1
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-events-node@0.4.9
@backstage/core-app-api@1.16.1-next.0
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/core-compat-api@0.4.1-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/version-bridge@1.0.11
@backstage/core-components@0.17.1-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/theme@0.6.5-next.0
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/version-bridge@1.0.11
@backstage/core-plugin-api@1.10.6-next.0
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/create-app@0.6.1-next.2
Patch Changes
-
edabbd6: Updated the root
package.jsonin the template to use the newbackstage-cli repo startcommand.The
yarn devcommand is now redundant and has been removed from the template. We recommend existing projects to add these or similar scripts to help redirect users:{
"scripts": {
"dev": "echo \"Use 'yarn start' instead\"",
"start-backend": "echo \"Use 'yarn start backend' instead\""
}
} -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/dev-utils@1.1.9-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/app-defaults@1.6.1-next.1
- @backstage/core-app-api@1.16.1-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/catalog-model@1.7.3
@backstage/frontend-app-api@0.11.1-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/frontend-defaults@0.2.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/core-app-api@1.16.1-next.0
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-defaults@0.2.1-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/frontend-app-api@0.11.1-next.1
- @backstage/plugin-app@0.1.8-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/frontend-plugin-api@0.10.1-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-test-utils@0.3.1-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/frontend-app-api@0.11.1-next.1
- @backstage/test-utils@1.7.7-next.0
- @backstage/plugin-app@0.1.8-next.1
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/integration-react@1.2.6-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/config@1.3.2
- @backstage/integration@1.16.3-next.0
@techdocs/cli@1.9.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/plugin-techdocs-node@1.13.2-next.2
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
@backstage/test-utils@1.7.7-next.0
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/core-app-api@1.16.1-next.0
- @backstage/theme@0.6.5-next.0
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
@backstage/theme@0.6.5-next.0
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
@backstage/plugin-api-docs@0.12.6-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog@1.29.0-next.2
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-model@1.7.3
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-api-docs-module-protoc-gen-doc@0.1.10-next.0
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
@backstage/plugin-app@0.1.8-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/theme@0.6.5-next.0
- @backstage/types@1.2.1
@backstage/plugin-app-visualizer@0.1.18-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
@backstage/plugin-auth-backend@0.24.5-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
- @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2-next.2
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.2-next.0
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
- @backstage/plugin-auth-backend-module-github-provider@0.3.1
- @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
- @backstage/plugin-auth-backend-module-google-provider@0.3.1
- @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
- @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
- @backstage/plugin-auth-backend-module-oidc-provider@0.4.2-next.2
- @backstage/plugin-auth-backend-module-okta-provider@0.2.1
- @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
- @backstage/plugin-auth-node@0.6.1
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.5-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.1
@backstage/plugin-auth-backend-module-oidc-provider@0.4.2-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.5-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
@backstage/plugin-auth-react@0.1.14-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/errors@1.2.7
@backstage/plugin-catalog-backend@1.32.1-next.1
Patch Changes
- 7cc4995: Fix for duplicate results in
queryEntitieswhen providing anorderFieldparameter - Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/plugin-search-backend-module-catalog@0.3.3-next.0
- @backstage/backend-openapi-utils@0.5.1
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-catalog-backend-module-aws@0.4.10-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-catalog-backend-module-azure@0.3.4-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-openapi-utils@0.5.1
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.7-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.29-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-bitbucket-server@0.4.0-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-gcp@0.3.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-catalog-backend-module-gerrit@0.3.1-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-github@0.8.0-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1-next.1
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-github-org@0.3.9-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/plugin-catalog-backend-module-github@0.8.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-gitlab@0.6.5-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.8-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/plugin-catalog-backend-module-gitlab@0.6.5-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.6.5-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1-next.1
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-catalog-backend-module-ldap@0.11.4-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-logs@0.1.9-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1-next.1
- @backstage/backend-plugin-api@1.2.1
- @backstage/plugin-events-node@0.4.9
@backstage/plugin-catalog-backend-module-msgraph@0.6.9-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-openapi@0.2.9-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/integration@1.16.3-next.0
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-puppetdb@0.2.9-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/plugin-catalog-backend-module-unprocessed@0.5.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.7
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-catalog-graph@0.4.18-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/types@1.2.1
@backstage/plugin-catalog-import@0.12.13-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-node@1.16.3-next.0
Patch Changes
- 98b7131: Use a different ID for the deprecated alpha version of the catalog service, as it has a different type definition and cannot be used interchangeably with the non-alpha version.
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
@backstage/plugin-catalog-unprocessed-entities@0.2.16-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
@backstage/plugin-config-schema@0.1.67-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-devtools@0.1.26-next.2
Patch Changes
-
e655f62: Updated
README.mdto useyarn startinstead ofyarn dev. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/errors@1.2.7
- @backstage/plugin-devtools-common@0.1.15
@backstage/plugin-devtools-backend@0.5.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-devtools-common@0.1.15
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
@backstage/plugin-home@0.8.7-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/core-app-api@1.16.1-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-home-react@0.1.25-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
@backstage/plugin-home-react@0.1.25-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
@backstage/plugin-kubernetes@0.12.6-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-kubernetes-react@0.5.6-next.1
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-model@1.7.3
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-kubernetes-backend@0.19.5-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-kubernetes-common@0.9.4
- @backstage/plugin-kubernetes-node@0.2.4
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
@backstage/plugin-kubernetes-cluster@0.0.24-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-kubernetes-react@0.5.6-next.1
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-model@1.7.3
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-kubernetes-react@0.5.6-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-notifications@0.5.4-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/theme@0.6.5-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-signals-react@0.0.12-next.0
@backstage/plugin-notifications-backend@0.5.5-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-notifications-node@0.2.13
- @backstage/plugin-signals-node@0.1.18
@backstage/plugin-notifications-backend-module-email@0.3.8-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-notifications-node@0.2.13
@backstage/plugin-org@0.6.38-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-model@1.7.3
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-org-react@0.1.37-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
@backstage/plugin-permission-react@0.4.33-next.0
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/config@1.3.2
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-scaffolder-backend@1.32.0-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/plugin-scaffolder-backend-module-github@0.6.2-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-bitbucket-cloud-common@0.2.29-next.0
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
- @backstage/plugin-scaffolder-backend-module-azure@0.2.8-next.1
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.9-next.1
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.8-next.1
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.8-next.1
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.8-next.1
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.8-next.1
- @backstage/plugin-scaffolder-backend-module-gitlab@0.8.2-next.1
- @backstage/plugin-scaffolder-common@1.5.10
- @backstage/plugin-scaffolder-node@0.8.1-next.1
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-node@0.8.1-next.1
@backstage/plugin-scaffolder-backend-module-github@0.6.2-next.2
Patch Changes
- 411c879: Add support to github:repo:create to allow branch updates
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-node@0.8.1-next.1
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-node@0.8.1-next.1
- @backstage/plugin-scaffolder-node-test-utils@0.2.1-next.2
@backstage/plugin-scaffolder-node-test-utils@0.2.1-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1
- @backstage/backend-test-utils@1.3.2-next.2
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-node@0.8.1-next.1
@backstage/plugin-scaffolder-react@1.15.0-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/plugin-search@1.4.25-next.2
Patch Changes
-
e655f62: Updated
README.mdto useyarn startinstead ofyarn dev. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-search-react@1.8.8-next.1
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend@2.0.1-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-openapi-utils@0.5.1
- @backstage/backend-plugin-api@1.2.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
- @backstage/plugin-search-backend-node@1.3.9
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-catalog@0.3.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-backend-node@1.3.9
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-techdocs@0.4.1-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/plugin-techdocs-node@1.13.2-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-backend-node@1.3.9
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-react@1.8.8-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/theme@0.6.5-next.0
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-signals@0.0.18-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/theme@0.6.5-next.0
- @backstage/types@1.2.1
- @backstage/plugin-signals-react@0.0.12-next.0
@backstage/plugin-signals-react@0.0.12-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/types@1.2.1
@backstage/plugin-techdocs@1.12.5-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-techdocs-react@1.2.16-next.1
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-search-react@1.8.8-next.1
- @backstage/plugin-auth-react@0.1.14-next.1
- @backstage/theme@0.6.5-next.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-addons-test-utils@1.0.47-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog@1.29.0-next.2
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-techdocs-react@1.2.16-next.1
- @backstage/core-app-api@1.16.1-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-search-react@1.8.8-next.1
- @backstage/test-utils@1.7.7-next.0
- @backstage/plugin-techdocs@1.12.5-next.2
@backstage/plugin-techdocs-backend@2.0.1-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/plugin-techdocs-node@1.13.2-next.2
- @backstage/plugin-search-backend-module-techdocs@0.4.1-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-module-addons-contrib@1.1.23-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-techdocs-react@1.2.16-next.1
- @backstage/integration@1.16.3-next.0
@backstage/plugin-techdocs-node@1.13.2-next.2
Patch Changes
- 2d7a3b8: Update Azure file retrieval logic from storing file in buffer array to piping to res for better memory efficiency.
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration@1.16.3-next.0
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-react@1.2.16-next.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/version-bridge@1.0.11
@backstage/plugin-user-settings@0.8.21-next.2
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/core-app-api@1.16.1-next.0
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-signals-react@0.0.12-next.0
- @backstage/plugin-user-settings-common@0.0.1
@backstage/plugin-user-settings-backend@0.3.1-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-signals-node@0.1.18
- @backstage/plugin-user-settings-common@0.0.1
example-app@0.2.108-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-devtools@0.1.26-next.2
- @backstage/plugin-catalog@1.29.0-next.2
- @backstage/plugin-search@1.4.25-next.2
- @backstage/cli@0.32.0-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.23-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.2.16-next.2
- @backstage/integration-react@1.2.6-next.1
- @backstage/plugin-kubernetes-cluster@0.0.24-next.2
- @backstage/frontend-app-api@0.11.1-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-scaffolder-react@1.15.0-next.2
- @backstage/plugin-catalog-import@0.12.13-next.2
- @backstage/plugin-techdocs-react@1.2.16-next.1
- @backstage/app-defaults@1.6.1-next.1
- @backstage/core-app-api@1.16.1-next.0
- @backstage/plugin-catalog-graph@0.4.18-next.2
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-notifications@0.5.4-next.2
- @backstage/plugin-user-settings@0.8.21-next.2
- @backstage/plugin-search-react@1.8.8-next.1
- @backstage/plugin-auth-react@0.1.14-next.1
- @backstage/plugin-kubernetes@0.12.6-next.2
- @backstage/plugin-scaffolder@1.30.0-next.2
- @backstage/plugin-api-docs@0.12.6-next.2
- @backstage/plugin-techdocs@1.12.5-next.2
- @backstage/canon@0.3.0-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/plugin-home@0.8.7-next.2
- @backstage/plugin-org@0.6.38-next.2
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-signals@0.0.18-next.1
example-app-next@0.0.22-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.29.0-next.2
- @backstage/plugin-search@1.4.25-next.2
- @backstage/cli@0.32.0-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.23-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.2.16-next.2
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/frontend-defaults@0.2.1-next.1
- @backstage/integration-react@1.2.6-next.1
- @backstage/plugin-kubernetes-cluster@0.0.24-next.2
- @backstage/frontend-app-api@0.11.1-next.1
- @backstage/core-compat-api@0.4.1-next.2
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-permission-react@0.4.33-next.0
- @backstage/plugin-scaffolder-react@1.15.0-next.2
- @backstage/plugin-app-visualizer@0.1.18-next.1
- @backstage/plugin-catalog-import@0.12.13-next.2
- @backstage/plugin-techdocs-react@1.2.16-next.1
- @backstage/app-defaults@1.6.1-next.1
- @backstage/core-app-api@1.16.1-next.0
- @backstage/plugin-catalog-graph@0.4.18-next.2
- @backstage/plugin-catalog-react@1.17.0-next.2
- @backstage/plugin-notifications@0.5.4-next.2
- @backstage/plugin-user-settings@0.8.21-next.2
- @backstage/plugin-search-react@1.8.8-next.1
- @backstage/plugin-auth-react@0.1.14-next.1
- @backstage/plugin-kubernetes@0.12.6-next.2
- @backstage/plugin-scaffolder@1.30.0-next.2
- @backstage/plugin-api-docs@0.12.6-next.2
- @backstage/plugin-techdocs@1.12.5-next.2
- @backstage/canon@0.3.0-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/plugin-home@0.8.7-next.2
- @backstage/plugin-app@0.1.8-next.1
- @backstage/plugin-org@0.6.38-next.2
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-signals@0.0.18-next.1
app-next-example-plugin@0.0.22-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/core-components@0.17.1-next.1
example-backend@0.0.37-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1-next.1
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/plugin-scaffolder-backend-module-github@0.6.2-next.2
- @backstage/plugin-auth-backend@0.24.5-next.2
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.1-next.0
- @backstage/plugin-catalog-backend-module-openapi@0.2.9-next.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7-next.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.7-next.0
- @backstage/plugin-kubernetes-backend@0.19.5-next.0
- @backstage/plugin-notifications-backend@0.5.5-next.1
- @backstage/plugin-scaffolder-backend@1.32.0-next.2
- @backstage/plugin-search-backend-module-catalog@0.3.3-next.0
- @backstage/plugin-search-backend-module-techdocs@0.4.1-next.2
- @backstage/plugin-techdocs-backend@2.0.1-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-model@1.7.3
- @backstage/plugin-app-backend@0.5.0
- @backstage/plugin-auth-backend-module-github-provider@0.3.1
- @backstage/plugin-auth-backend-module-guest-provider@0.2.6
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-devtools-backend@0.5.4-next.2
- @backstage/plugin-events-backend@0.5.0
- @backstage/plugin-permission-backend@0.5.55
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.6
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
- @backstage/plugin-proxy-backend@0.6.0
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.9-next.1
- @backstage/plugin-search-backend@2.0.1-next.2
- @backstage/plugin-search-backend-module-explore@0.3.0
- @backstage/plugin-search-backend-node@1.3.9
- @backstage/plugin-signals-backend@0.3.2
example-backend-legacy@0.2.109-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1-next.1
- @backstage/plugin-catalog-node@1.16.3-next.0
- @backstage/backend-defaults@0.9.0-next.2
- @backstage/plugin-auth-backend@0.24.5-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7-next.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.7-next.0
- @backstage/plugin-kubernetes-backend@0.19.5-next.0
- @backstage/plugin-scaffolder-backend@1.32.0-next.2
- @backstage/plugin-search-backend-module-catalog@0.3.3-next.0
- @backstage/plugin-search-backend-module-techdocs@0.4.1-next.2
- @backstage/plugin-techdocs-backend@2.0.1-next.2
- @backstage/backend-plugin-api@1.2.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/integration@1.16.3-next.0
- @backstage/plugin-auth-node@0.6.1
- @backstage/plugin-events-backend@0.5.0
- @backstage/plugin-events-node@0.4.9
- @backstage/plugin-permission-backend@0.5.55
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.9.0
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.8-next.1
- @backstage/plugin-scaffolder-backend-module-gitlab@0.8.2-next.1
- @backstage/plugin-scaffolder-backend-module-rails@0.5.8-next.1
- @backstage/plugin-search-backend@2.0.1-next.2
- @backstage/plugin-search-backend-module-elasticsearch@1.7.0
- @backstage/plugin-search-backend-module-explore@0.3.0
- @backstage/plugin-search-backend-module-pg@0.5.42
- @backstage/plugin-search-backend-node@1.3.9
- @backstage/plugin-signals-backend@0.3.2
- @backstage/plugin-signals-node@0.1.18
e2e-test@0.2.27-next.2
Patch Changes
- Updated dependencies
- @backstage/create-app@0.6.1-next.2
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.7
@internal/frontend@0.0.8-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@internal/scaffolder@0.0.8-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1-next.1
- @backstage/plugin-scaffolder-react@1.15.0-next.2
techdocs-cli-embedded-app@0.2.107-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.29.0-next.2
- @backstage/cli@0.32.0-next.2
- @backstage/integration-react@1.2.6-next.1
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0
- @backstage/plugin-techdocs-react@1.2.16-next.1
- @backstage/app-defaults@1.6.1-next.1
- @backstage/core-app-api@1.16.1-next.0
- @backstage/test-utils@1.7.7-next.0
- @backstage/plugin-techdocs@1.12.5-next.2
- @backstage/theme@0.6.5-next.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
@internal/plugin-todo-list@1.0.38-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.1-next.1
- @backstage/core-plugin-api@1.10.6-next.0