Release v1.50.0-next.1
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.50.0-next.1
@backstage/backend-plugin-api@1.9.0-next.1
Minor Changes
- 4559806: Added support for typed
exampleson actions registered via the actions registry. Action authors can now provide examples with compile-time-checkedinputandoutputvalues that match their schema definitions.
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/core-app-api@1.20.0-next.1
Minor Changes
- 400aa23: Added
FetchMiddlewares.clarifyFailures()which replaces the uninformative "TypeError: Failed to fetch" with a message that includes the request method and URL.
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/frontend-plugin-api@0.16.0-next.1
Minor Changes
- 49397c1: Simplified the type signature of
createRouteRefby replacing the dualTParams/TParamKeystype parameters with a singleTParamKeyparameter. This is a breaking change for callers that explicitly provided type arguments, but most usage that relies on inference is unaffected.
Patch Changes
- ddc5247: Fixed
FlattenedMessagestype to avoid excessive type instantiation depth in TypeScript 6 when usingcreateTranslationRefwith thetranslationsoption. - fa55078: Refactored the internal
createSchemaFromZodhelper to use a schema-first generic pattern, replacing theZodSchema<TOutput, ZodTypeDef, TInput>constraint withTSchema extends ZodType. This avoids "excessively deep" type inference errors when multiple Zod copies are resolved.
@backstage/plugin-auth-node@0.7.0-next.1
Minor Changes
-
fa55078: BREAKING: Refactored
SignInResolverFactoryOptionsto use a schema-first generic pattern, following Zod's recommended approach for writing generic functions. The type parameters changed from<TAuthResult, TOptionsOutput, TOptionsInput>to<TAuthResult, TSchema extends ZodType>.This fixes "Type instantiation is excessively deep and possibly infinite" errors that occurred when the Zod version in a user's project did not align with the one in Backstage core.
If you use
createSignInResolverFactorywithout explicit type parameters (the typical usage), no changes are needed:// This usage is unchanged
createSignInResolverFactory({
optionsSchema: z.object({ domain: z.string() }).optional(),
create(options = {}) {
/* ... */
},
});If you reference
SignInResolverFactoryOptionswith explicit type parameters, update as follows:- SignInResolverFactoryOptions<MyAuthResult, MyOutput, MyInput>
+ SignInResolverFactoryOptions<MyAuthResult, typeof mySchema>
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-scaffolder-backend@3.3.0-next.1
Minor Changes
- 309b712: Added a new
execute-templateactions registry action that executes a scaffolder template with provided input values and returns a task ID for tracking progress.
Patch Changes
- 4559806: Removed unnecessary empty
examplesarray from actions bridged via the actions registry. - Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-openapi-utils@0.6.8-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/app-defaults@1.7.7-next.1
Patch Changes
- 400aa23: Added
FetchMiddlewares.clarifyFailures()to the default fetch API middleware stack. - Updated dependencies
- @backstage/core-app-api@1.20.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/backend-app-api@1.6.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/backend-defaults@0.16.1-next.1
Patch Changes
- 4559806: Added support for typed
exampleson actions registered via the actions registry. Action authors can now provide examples with compile-time-checkedinputandoutputvalues that match their schema definitions. - 5cd814f: Refactored auditor severity log level mappings to use
zod/v4with schema-driven defaults and type inference. - 6e2aaab: Fixed
AwsS3UrlReaderfailing to read files from S3 buckets configured with custom endpoint hosts. When an integration was configured with a specific endpoint likehttps://bucket-1.s3.eu-central-1.amazonaws.com, the URL parser incorrectly fell through to the non-AWS code path, always defaulting the region tous-east-1instead of extracting it from the hostname. - Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/backend-app-api@1.6.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/backend-dynamic-feature-service@0.8.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-catalog-backend@3.5.1-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/backend-openapi-utils@0.6.8-next.1
- @backstage/plugin-app-node@0.1.44-next.1
- @backstage/plugin-events-backend@0.6.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/backend-openapi-utils@0.6.8-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/backend-test-utils@1.11.2-next.1
Patch Changes
- 4559806: Added support for typed
exampleson actions registered via the actions registry. Action authors can now provide examples with compile-time-checkedinputandoutputvalues that match their schema definitions. - Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/backend-app-api@1.6.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/cli@0.36.1-next.1
Patch Changes
- 2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc). - a7a14b7: Added
DOM.AsyncIterableto the defaultlibin the shared TypeScript configuration, enabling standard async iteration support for DOM APIs such asFileSystemDirectoryHandle. This aligns behavior with TypeScript 6.0, where this lib is included inDOMby default. - Updated dependencies
- @backstage/cli-module-build@0.1.1-next.1
- @backstage/cli-module-test-jest@0.1.1-next.1
- @backstage/eslint-plugin@0.2.3-next.0
@backstage/cli-module-auth@0.1.1-next.1
Patch Changes
- 2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc).
@backstage/cli-module-build@0.1.1-next.1
Patch Changes
- 2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc).
@backstage/cli-module-new@0.1.1-next.1
Patch Changes
- 64a91d0: Rename the legacy
frontend-plugintofrontend-plugin-legacy
@backstage/cli-module-test-jest@0.1.1-next.1
Patch Changes
- 2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc). - 6cc4811: Minor error message update
@backstage/core-compat-api@0.5.10-next.1
Patch Changes
- 77ab7d5: Hide the default page header for pages created through the compatibility wrappers, since legacy plugins already render their own headers.
- 49397c1: Removed unnecessary type argument from internal
createRouteRefcall. - Updated dependencies
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-app-react@0.2.2-next.1
@backstage/core-plugin-api@1.12.5-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
@backstage/create-app@0.8.2-next.1
Patch Changes
- Bumped create-app version.
@backstage/dev-utils@1.1.22-next.1
Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.7.7-next.1
- @backstage/ui@0.14.0-next.1
- @backstage/core-app-api@1.20.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/eslint-plugin@0.2.3-next.0
Patch Changes
- df43b0e: Fixed
no-mixed-plugin-importsrule to returnnullfrom non-fixable suggestion handlers and added an explicitSuggestionReportDescriptor[]type annotation, matching the stricter type checking in TypeScript 6.0.
@backstage/frontend-app-api@0.16.2-next.1
Patch Changes
- 400aa23: Wrapped extension permission authorization in a try/catch to surface errors as
ForwardedErrorwith a clear message. - Updated dependencies
- @backstage/core-app-api@1.20.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/frontend-defaults@0.5.1-next.1
@backstage/frontend-defaults@0.5.1-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.4.3-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/frontend-app-api@0.16.2-next.1
- @backstage/core-components@0.18.9-next.0
@backstage/frontend-dev-utils@0.1.1-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.4.3-next.1
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/frontend-defaults@0.5.1-next.1
@backstage/frontend-dynamic-feature-loader@0.1.11-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
@backstage/frontend-test-utils@0.5.2-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.4.3-next.1
- @backstage/core-app-api@1.20.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/frontend-app-api@0.16.2-next.1
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/test-utils@1.7.17-next.1
- @backstage/plugin-app-react@0.2.2-next.1
@backstage/repo-tools@0.17.1-next.1
Patch Changes
- 2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc). - 8e9679b: Parallelized CLI report generation, reducing wall-clock time by ~4x.
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/test-utils@1.7.17-next.1
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.20.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/ui@0.14.0-next.1
Patch Changes
-
2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc). -
8d79835: Added RangeSlider component for selecting numeric ranges.
Affected components: RangeSlider
-
5081bcc: Fixed
Avatarbecoming elliptical in flex layouts by preventing it from shrinking.Affected components: Avatar
-
d840ba9: Fixed relative
hrefresolution for BUI link components. Relative paths like../otherare now correctly turned into absolute paths before reaching the React Aria layer, ensuring client-side navigation goes to the right place.Affected components: ButtonLink, Card, CellProfile, CellText, Link, ListRow, MenuItem, MenuListBoxItem, Row, SearchAutocompleteItem, Tab, Tag
-
3bc23a5: Added support for disabling pagination in
useTablecomplete mode by settingpaginationOptions: { type: 'none' }. This skips data slicing and producespagination: { type: 'none' }intableProps, removing the need for consumers to manually override the pagination prop onTable. Also fixed complete mode not reacting to dynamic changes inpaginationOptions.pageSize.Affected components:
useTable -
c368cf3: Updated dependency
@types/use-sync-external-storeto^1.0.0. -
d0f055f: Added
showPaginationLabelprop toTablePaginationanduseTablepagination options. When set tofalse, the pagination label (e.g., "1 - 20 of 150") is hidden while navigation controls remain visible. Defaults totrue.Affected components:
TablePagination,useTable -
feaf3d1: Fixed HeaderNav hover indicator covering tab text when theme uses opaque background colors. Also fixed an incorrect CSS variable reference (
--bui-font-family→--bui-font-regular).Affected components: Header
@backstage/plugin-api-docs@0.13.6-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-catalog@2.0.2-next.1
@backstage/plugin-app@0.4.3-next.1
Patch Changes
-
e5baa20: Added support for configuring URL redirects on the
app/routesextension. Redirects can be configured throughapp-configas an array of{from, to}path pairs, which will cause navigation to thefrompath to be redirected to thetopath.For example:
app:
extensions:
- app/routes:
config:
redirects:
- from: /old-path
to: /new-path -
Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-app-react@0.2.2-next.1
@backstage/plugin-app-backend@0.5.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-app-node@0.1.44-next.1
@backstage/plugin-app-node@0.1.44-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-app-react@0.2.2-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-app-visualizer@0.2.2-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-auth@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
@backstage/plugin-auth-backend@0.28.0-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-auth0-provider@0.3.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.15-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-auth-backend@0.28.0-next.1
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-github-provider@0.5.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-gitlab-provider@0.4.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-google-provider@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-guest-provider@0.2.18-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-oidc-provider@0.4.15-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-auth-backend@0.28.0-next.1
@backstage/plugin-auth-backend-module-okta-provider@0.2.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-openshift-provider@0.1.6-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-catalog@2.0.2-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-search-react@1.11.1-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
@backstage/plugin-catalog-backend@3.5.1-next.1
Patch Changes
- 2e5c5f8: Bumped
globdependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumpedrollupfrom v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc). - 6884814: Improved catalog entity filter query performance by switching from
IN (subquery)toEXISTS (correlated subquery)patterns. This enables PostgreSQL semi-join optimizations and fixesNOT INNULL-semantics pitfalls by usingNOT EXISTSinstead. - 9da73bf: Reduced search table write churn during stitching by syncing only changed rows instead of doing a full delete and re-insert. On Postgres this uses a single writable CTE, on MySQL a temporary table merge with deadlock retry, and on SQLite the previous bulk replace.
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-openapi-utils@0.6.8-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/plugin-catalog-backend-module-aws@0.4.22-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-azure@0.3.16-next.1
Patch Changes
- 39d27ee: Add Azure DevOps SCM event translation layer for instant catalog reprocessing.
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-openapi-utils@0.6.8-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.10-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.10-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-gcp@0.3.18-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-gerrit@0.3.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-gitea@0.1.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-github@0.13.1-next.1
Patch Changes
- b11e338: Fixed a bug where
GithubEntityProviderwithvalidateLocationsExist: trueandfilters.branchconfigured would always check for the catalog file on the repository's default branch (HEAD) instead of the configured branch. This caused repositories to be filtered out when the catalog file only existed on the non-default branch. - Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-github-org@0.3.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-backend-module-github@0.13.1-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-gitlab@0.8.2-next.1
Patch Changes
- 54a8300: Add GitLab SCM event translation layer for instant catalog reprocessing.
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-backend-module-gitlab@0.8.2-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-catalog-backend@3.5.1-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-ldap@0.12.4-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-logs@0.1.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-backend@3.5.1-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-catalog-backend-module-msgraph@0.9.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-openapi@0.2.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-puppetdb@0.2.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-backend-module-unprocessed@0.6.10-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-catalog-graph@0.6.1-next.1
Patch Changes
- 0e147e8: Added
titleandiconto the new frontend system plugin definition. - Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-catalog-import@0.13.12-next.1
Patch Changes
- fa0593e: Added
titleandiconto the new frontend system plugin definition. - Updated dependencies
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-catalog-node@2.1.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-test-utils@1.11.2-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/plugin-catalog-react@2.1.2-next.1
Patch Changes
- eba2f61: Fixed
EntityInfoCardheader overflowing on narrow screens. - 0416216: Fixed entity relation cards (e.g., "Has components") only showing one entity at a time by using
paginationOptions: { type: 'none' }instead of deriving page size from data length. - Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/frontend-test-utils@0.5.2-next.1
@backstage/plugin-catalog-unprocessed-entities@0.2.29-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-devtools@0.1.38-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-devtools-backend@0.5.16-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/plugin-devtools-react@0.2.1-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-events-backend@0.6.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-openapi-utils@0.6.8-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-aws-sqs@0.4.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-azure@0.2.30-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.30-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-bitbucket-server@0.1.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-gerrit@0.2.30-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-github@0.4.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-gitlab@0.3.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-google-pubsub@0.2.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-backend-module-kafka@0.3.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-events-node@0.4.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-gateway-backend@1.1.4-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-home@0.9.4-next.1
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.20.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-home-react@0.1.37-next.1
@backstage/plugin-home-react@0.1.37-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-kubernetes@0.12.18-next.1
Patch Changes
- d156cf4: Added
titleandiconto the new frontend system plugin definition. - Updated dependencies
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-kubernetes-react@0.5.18-next.0
@backstage/plugin-kubernetes-backend@0.21.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-kubernetes-node@0.4.3-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/plugin-kubernetes-node@0.4.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-mcp-actions-backend@0.1.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
@backstage/plugin-mui-to-bui@0.2.6-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-notifications@0.5.16-next.1
Patch Changes
- d156cf4: Added
titleandiconto the new frontend system plugin definition. - Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-notifications-backend@0.6.4-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-notifications-node@0.2.25-next.1
- @backstage/plugin-signals-node@0.1.30-next.1
@backstage/plugin-notifications-backend-module-email@0.3.20-next.1
Patch Changes
- 19ef9fb: build(deps): bump
nodemailerfrom 7.0.13 to 8.0.4 - Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-notifications-node@0.2.25-next.1
@backstage/plugin-notifications-backend-module-slack@0.4.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-notifications-node@0.2.25-next.1
@backstage/plugin-notifications-node@0.2.25-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-signals-node@0.1.30-next.1
@backstage/plugin-org@0.7.1-next.1
Patch Changes
- 87eb31c: Fixed
GroupProfileCardandUserProfileCardcontent overflowing on narrow screens. - d156cf4: Added
titleandiconto the new frontend system plugin definition. - Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-permission-backend@0.7.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.18-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
@backstage/plugin-permission-node@0.10.12-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
@backstage/plugin-proxy-backend@0.6.12-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-proxy-node@0.1.14-next.1
@backstage/plugin-proxy-node@0.1.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-scaffolder@1.36.2-next.1
Patch Changes
-
864a799: Fix the display of the description in
GitlabRepoPicker:- Move
owner.descriptionhelper text outside theallowedOwnersconditional so it renders for bothSelectandAutocompletemodes. - Update the
Autocompletelabel to usefields.gitlabRepoPicker.owner.inputTitleinstead offields.gitlabRepoPicker.owner.title.
- Move
-
a7a14b7: Removed custom
IterableDirectoryHandleandWritableFileHandletypes in favor of the standard DOMFileSystemDirectoryHandleandFileSystemFileHandletypes, which are now available through theDOM.AsyncIterablelib added to the shared TypeScript configuration. -
Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-scaffolder-react@1.20.1-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
@backstage/plugin-scaffolder-backend-module-azure@0.2.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.5-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.22-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-gcp@0.2.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-gitea@0.2.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-github@0.9.8-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-gitlab@0.11.5-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-notifications@0.1.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-notifications-node@0.2.25-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-rails@0.5.20-next.1
Patch Changes
- 2905c59: Removed unused
jest-whendev dependency. - Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-sentry@0.3.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
- @backstage/plugin-scaffolder-node-test-utils@0.3.10-next.1
@backstage/plugin-scaffolder-node@0.13.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-test-utils@1.11.2-next.1
@backstage/plugin-scaffolder-node-test-utils@0.3.10-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-test-utils@1.11.2-next.1
- @backstage/plugin-scaffolder-node@0.13.1-next.1
@backstage/plugin-scaffolder-react@1.20.1-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/frontend-test-utils@0.5.2-next.1
@backstage/plugin-search@1.7.1-next.1
Patch Changes
- 34aebcc: Fixed the
SearchModalleaving the page in a broken state by not restoring body overflow and aria-hidden attributes when closing. - Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-search-react@1.11.1-next.1
@backstage/plugin-search-backend@2.1.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-openapi-utils@0.6.8-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/plugin-search-backend-module-catalog@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/plugin-search-backend-module-elasticsearch@1.8.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/plugin-search-backend-module-explore@0.3.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/plugin-search-backend-module-pg@0.5.54-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
@backstage/plugin-search-backend-module-techdocs@0.4.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
- @backstage/plugin-techdocs-node@1.14.5-next.1
@backstage/plugin-search-backend-node@1.4.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-search-react@1.11.1-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-signals@0.0.30-next.1
Patch Changes
- d156cf4: Added
titleandiconto the new frontend system plugin definition. - Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-signals-backend@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
- @backstage/plugin-signals-node@0.1.30-next.1
@backstage/plugin-signals-node@0.1.30-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-events-node@0.4.21-next.1
@backstage/plugin-techdocs@1.17.3-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-search-react@1.11.1-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
@backstage/plugin-techdocs-addons-test-utils@2.0.4-next.1
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.20.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/test-utils@1.7.17-next.1
- @backstage/plugin-catalog@2.0.2-next.1
- @backstage/plugin-search-react@1.11.1-next.1
- @backstage/plugin-techdocs@1.17.3-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
@backstage/plugin-techdocs-backend@2.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-node@2.1.1-next.1
- @backstage/plugin-techdocs-node@1.14.5-next.1
@backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
@backstage/plugin-techdocs-node@1.14.5-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
@backstage/plugin-techdocs-react@1.3.10-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-user-settings@0.9.2-next.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.14.0-next.1
- @backstage/core-app-api@1.20.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
@backstage/plugin-user-settings-backend@0.4.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-signals-node@0.1.30-next.1
example-app@0.0.34-next.1
Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.7.7-next.1
- @backstage/plugin-app@0.4.3-next.1
- @backstage/cli@0.36.1-next.1
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-graph@0.6.1-next.1
- @backstage/plugin-catalog-import@0.13.12-next.1
- @backstage/core-app-api@1.20.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/plugin-org@0.7.1-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/frontend-app-api@0.16.2-next.1
- @backstage/core-compat-api@0.5.10-next.1
- @backstage/plugin-kubernetes@0.12.18-next.1
- @backstage/plugin-notifications@0.5.16-next.1
- @backstage/plugin-scaffolder@1.36.2-next.1
- @backstage/plugin-search@1.7.1-next.1
- @backstage/plugin-signals@0.0.30-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-api-docs@0.13.6-next.1
- @backstage/plugin-catalog@2.0.2-next.1
- @backstage/plugin-home@0.9.4-next.1
- @backstage/plugin-scaffolder-react@1.20.1-next.1
- @backstage/plugin-search-react@1.11.1-next.1
- @backstage/plugin-techdocs@1.17.3-next.1
- @backstage/plugin-user-settings@0.9.2-next.1
- @backstage/frontend-defaults@0.5.1-next.1
- @backstage/plugin-app-react@0.2.2-next.1
- @backstage/plugin-app-visualizer@0.2.2-next.1
- @backstage/plugin-auth@0.1.7-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.1
- @backstage/plugin-devtools@0.1.38-next.1
- @backstage/plugin-home-react@0.1.37-next.1
- @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
app-example-plugin@0.0.34-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
example-app-legacy@0.2.120-next.1
Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.7.7-next.1
- @backstage/cli@0.36.1-next.1
- @backstage/ui@0.14.0-next.1
- @backstage/plugin-catalog-graph@0.6.1-next.1
- @backstage/plugin-catalog-import@0.13.12-next.1
- @backstage/core-app-api@1.20.0-next.1
- @backstage/plugin-catalog-react@2.1.2-next.1
- @backstage/plugin-org@0.7.1-next.1
- @backstage/frontend-app-api@0.16.2-next.1
- @backstage/plugin-kubernetes@0.12.18-next.1
- @backstage/plugin-notifications@0.5.16-next.1
- @backstage/plugin-scaffolder@1.36.2-next.1
- @backstage/plugin-search@1.7.1-next.1
- @backstage/plugin-signals@0.0.30-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/core-plugin-api@1.12.5-next.1
- @backstage/plugin-api-docs@0.13.6-next.1
- @backstage/plugin-catalog@2.0.2-next.1
- @backstage/plugin-home@0.9.4-next.1
- @backstage/plugin-scaffolder-react@1.20.1-next.1
- @backstage/plugin-search-react@1.11.1-next.1
- @backstage/plugin-techdocs@1.17.3-next.1
- @backstage/plugin-user-settings@0.9.2-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.1
- @backstage/plugin-devtools@0.1.38-next.1
- @backstage/plugin-home-react@0.1.37-next.1
- @backstage/plugin-mui-to-bui@0.2.6-next.1
- @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
example-backend@0.0.49-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1
- @backstage/backend-defaults@0.16.1-next.1
- @backstage/plugin-catalog-backend@3.5.1-next.1
- @backstage/plugin-scaffolder-backend@3.3.0-next.1
- @backstage/plugin-auth-node@0.7.0-next.1
- @backstage/plugin-app-backend@0.5.13-next.1
- @backstage/plugin-auth-backend@0.28.0-next.1
- @backstage/plugin-auth-backend-module-github-provider@0.5.2-next.1
- @backstage/plugin-auth-backend-module-guest-provider@0.2.18-next.1
- @backstage/plugin-auth-backend-module-openshift-provider@0.1.6-next.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.13-next.1
- @backstage/plugin-catalog-backend-module-logs@0.1.21-next.1
- @backstage/plugin-catalog-backend-module-openapi@0.2.21-next.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.19-next.1
- @backstage/plugin-catalog-backend-module-unprocessed@0.6.10-next.1
- @backstage/plugin-devtools-backend@0.5.16-next.1
- @backstage/plugin-events-backend@0.6.1-next.1
- @backstage/plugin-events-backend-module-google-pubsub@0.2.2-next.1
- @backstage/plugin-kubernetes-backend@0.21.3-next.1
- @backstage/plugin-mcp-actions-backend@0.1.11-next.1
- @backstage/plugin-notifications-backend@0.6.4-next.1
- @backstage/plugin-permission-backend@0.7.11-next.1
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.18-next.1
- @backstage/plugin-permission-node@0.10.12-next.1
- @backstage/plugin-proxy-backend@0.6.12-next.1
- @backstage/plugin-scaffolder-backend-module-github@0.9.8-next.1
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.21-next.1
- @backstage/plugin-search-backend@2.1.1-next.1
- @backstage/plugin-search-backend-module-catalog@0.3.14-next.1
- @backstage/plugin-search-backend-module-elasticsearch@1.8.2-next.1
- @backstage/plugin-search-backend-module-explore@0.3.13-next.1
- @backstage/plugin-search-backend-module-techdocs@0.4.13-next.1
- @backstage/plugin-search-backend-node@1.4.3-next.1
- @backstage/plugin-signals-backend@0.3.14-next.1
- @backstage/plugin-techdocs-backend@2.1.7-next.1
@internal/frontend@0.0.19-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
@internal/scaffolder@0.0.20-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/plugin-scaffolder-react@1.20.1-next.1
techdocs-cli-embedded-app@0.2.119-next.1
Patch Changes
- Updated dependencies
- @backstage/cli@0.36.1-next.1
- @backstage/ui@0.14.0-next.1
- @backstage/core-app-api@1.20.0-next.1
- @backstage/frontend-plugin-api@0.16.0-next.1
- @backstage/core-components@0.18.9-next.0
- @backstage/test-utils@1.7.17-next.1
- @backstage/plugin-catalog@2.0.2-next.1
- @backstage/plugin-techdocs@1.17.3-next.1
- @backstage/frontend-defaults@0.5.1-next.1
- @backstage/plugin-app-react@0.2.2-next.1
- @backstage/plugin-techdocs-react@1.3.10-next.1
@internal/plugin-todo-list-backend@1.0.49-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.0-next.1