Release v1.49.0-next.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.49.0-next.0
@backstage/cli-common@0.2.0-next.0
Minor Changes
-
56bd494: Added
targetPathsandfindOwnPathsas replacements forfindPaths, with a cleaner separation between target project paths and package-relative paths.To migrate existing
findPathsusage:// Before
import { findPaths } from '@backstage/cli-common';
const paths = findPaths(__dirname);
// After — for target project paths (cwd-based):
import { targetPaths } from '@backstage/cli-common';
// paths.targetDir → targetPaths.dir
// paths.targetRoot → targetPaths.rootDir
// paths.resolveTarget('src') → targetPaths.resolve('src')
// paths.resolveTargetRoot('yarn.lock') → targetPaths.resolveRoot('yarn.lock')
// After — for package-relative paths:
import { findOwnPaths } from '@backstage/cli-common';
const own = findOwnPaths(__dirname);
// paths.ownDir → own.dir
// paths.ownRoot → own.rootDir
// paths.resolveOwn('config/jest.js') → own.resolve('config/jest.js')
// paths.resolveOwnRoot('tsconfig.json') → own.resolveRoot('tsconfig.json')
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.7
@backstage/integration@1.21.0-next.0
Minor Changes
- d933f62: Add configurable throttling and retry mechanism for GitLab integration.
Patch Changes
- Updated dependencies
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
@backstage/plugin-catalog-backend@3.5.0-next.0
Minor Changes
-
bf71677: Added opentelemetry metrics for SCM events:
catalog.events.scm.messageswith attributeeventType: Counter for the number of SCM events actually received by the catalog backend. TheeventTypeis currently eitherlocationorrepository.
Patch Changes
- 6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1 - fbf382f: Minor internal optimisation
- 1ee5b28: Migrates existing catalog metrics to use the alpha MetricsService. This release is a 1:1 migration with no breaking changes.
- 3181973: Changed the
searchtable foreign key to point tofinal_entitiesinstead ofrefresh_state - Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/backend-openapi-utils@0.6.7-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/filter-predicates@0.1.0
- @backstage/types@1.2.2
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/plugin-catalog-node@2.1.0-next.0
Minor Changes
-
bf71677: Added the ability for SCM events subscribers to mark the fact that they have taken actions based on events, which produces output metrics:
catalog.events.scm.actionswith attributeaction: Counter for the number of actions actually taken by catalog internals or other subscribers, based on SCM events. Theactionis currently eithercreate,delete,refresh, ormove.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/backend-test-utils@1.11.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/plugin-notifications-backend-module-slack@0.4.0-next.0
Minor Changes
- 749ba60: Add an extension for custom Slack message layouts
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-notifications-common@0.2.1
- @backstage/plugin-notifications-node@0.2.24-next.0
@backstage/app-defaults@1.7.6-next.0
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/backend-app-api@1.5.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
@backstage/backend-defaults@0.15.3-next.0
Patch Changes
- 6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1 - d933f62: Add configurable throttling and retry mechanism for GitLab integration.
- b99158a: Fixed
yarn backstage-cli config:check --strict --config app-config.yamlconfig validation error by adding an optionaldefaulttype discriminator to PostgreSQL connection configuration, allowingconfig:checkto properly validatedefaultconnection configurations. - 1ee5b28: Adds an alpha
MetricsServiceto provide a unified interface for metrics instrumentation across Backstage plugins. - Updated dependencies
- @backstage/cli-node@0.2.19-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/config-loader@1.10.9-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-app-api@1.5.1-next.0
- @backstage/backend-dev-utils@0.1.7
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.20
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/backend-dynamic-feature-service@0.7.10-next.0
Patch Changes
- 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/cli-node@0.2.19-next.0
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/plugin-catalog-backend@3.5.0-next.0
- @backstage/config-loader@1.10.9-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-openapi-utils@0.6.7-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-app-node@0.1.43-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-events-backend@0.5.12-next.0
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
- @backstage/plugin-scaffolder-node@0.12.6-next.0
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/backend-openapi-utils@0.6.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/backend-plugin-api@1.7.1-next.0
Patch Changes
- 1ee5b28: Adds an alpha
MetricsServiceto provide a unified interface for metrics instrumentation across Backstage plugins. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/backend-test-utils@1.11.1-next.0
Patch Changes
- 1ee5b28: Adds a new metrics service mock to be leveraged in tests
- Updated dependencies
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-app-api@1.5.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-permission-common@0.9.6
@backstage/catalog-client@1.13.1-next.0
Patch Changes
- d2494d6: Minor update to catalog client docs
- Updated dependencies
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/filter-predicates@0.1.0
@backstage/cli@0.35.5-next.0
Patch Changes
-
246877a: Updated dependency
bfjto^9.0.2. -
bba2e49: Internal refactor to use new concurrency utilities from
@backstage/cli-node. -
fd50cb3: Added
translations exportandtranslations importcommands for managing translation files.The
translations exportcommand discovers allTranslationRefdefinitions across frontend plugin dependencies and exports their default messages as JSON files. Thetranslations importcommand generatesTranslationResourcewiring code from translated JSON files, ready to be plugged into the app.Both commands support a
--patternoption for controlling the message file layout, for example--pattern '{lang}/{id}.json'for language-based directory grouping. -
6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1 -
70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. -
de62a9d: Upgraded
commanderdependency from^12.0.0to^14.0.3across all CLI packages. -
092b41f: Updated dependency
webpackto~5.105.0. -
Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/cli-node@0.2.19-next.0
- @backstage/eslint-plugin@0.2.2-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/config-loader@1.10.9-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/module-federation-common@0.1.0
- @backstage/release-manifests@0.0.13
- @backstage/types@1.2.2
@backstage/cli-node@0.2.19-next.0
Patch Changes
- 06c2015: Added
runConcurrentTasksandrunWorkerQueueThreadsutilities, moved from the@backstage/cliinternal code. - 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/codemods@0.1.55-next.0
Patch Changes
- 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - de62a9d: Upgraded
commanderdependency from^12.0.0to^14.0.3across all CLI packages. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
@backstage/config-loader@1.10.9-next.0
Patch Changes
- 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/core-app-api@1.19.6-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.3.6
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
@backstage/core-compat-api@0.5.9-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-app-react@0.2.1-next.0
@backstage/core-components@0.18.8-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.3.6
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/theme@0.7.2
- @backstage/version-bridge@1.0.12
@backstage/core-plugin-api@1.12.4-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
@backstage/create-app@0.7.10-next.0
Patch Changes
- 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - de62a9d: Upgraded
commanderdependency from^12.0.0to^14.0.3across all CLI packages. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
@backstage/dev-utils@1.1.21-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/app-defaults@1.7.6-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/theme@0.7.2
@backstage/eslint-plugin@0.2.2-next.0
Patch Changes
- 6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1
@backstage/frontend-app-api@0.15.1-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/frontend-defaults@0.4.1-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
@backstage/frontend-defaults@0.4.1-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-app@0.4.1-next.0
- @backstage/config@1.3.6
- @backstage/core-components@0.18.8-next.0
- @backstage/errors@1.2.7
- @backstage/frontend-app-api@0.15.1-next.0
@backstage/frontend-dynamic-feature-loader@0.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/config@1.3.6
- @backstage/module-federation-common@0.1.0
@backstage/frontend-plugin-api@0.14.2-next.0
Patch Changes
- 9c81af9: Made the
pluginIdproperty optional in theFrontendFeaturetype, allowing plugins published against older versions of the framework to be used without type errors. - Updated dependencies
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
@backstage/frontend-test-utils@0.5.1-next.0
Patch Changes
- 909c742: Switched
MockTranslationApiand related test utility imports from@backstage/core-plugin-api/alphato the stable@backstage/frontend-plugin-apiexport. TheTranslationApitype in the API report is now sourced from a single package. This has no effect on runtime behavior. - Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-app@0.4.1-next.0
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/frontend-app-api@0.15.1-next.0
- @backstage/test-utils@1.7.16-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-app-react@0.2.1-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/integration-react@1.2.16-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/config@1.3.6
- @backstage/core-plugin-api@1.12.4-next.0
@backstage/repo-tools@0.16.6-next.0
Patch Changes
- 6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1 - 2a51546: Fixed prettier existence checks in OpenAPI commands to use
fs.pathExistsinstead of checking the resolved path string, which was always truthy. - 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - de62a9d: Upgraded
commanderdependency from^12.0.0to^14.0.3across all CLI packages. - 18a946c: Updated
@microsoft/api-extractorto7.57.3and added tests forgetTsDocConfig - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/cli-node@0.2.19-next.0
- @backstage/config-loader@1.10.9-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
@techdocs/cli@1.10.6-next.0
Patch Changes
- 70fc178: Migrated from deprecated
findPathstotargetPathsandfindOwnPathsfrom@backstage/cli-common. - de62a9d: Upgraded
commanderdependency from^12.0.0to^14.0.3across all CLI packages. - Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/plugin-techdocs-node@1.14.3-next.0
@backstage/test-utils@1.7.16-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
- @backstage/types@1.2.2
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/ui@0.12.1-next.0
Patch Changes
-
a1f4bee: Made Accordion a
bgprovider so nested components like Button auto-increment their background level. UpdateduseDefinitionto resolvebgpropDefdefaults for provider components. -
8909359: Fixed focus-visible outline styles for Menu and Select components.
Affected components: Menu, Select
-
0f462f8: Improved type safety in
useDefinitionby centralizing prop resolution and strengthening theBgPropsConstraintto require thatbgprovider components declarechildrenas a required prop in their OwnProps type. -
8909359: Added proper cursor styles for RadioGroup items.
Affected components: RadioGroup
-
Updated dependencies
- @backstage/version-bridge@1.0.12
@backstage/plugin-api-docs@0.13.5-next.0
Patch Changes
- 9c9d425: Fixed invisible text in parameter input fields when using dark mode in OpenAPI definition pages
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog@1.33.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-app@0.4.1-next.0
Patch Changes
- 909c742: Switched translation API imports (
translationApiRef,appLanguageApiRef) from the alpha@backstage/core-plugin-api/alphapath to the stable@backstage/frontend-plugin-apiexport. This has no effect on runtime behavior. - Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/theme@0.7.2
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-app-react@0.2.1-next.0
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-app-backend@0.5.12-next.0
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.9-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-app-node@0.1.43-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-app-node@0.1.43-next.0
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.9-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
@backstage/plugin-app-react@0.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-plugin-api@1.12.4-next.0
@backstage/plugin-app-visualizer@0.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
@backstage/plugin-auth@0.1.6-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/errors@1.2.7
- @backstage/theme@0.7.2
@backstage/plugin-auth-backend@0.27.1-next.0
Patch Changes
- 6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1 - 619be54: Update migrations to be reversible
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-auth0-provider@0.3.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.14-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.27.1-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.18-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-github-provider@0.5.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-gitlab-provider@0.4.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-google-provider@0.3.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-guest-provider@0.2.17-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.18-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-oidc-provider@0.4.14-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.27.1-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-okta-provider@0.2.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-openshift-provider@0.1.5-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/plugin-auth-node@0.6.14-next.0
@backstage/plugin-auth-node@0.6.14-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/plugin-auth-react@0.1.25-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
@backstage/plugin-bitbucket-cloud-common@0.3.8-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
@backstage/plugin-catalog@1.33.1-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/plugin-search-react@1.10.5-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.16-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-react@0.4.41-next.0
- @backstage/plugin-scaffolder-common@1.7.7-next.0
- @backstage/plugin-search-common@1.2.22
- @backstage/plugin-techdocs-common@0.1.1
- @backstage/plugin-techdocs-react@1.3.9-next.0
@backstage/plugin-catalog-backend-module-aws@0.4.21-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.20
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-kubernetes-common@0.9.10
@backstage/plugin-catalog-backend-module-azure@0.3.15-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.12-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-openapi-utils@0.6.7-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.9-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/plugin-bitbucket-cloud-common@0.3.8-next.0
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.9-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-gcp@0.3.17-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/plugin-kubernetes-common@0.9.10
@backstage/plugin-catalog-backend-module-gerrit@0.3.12-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-catalog-backend-module-gitea@0.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-catalog-backend-module-github@0.12.3-next.0
Patch Changes
- 6738cf0: build(deps): bump
minimatchfrom 9.0.5 to 10.2.1 - Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-github-org@0.3.20-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-github@0.12.3-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-gitlab@0.8.1-next.0
Patch Changes
- d933f62: Add configurable throttling and retry mechanism for GitLab integration.
- Updated dependencies
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.19-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-gitlab@0.8.1-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.10-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/plugin-catalog-backend@3.5.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-permission-common@0.9.6
@backstage/plugin-catalog-backend-module-ldap@0.12.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-catalog-backend-module-logs@0.1.20-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@3.5.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-catalog-backend-module-msgraph@0.9.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-catalog-backend-module-openapi@0.2.20-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/types@1.2.2
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-catalog-backend-module-puppetdb@0.2.20-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-scaffolder-common@1.7.7-next.0
@backstage/plugin-catalog-backend-module-unprocessed@0.6.9-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.13
- @backstage/plugin-permission-common@0.9.6
@backstage/plugin-catalog-graph@0.5.8-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/types@1.2.2
@backstage/plugin-catalog-import@0.13.11-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.16-next.0
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-catalog-react@2.0.1-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/frontend-test-utils@0.5.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/filter-predicates@0.1.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-catalog-unprocessed-entities@0.2.27-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.13
- @backstage/plugin-devtools-react@0.1.2-next.0
@backstage/plugin-config-schema@0.1.78-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/plugin-devtools@0.1.37-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/plugin-devtools-common@0.1.22
- @backstage/plugin-devtools-react@0.1.2-next.0
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-devtools-backend@0.5.15-next.0
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/config-loader@1.10.9-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-devtools-common@0.1.22
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/plugin-devtools-react@0.1.2-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-plugin-api@1.12.4-next.0
@backstage/plugin-events-backend@0.5.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-openapi-utils@0.6.7-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-aws-sqs@0.4.20-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-azure@0.2.29-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.29-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-bitbucket-server@0.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-gerrit@0.2.29-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-github@0.4.10-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-gitlab@0.3.10-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-google-pubsub@0.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/filter-predicates@0.1.0
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-module-kafka@0.3.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-backend-test-utils@0.1.53-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-events-node@0.4.20-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/plugin-gateway-backend@1.1.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
@backstage/plugin-home@0.9.3-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
- @backstage/plugin-home-react@0.1.36-next.0
@backstage/plugin-home-react@0.1.36-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
@backstage/plugin-kubernetes@0.12.17-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/plugin-kubernetes-common@0.9.10
- @backstage/plugin-kubernetes-react@0.5.17-next.0
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-kubernetes-backend@0.21.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.20
- @backstage/types@1.2.2
- @backstage/plugin-kubernetes-common@0.9.10
- @backstage/plugin-kubernetes-node@0.4.2-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/plugin-kubernetes-cluster@0.0.35-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/plugin-kubernetes-common@0.9.10
- @backstage/plugin-kubernetes-react@0.5.17-next.0
- @backstage/plugin-permission-react@0.4.41-next.0
@backstage/plugin-kubernetes-node@0.4.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/types@1.2.2
- @backstage/plugin-kubernetes-common@0.9.10
@backstage/plugin-kubernetes-react@0.5.17-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-kubernetes-common@0.9.10
@backstage/plugin-mcp-actions-backend@0.1.10-next.0
Patch Changes
-
dc81af1: Adds two new metrics to track MCP server operations and sessions.
mcp.server.operation.duration: The duration taken to process an individual MCP operationmcp.server.session.duration: The duration of the MCP session from the perspective of the server
-
Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
@backstage/plugin-mui-to-bui@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
@backstage/plugin-notifications@0.5.15-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/theme@0.7.2
- @backstage/plugin-notifications-common@0.2.1
- @backstage/plugin-signals-react@0.0.20-next.0
@backstage/plugin-notifications-backend@0.6.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-notifications-common@0.2.1
- @backstage/plugin-notifications-node@0.2.24-next.0
- @backstage/plugin-signals-node@0.1.29-next.0
@backstage/plugin-notifications-backend-module-email@0.3.19-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/integration-aws-node@0.1.20
- @backstage/types@1.2.2
- @backstage/plugin-notifications-common@0.2.1
- @backstage/plugin-notifications-node@0.2.24-next.0
@backstage/plugin-notifications-node@0.2.24-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/plugin-notifications-common@0.2.1
- @backstage/plugin-signals-node@0.1.29-next.0
@backstage/plugin-org@0.6.50-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/plugin-catalog-common@1.1.8
@backstage/plugin-org-react@0.1.48-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
@backstage/plugin-permission-backend@0.7.10-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.17-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
@backstage/plugin-permission-node@0.10.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-permission-common@0.9.6
@backstage/plugin-permission-react@0.4.41-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.3.6
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/plugin-permission-common@0.9.6
@backstage/plugin-proxy-backend@0.6.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/types@1.2.2
- @backstage/plugin-proxy-node@0.1.13-next.0
@backstage/plugin-proxy-node@0.1.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
@backstage/plugin-scaffolder@1.35.5-next.0
Patch Changes
- bd5b842: Added a new
ui:autoSelectoption to the EntityPicker field that controls whether an entity is automatically selected when the field loses focus. When set tofalse, the field will remain empty if the user closes it without explicitly selecting an entity, preventing unintentional selections. Defaults totruefor backward compatibility. - ee87720: Added back the
formFieldsApiRefandScaffolderFormFieldsApialpha exports that were unintentionally removed. - Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.16-next.0
- @backstage/types@1.2.2
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-react@0.4.41-next.0
- @backstage/plugin-scaffolder-common@1.7.7-next.0
- @backstage/plugin-scaffolder-react@1.19.8-next.0
- @backstage/plugin-techdocs-common@0.1.1
- @backstage/plugin-techdocs-react@1.3.9-next.0
@backstage/plugin-scaffolder-backend@3.1.4-next.0
Patch Changes
- 4e39e63: Removed unused dependencies
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-openapi-utils@0.6.7-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
- @backstage/plugin-scaffolder-common@1.7.7-next.0
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-azure@0.2.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.20-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.4-next.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.19-next.0
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.4-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-bitbucket-cloud-common@0.3.8-next.0
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.21-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-gcp@0.2.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-gitea@0.2.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-github@0.9.7-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-gitlab@0.11.4-next.0
Patch Changes
- 5730c8e: Added
maskedAndHiddenoption togitlab:projectVariable:createandpublish:gitlabaction to support creating GitLab project variables that are both masked and hidden. Updated gitbeaker to version 43.8.0 for proper type support. - Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-notifications@0.1.20-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-notifications-common@0.2.1
- @backstage/plugin-notifications-node@0.2.24-next.0
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-rails@0.5.19-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-sentry@0.3.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.20-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/types@1.2.2
- @backstage/plugin-scaffolder-node@0.12.6-next.0
- @backstage/plugin-scaffolder-node-test-utils@0.3.9-next.0
@backstage/plugin-scaffolder-common@1.7.7-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-permission-common@0.9.6
@backstage/plugin-scaffolder-node@0.12.6-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-scaffolder-common@1.7.7-next.0
@backstage/plugin-scaffolder-node-test-utils@0.3.9-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-test-utils@1.11.1-next.0
- @backstage/types@1.2.2
- @backstage/plugin-scaffolder-node@0.12.6-next.0
@backstage/plugin-scaffolder-react@1.19.8-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-permission-react@0.4.41-next.0
- @backstage/plugin-scaffolder-common@1.7.7-next.0
@backstage/plugin-search@1.6.2-next.0
Patch Changes
- d5eb954: Fixes the search component not registering the first search on navigate to the search page.
- Updated dependencies
- @backstage/plugin-search-react@1.10.5-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend@2.0.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/backend-openapi-utils@0.6.7-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend-module-catalog@0.3.13-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend-module-elasticsearch@1.8.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/integration-aws-node@0.1.20
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend-module-explore@0.3.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend-module-pg@0.5.53-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.18-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-backend-module-techdocs@0.4.12-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-search-common@1.2.22
- @backstage/plugin-techdocs-node@1.14.3-next.0
@backstage/plugin-search-backend-node@1.4.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-search-react@1.10.5-next.0
Patch Changes
- d5eb954: Fixes the search component not registering the first search on navigate to the search page.
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
- @backstage/plugin-search-common@1.2.22
@backstage/plugin-signals@0.0.29-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/theme@0.7.2
- @backstage/types@1.2.2
- @backstage/plugin-signals-react@0.0.20-next.0
@backstage/plugin-signals-backend@0.3.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-events-node@0.4.20-next.0
- @backstage/plugin-signals-node@0.1.29-next.0
@backstage/plugin-signals-node@0.1.29-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/config@1.3.6
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-events-node@0.4.20-next.0
@backstage/plugin-signals-react@0.0.20-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/types@1.2.2
@backstage/plugin-techdocs@1.17.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-search-react@1.10.5-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.16-next.0
- @backstage/theme@0.7.2
- @backstage/plugin-auth-react@0.1.25-next.0
- @backstage/plugin-search-common@1.2.22
- @backstage/plugin-techdocs-common@0.1.1
- @backstage/plugin-techdocs-react@1.3.9-next.0
@backstage/plugin-techdocs-addons-test-utils@2.0.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-search-react@1.10.5-next.0
- @backstage/plugin-catalog@1.33.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/plugin-techdocs@1.17.1-next.0
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/test-utils@1.7.16-next.0
- @backstage/plugin-techdocs-react@1.3.9-next.0
@backstage/plugin-techdocs-backend@2.1.6-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/plugin-catalog-node@2.1.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-client@1.13.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-techdocs-node@1.14.3-next.0
@backstage/plugin-techdocs-module-addons-contrib@1.1.34-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/integration@1.21.0-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/plugin-techdocs-react@1.3.9-next.0
@backstage/plugin-techdocs-node@1.14.3-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.21.0-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.20
- @backstage/plugin-search-common@1.2.22
- @backstage/plugin-techdocs-common@0.1.1
@backstage/plugin-techdocs-react@1.3.9-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/version-bridge@1.0.12
- @backstage/plugin-techdocs-common@0.1.1
@backstage/plugin-user-settings@0.9.1-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/errors@1.2.7
- @backstage/theme@0.7.2
- @backstage/types@1.2.2
- @backstage/plugin-signals-react@0.0.20-next.0
- @backstage/plugin-user-settings-common@0.1.0
@backstage/plugin-user-settings-backend@0.4.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.2
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-signals-node@0.1.29-next.0
- @backstage/plugin-user-settings-common@0.1.0
example-app@0.0.33-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/plugin-search-react@1.10.5-next.0
- @backstage/plugin-search@1.6.2-next.0
- @backstage/plugin-api-docs@0.13.5-next.0
- @backstage/cli@0.35.5-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-scaffolder@1.35.5-next.0
- @backstage/plugin-app@0.4.1-next.0
- @backstage/plugin-app-visualizer@0.2.1-next.0
- @backstage/plugin-catalog@1.33.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/plugin-techdocs@1.17.1-next.0
- @backstage/app-defaults@1.7.6-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-compat-api@0.5.9-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/frontend-app-api@0.15.1-next.0
- @backstage/frontend-defaults@0.4.1-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/theme@0.7.2
- @backstage/plugin-app-react@0.2.1-next.0
- @backstage/plugin-auth@0.1.6-next.0
- @backstage/plugin-auth-react@0.1.25-next.0
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-catalog-graph@0.5.8-next.0
- @backstage/plugin-catalog-import@0.13.11-next.0
- @backstage/plugin-catalog-unprocessed-entities@0.2.27-next.0
- @backstage/plugin-devtools@0.1.37-next.0
- @backstage/plugin-home@0.9.3-next.0
- @backstage/plugin-home-react@0.1.36-next.0
- @backstage/plugin-kubernetes@0.12.17-next.0
- @backstage/plugin-kubernetes-cluster@0.0.35-next.0
- @backstage/plugin-notifications@0.5.15-next.0
- @backstage/plugin-org@0.6.50-next.0
- @backstage/plugin-permission-react@0.4.41-next.0
- @backstage/plugin-scaffolder-react@1.19.8-next.0
- @backstage/plugin-search-common@1.2.22
- @backstage/plugin-signals@0.0.29-next.0
- @backstage/plugin-techdocs-module-addons-contrib@1.1.34-next.0
- @backstage/plugin-techdocs-react@1.3.9-next.0
- @backstage/plugin-user-settings@0.9.1-next.0
app-example-plugin@0.0.33-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/core-components@0.18.8-next.0
example-app-legacy@0.2.119-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/plugin-search-react@1.10.5-next.0
- @backstage/plugin-search@1.6.2-next.0
- @backstage/plugin-api-docs@0.13.5-next.0
- @backstage/cli@0.35.5-next.0
- @backstage/plugin-scaffolder@1.35.5-next.0
- @backstage/plugin-catalog@1.33.1-next.0
- @backstage/plugin-catalog-react@2.0.1-next.0
- @backstage/plugin-mui-to-bui@0.2.5-next.0
- @backstage/plugin-techdocs@1.17.1-next.0
- @backstage/app-defaults@1.7.6-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
- @backstage/frontend-app-api@0.15.1-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/theme@0.7.2
- @backstage/plugin-auth-react@0.1.25-next.0
- @backstage/plugin-catalog-common@1.1.8
- @backstage/plugin-catalog-graph@0.5.8-next.0
- @backstage/plugin-catalog-import@0.13.11-next.0
- @backstage/plugin-catalog-unprocessed-entities@0.2.27-next.0
- @backstage/plugin-devtools@0.1.37-next.0
- @backstage/plugin-home@0.9.3-next.0
- @backstage/plugin-home-react@0.1.36-next.0
- @backstage/plugin-kubernetes@0.12.17-next.0
- @backstage/plugin-kubernetes-cluster@0.0.35-next.0
- @backstage/plugin-notifications@0.5.15-next.0
- @backstage/plugin-org@0.6.50-next.0
- @backstage/plugin-permission-react@0.4.41-next.0
- @backstage/plugin-scaffolder-react@1.19.8-next.0
- @backstage/plugin-search-common@1.2.22
- @backstage/plugin-signals@0.0.29-next.0
- @backstage/plugin-techdocs-module-addons-contrib@1.1.34-next.0
- @backstage/plugin-techdocs-react@1.3.9-next.0
- @backstage/plugin-user-settings@0.9.1-next.0
example-backend@0.0.48-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.3-next.0
- @backstage/plugin-auth-backend@0.27.1-next.0
- @backstage/plugin-catalog-backend@3.5.0-next.0
- @backstage/plugin-scaffolder-backend@3.1.4-next.0
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/plugin-mcp-actions-backend@0.1.10-next.0
- @backstage/catalog-model@1.7.6
- @backstage/plugin-app-backend@0.5.12-next.0
- @backstage/plugin-auth-backend-module-github-provider@0.5.1-next.0
- @backstage/plugin-auth-backend-module-guest-provider@0.2.17-next.0
- @backstage/plugin-auth-backend-module-openshift-provider@0.1.5-next.0
- @backstage/plugin-auth-node@0.6.14-next.0
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.12-next.0
- @backstage/plugin-catalog-backend-module-openapi@0.2.20-next.0
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.18-next.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.6.9-next.0
- @backstage/plugin-devtools-backend@0.5.15-next.0
- @backstage/plugin-events-backend@0.5.12-next.0
- @backstage/plugin-events-backend-module-google-pubsub@0.2.1-next.0
- @backstage/plugin-kubernetes-backend@0.21.2-next.0
- @backstage/plugin-notifications-backend@0.6.3-next.0
- @backstage/plugin-permission-backend@0.7.10-next.0
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.17-next.0
- @backstage/plugin-permission-common@0.9.6
- @backstage/plugin-permission-node@0.10.11-next.0
- @backstage/plugin-proxy-backend@0.6.11-next.0
- @backstage/plugin-scaffolder-backend-module-github@0.9.7-next.0
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.20-next.0
- @backstage/plugin-search-backend@2.0.13-next.0
- @backstage/plugin-search-backend-module-catalog@0.3.13-next.0
- @backstage/plugin-search-backend-module-elasticsearch@1.8.1-next.0
- @backstage/plugin-search-backend-module-explore@0.3.12-next.0
- @backstage/plugin-search-backend-module-techdocs@0.4.12-next.0
- @backstage/plugin-search-backend-node@1.4.2-next.0
- @backstage/plugin-signals-backend@0.3.13-next.0
- @backstage/plugin-techdocs-backend@2.1.6-next.0
e2e-test@0.2.38-next.0
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/create-app@0.7.10-next.0
- @backstage/errors@1.2.7
@internal/frontend@0.0.18-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/types@1.2.2
- @backstage/version-bridge@1.0.12
@internal/scaffolder@0.0.19-next.0
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-scaffolder-react@1.19.8-next.0
techdocs-cli-embedded-app@0.2.118-next.0
Patch Changes
- Updated dependencies
- @backstage/ui@0.12.1-next.0
- @backstage/cli@0.35.5-next.0
- @backstage/frontend-plugin-api@0.14.2-next.0
- @backstage/plugin-catalog@1.33.1-next.0
- @backstage/plugin-techdocs@1.17.1-next.0
- @backstage/catalog-model@1.7.6
- @backstage/config@1.3.6
- @backstage/core-app-api@1.19.6-next.0
- @backstage/core-components@0.18.8-next.0
- @backstage/frontend-defaults@0.4.1-next.0
- @backstage/integration-react@1.2.16-next.0
- @backstage/test-utils@1.7.16-next.0
- @backstage/theme@0.7.2
- @backstage/plugin-app-react@0.2.1-next.0
- @backstage/plugin-techdocs-react@1.3.9-next.0
yarn-plugin-backstage@0.0.10-next.0
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.2.0-next.0
- @backstage/errors@1.2.7
- @backstage/release-manifests@0.0.13
@internal/plugin-todo-list@1.0.49-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.8-next.0
- @backstage/core-plugin-api@1.12.4-next.0
@internal/plugin-todo-list-backend@1.0.48-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.7.1-next.0
- @backstage/errors@1.2.7