Release v1.54.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.54.0
@backstage/backend-plugin-api@1.10.0
Minor Changes
- 74d8cbf: Added
coreServices.rootSystemMetadata, a new stable public service for reading metadata about the running Backstage system, including a list of installed plugins. Previously only available as an alpha API, it is now part of the standardcoreServicesnamespace.
Patch Changes
- b1b6c80: Documented the default destructive and read-only action attribute values.
- Updated dependencies
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
@backstage/catalog-model@1.10.0
Minor Changes
- ad18743: Added
marketplacespec type to the@alphaAiResource kind, representing a curated registry of plugins for discovery and distribution. Marketplaces reference their contained plugins viaspec.pluginsentity references, generatinghasPartcatalog relations. - f501302: Added
pluginspec type to the@alphaAiResource kind, representing a packaged collection of skills distributed as a unit. Plugins reference their contained skills viaspec.skillsentity references, generatinghasPartcatalog relations. - 0b9b3bf: Added optional
allowedTools,license, andcompatibilityfields to the@alphaAiResource skill spec, aligned with the agentskills.io specification.
Patch Changes
- 9a6955c: Corrected catalog relation generation to honor declared kind combinations, and completed reverse relations for existing
AiResourcefields.
@backstage/connections@0.3.0
Minor Changes
-
64cea29: BREAKING: Changed
@backstage/connectionsinto a common library so its connection types, schemas, and service contract can be used by isomorphic packages. The Node.js service implementation is now internal. Backend-only APIs and configuration types, includingconnectionsServiceRef,connectionsServiceFactory,DefaultConnectionsService,declareConnection,RootConnection, andAnyRootConnection, are no longer exported from this package. -
dba1eed: BREAKING: Connection lookups now take a
queryobject instead of aurl. Every connection type declares which query it accepts, so types that are not identified by a URL can be looked up by other identifiers. All built-in connection types are still matched by URL, so existing lookups just move the URL into the query:const connection = await connections.find({type: 'github',query: { url },authMethods: ['app', 'token'],});Connections returned from a lookup now also include their
type. -
1bfed76: BREAKING: Changed connection types to use portable configuration schemas as the source of root connection types, with JSON Schema generation and strongly typed parsing that do not expose the underlying Zod schemas.
-
0733a78: Added
buildConnectionsFromConfig, which reads legacyintegrationsconfiguration together withconnectionsconfiguration and returns the fully validated and merged list of connections. This makes it possible to implement a custom connections service without duplicating the built-in conversion of legacy integrations configuration. The shape of the returned connections is described by the newConfiguredConnectiontype.BREAKING: The
RootConnectionAuthtype has been renamed toConfiguredConnectionAuth.
Patch Changes
-
b9e11d2: Updated GitHub authentication selection to prefer an organization-specific App, then an unrestricted App, and finally the only configured App before falling back to token or anonymous authentication.
-
a4b6efa: Added a new
awsconnection type for AWS account credentials, looked up by AWS account number or ARN rather than by URL. A singleaccountauth method covers all accounts: one entry per account with static keys, a profile, or IAM role assumption, and at most one entry markedmainAccount: truethat acts as the fallback for the environment's own account. A connection-levelroleName(with optionalpartition,region,externalId, andwebIdentityTokenFile) describes a role to assume in any account that has no entry of its own. Configurations with duplicate account IDs or multiple main account entries are rejected at startup, and legacy top-levelawsconfiguration is converted automatically, with explicitconnectionsconfig taking precedence.Connection types can now declare a whole-connection validation step that runs after the configuration schemas have parsed, enabling rules that span multiple auth entries or combine connection settings with auth entries. Each auth entry includes its plugin
match, allowing rules to take plugin scoping into account. Connection types also expose a type-levelauthaccessor describing the shape of their configured auth entries, mirroring the existingqueryaccessor. -
f60a23a: Require every connection to configure at least one auth method. Use the
noneauth method for unauthenticated connections. -
c0f9a7d: Removed the unsupported unauthenticated AWS CodeCommit auth option. AWS CodeCommit connections now only expose access key or assume role authentication.
@backstage/frontend-plugin-api@0.18.0
Minor Changes
- 907793c: BREAKING: Removed the deprecated
config.schemaoption for extensions and extension blueprints. Use the top-levelconfigSchemaoption with Standard Schema-compatible schema values, such as Zod v4.
Patch Changes
- e156f1e: Added support for using a
SubRouteRefas the parent of anotherSubRouteRef. Child paths are combined with ancestor paths at creation, and nested sub-routes inherit parameters from their complete ancestor chain.
@backstage/integration@2.1.0
Minor Changes
- dc951d4: Added support for creating a GitHub credentials provider backed by the connections service.
Patch Changes
-
87bfe22: GitHub integrations now cache the list of app installations for a short period, avoiding a full
GET /app/installationspagination on every token fetch. This significantly reduces API usage against the 15k/hour GitHub App rate limit for organizations with many installations or frequent credential refreshes.The cache is refreshed on a 10-minute TTL, and is additionally invalidated when a lookup for a previously-unseen owner occurs (throttled to once per minute) or when GitHub reports that a cached installation is no longer available, so newly added or removed installations are still picked up promptly.
-
Updated dependencies
- @backstage/connections@0.3.0
@backstage/repo-tools@0.19.0
Minor Changes
- 0804116: BREAKING: Renamed the
repo schema openapi verifycommand torepo schema openapi validate. Added a newpackage schema openapi validatecommand to validate that an OpenAPI spec is a valid OpenAPI 3.x document.
Patch Changes
- 226817d: chore(deps): bump
js-yamlfrom 4.2.0 to 4.3.0 - 78bf918: chore(deps): bump
tarfrom 7.5.15 to 7.5.21 - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/config-loader@1.11.2
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-auth-backend@0.30.0
Minor Changes
-
274acc5: BREAKING: The OAuth redirect URI and client ID metadata document allowlists now match patterns against each URL component separately instead of against the full URL string. Wildcards no longer match across the host and path boundary, patterns must include an explicit protocol and are otherwise rejected as invalid configuration instead of being silently ignored, and redirect URIs that contain embedded credentials are always rejected.
A wildcard port also no longer implicitly matches every path: a pattern such as
http://localhost:*now only matches the root path. Usehttp://localhost:*/*to allow any port and any path. The built-in loopback defaults have been updated accordingly, so this only affects explicitly configured patterns.
Patch Changes
- 4e884d2: Skip SSRF protection for CIMD metadata fetches when the
client_idmatches an exact (non-wildcard) entry inallowedClientIdPatterns. Exact patterns mean the administrator explicitly listed a specific URL, so the DNS resolution is trusted. Wildcard patterns still enforce the SSRF check to protect against attacker-controlled subdomains resolving to internal addresses. - a995892: Allow ChatGPT Codex clients to use Client ID Metadata Documents by default.
- 827989d: Fixed the built-in CLI client being rejected when
allowedClientIdPatternsis configured for Client ID Metadata Documents. - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend@3.9.0
Minor Changes
- c7c0ec3: Added a
refresh-catalog-entityaction so agents and MCP clients can re-queue a single entity for processing after creating or updating it — useful for reading back fresh data immediately after a scaffolder run without waiting for the next scheduled processing loop.
Patch Changes
- aa318d0: Migrated internal query filter handling from
EntityFiltertoFilterPredicate, simplifying the filter parsing and query application pipeline. - 10f0713: Replaced the delete-all and reinsert pattern for the
relationstable with a diff-based sync that only touches rows that actually changed. In steady state (the common case), zero writes occur, eliminating write churn, dead tuples, and WAL traffic from the processing path. Stitching is now also skipped for relation neighbors that did not change. - ee40136: Fixed a missing promise return in a database migration rollback function.
- eb6dff2: Fixed an issue where PostgreSQL deadlock errors during entity provider mutations were silently swallowed, causing entities to be dropped until the next full refresh. Transactions are now automatically retried on deadlock with exponential back-off.
- dd562f0: Fixed a potential MySQL deadlock during concurrent entity processing by retrying the
updateProcessedEntitytransaction on deadlock errors. - b031a48: Fixed an issue where SCM
location.movedevents would generate new locations in the database for files that were not actively tracked. - b7650ad: Simplified internal router setup by removing unnecessary conditional guards around route registrations.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-techdocs@1.18.0
Minor Changes
- 4f9ce5e: Add
initialFilterconfig forpage:techdocs. Valid options areall,ownedandstarred. Defaults toowned.
Patch Changes
- e06a951: chore(deps): bump
dompurifyfrom 3.4.11 to 3.4.12 - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/integration@2.1.0
- @backstage/frontend-plugin-api@0.18.0
- @backstage/integration-react@1.2.21
- @backstage/plugin-auth-react@0.1.30
- @backstage/plugin-search-react@1.11.7
- @backstage/plugin-techdocs-react@1.3.14
@backstage/app-defaults@1.7.11
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/core-app-api@1.20.4
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-permission-react@0.5.4
@backstage/backend-app-api@1.7.3
Patch Changes
- 64cea29: Updated the backend runtime to use the internal connection service implementation after the shared connection contract moved into
@backstage/connections. - 03133fc: Hardened backend startup against malformed installed backend features, with contextual input errors and configured boot-failure handling when invalid registrations can be attributed to a plugin or module.
- Updated dependencies
- @backstage/connections@0.3.0
- @backstage/backend-plugin-api@1.10.0
@backstage/backend-defaults@0.17.7
Patch Changes
- 79c1d58: Fixed a bug in the Azure DevOps URL reader where the abort signal was not forwarded to the commits API fetch, causing the fetch to hang indefinitely when a build timeout or cancellation was triggered.
- b1b6c80: Read-only actions now default to non-destructive when the destructive attribute is omitted.
- 78bf918: chore(deps): bump
tarfrom 7.5.15 to 7.5.21 - bb98419: TypeScript configuration schema warnings discovered while setting up secret redaction are now reported through the Backstage logger.
- 74d8cbf: Added a new public
@backstage/backend-defaults/rootSystemMetadataentrypoint, exportingrootSystemMetadataServiceFactoryandDefaultRootSystemMetadataService. The system metadata service is now registered automatically as a default service, so backends no longer need to add it manually. - e56d23c: Throw an error when
payload.uipis missing increateLimitedUserTokeninstead of constructing an invalid limited token with an undefined signature. - Updated dependencies
- @backstage/backend-app-api@1.7.3
- @backstage/config-loader@1.11.2
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/integration@2.1.0
- @backstage/integration-aws-node@0.2.1
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/plugin-events-node@0.4.25
@backstage/backend-dynamic-feature-service@0.8.6
Patch Changes
- bb98419: TypeScript configuration schema warnings discovered while setting up secret redaction are now reported through the Backstage logger.
- Updated dependencies
- @backstage/backend-defaults@0.17.7
- @backstage/plugin-catalog-backend@3.9.0
- @backstage/config-loader@1.11.2
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/plugin-events-backend@0.6.5
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-app-node@0.1.48
- @backstage/plugin-events-node@0.4.25
- @backstage/plugin-search-backend-node@1.4.7
@backstage/backend-openapi-utils@0.7.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
@backstage/backend-test-utils@1.11.6
Patch Changes
- b1b6c80: Aligned mocked action attributes so read-only actions default to non-destructive.
- 5ae46fc: Added
mockServices.rootSystemMetadatamock implementation to support the new stablecoreServices.rootSystemMetadataservice in tests. - Updated dependencies
- @backstage/backend-defaults@0.17.7
- @backstage/backend-app-api@1.7.3
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-events-node@0.4.25
@backstage/cli@0.36.5
Patch Changes
- Updated dependencies
- @backstage/cli-module-build@0.1.7
- @backstage/cli-module-test-jest@0.1.5
- @backstage/eslint-plugin@0.3.2
- @backstage/cli-defaults@0.1.5
@backstage/cli-defaults@0.1.5
Patch Changes
- Updated dependencies
- @backstage/cli-module-new@0.1.6
- @backstage/cli-module-build@0.1.7
- @backstage/cli-module-test-jest@0.1.5
- @backstage/cli-module-config@0.1.6
- @backstage/cli-module-lint@0.1.5
- @backstage/cli-module-migrate@0.2.1
@backstage/cli-module-build@0.1.7
Patch Changes
- 943687f: Stopped disabling the Node.js snapshot by default when starting backends or running tests.
- 4d7b153: chore(deps): bump
shell-quotefrom 1.8.4 to 1.9.0 - 78bf918: chore(deps): bump
tarfrom 7.5.15 to 7.5.21 - bb98419: Package preparation for publishing validates TypeScript configuration schemas strictly, preventing invalid schemas from being published. Other build and bundle paths report schema errors as warnings.
- Updated dependencies
- @backstage/config-loader@1.11.2
@backstage/cli-module-config@0.1.6
Patch Changes
- bb98419: The
--strictflag forconfig:checknow treats TypeScript configuration schema errors as fatal. The same flag is now also available forconfig:schema. - Updated dependencies
- @backstage/config-loader@1.11.2
@backstage/cli-module-lint@0.1.5
Patch Changes
- 4d7b153: chore(deps): bump
shell-quotefrom 1.8.4 to 1.9.0
@backstage/cli-module-migrate@0.2.1
Patch Changes
- cf59370: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/release-manifests@0.0.14
@backstage/cli-module-new@0.1.6
Patch Changes
- 90ef477: Added a new
permission-policy-moduletemplate for scaffolding custom permission policies viabackstage-cli new. The template generates a backend module that wires aPermissionPolicyimplementation into the permission backend using thepolicyExtensionPoint, along with a test example. - 88b2bbf: Added a
search-collator-moduletemplate for scaffolding new search collator modules viabackstage-cli new. - 2c7cc55: Added a new
catalog-processor-moduletemplate for scaffolding catalog processor modules viabackstage-cli new. - 8ccc09b: Fixed
yarn newfailing with "No version available" for several templates by adding missing packages to the version map. - 0e6007f: Updated the
plugin-web-librarytemplate to usetoastApiReffrom@backstage/frontend-plugin-apiinstead of the deprecatedalertApiReffrom@backstage/core-plugin-api. - 90bbc2e: Added
UserInfoServiceto thepermission-policy-moduletemplate so that scaffolded permission policies have the service already wired up for ownership lookups. - 10887f4: Fixed generated frontend plugin tables to identify their row header, and added the associated backend plugin package as a development dependency of generated backend plugin modules.
@backstage/cli-module-test-jest@0.1.5
Patch Changes
- 943687f: Stopped disabling the Node.js snapshot by default when starting backends or running tests.
@backstage/config-loader@1.11.2
Patch Changes
- 0c67dbc: Fix issue where
backstage-cli config:check --strictwould incorrectly reject valid configuration for open-ended object schemas, such as plain objects or map-like structures. - bb98419: Added an
onSchemaErrorcallback that allows callers to report TypeScript configuration schema errors and continue loading. The callback receives aConfigSchemaErrorcontaining the source package and underlying cause. Without a handler, schema errors are thrown.
@backstage/core-app-api@1.20.4
Patch Changes
- bd435c3: Identity mocks passed to
renderInTestApp(for example viamockApis.identity(...)) are now applied before the app's built-in guest fallback, so the configureduserEntityRefreliably takes effect in tests instead of being silently overwritten by the default guest user. - a4759e6: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
@backstage/core-compat-api@0.5.14
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app-react@0.2.6
@backstage/core-components@0.18.13
Patch Changes
-
226817d: chore(deps): bump
js-yamlfrom 4.2.0 to 4.3.0 -
a4759e6: Migrated tests from MSW v1 to MSW v2.
-
96cd953: Fixed the
DependencyGraphcomponent to avoid a jarring initial render where nodes briefly pile up at overlapping positions before animating into place. The graph content is now hidden until node measurements are complete and the layout has fully settled, then revealed at the correct positions with transitions suppressed for the first frame.Also fixed a
containerRefrecreation chain where every graph dimension change caused the container measurement callback to be recreated and re-triggered, producing unnecessary re-renders during initial layout. -
Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
@backstage/core-plugin-api@1.12.9
Patch Changes
- 9fcfbc9: Fixed a performance issue where all components using analytics, including every link, would rerender unnecessarily whenever a surrounding analytics context rendered again without its attributes having changed, for example when a URL query parameter changed on an entity page.
- Updated dependencies
- @backstage/frontend-plugin-api@0.18.0
@backstage/create-app@0.9.1
Patch Changes
- 943687f: Generated backend Dockerfiles no longer disable the Node.js snapshot or install native build dependencies for the Scaffolder.
- 97bd51f: Bumped create-app version.
- 9138f34: Added a GitHub Actions CI workflow to the default app template. New Backstage instances created with
create-appnow include a.github/workflows/ci.ymlthat runs lint, type checking, tests, configuration validation, and a Docker image build on every pull request. - a178067: Added a pre-configured Home page with a customizable widget grid to the default create-app template.
- 0b8573f: Clarified that the host build steps must use the same Node version as the Docker base image in the Dockerfile.
- 2828e31: Added a prerequisites check when creating a new app that validates Node.js LTS version and Yarn availability before proceeding, and warns if Python is not found.
- ee4a9f6: Fixed the example scaffolder template so the component name field validates against the allowed entity-name format, preventing names with spaces that would fail catalog registration.
@backstage/dev-utils@1.1.26
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/core-app-api@1.20.4
- @backstage/ui@0.17.1
- @backstage/app-defaults@1.7.11
- @backstage/integration-react@1.2.21
@backstage/eslint-plugin@0.3.2
Patch Changes
- 1d026b0: Fixed
visitImportsto return an empty object instead ofundefinedfor forward-compatibility with TypeScript 7's stricter return type checking.
@backstage/frontend-app-api@0.16.7
Patch Changes
- 6497d0f: Respect explicit API reference plugin ownership when resolving conflicting API factories.
- a8b5ba6: Updated dependencies.
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/core-app-api@1.20.4
- @backstage/frontend-plugin-api@0.18.0
- @backstage/frontend-defaults@0.5.5
@backstage/frontend-defaults@0.5.5
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app@0.5.2
- @backstage/frontend-app-api@0.16.7
@backstage/frontend-dev-utils@0.1.5
Patch Changes
- Updated dependencies
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app@0.5.2
- @backstage/frontend-defaults@0.5.5
@backstage/frontend-dynamic-feature-loader@0.1.15
Patch Changes
- 6ea4a2d: Updated documentation link to point to the new per-module CLI command pages.
- a4759e6: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/frontend-plugin-api@0.18.0
@backstage/frontend-test-utils@0.6.3
Patch Changes
- bd435c3: Identity mocks passed to
renderInTestApp(for example viamockApis.identity(...)) are now applied before the app's built-in guest fallback, so the configureduserEntityRefreliably takes effect in tests instead of being silently overwritten by the default guest user. - Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/core-app-api@1.20.4
- @backstage/test-utils@1.7.21
- @backstage/plugin-permission-common@0.9.10
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app@0.5.2
- @backstage/frontend-app-api@0.16.7
- @backstage/plugin-app-react@0.2.6
- @backstage/plugin-permission-react@0.5.4
@backstage/integration-aws-node@0.2.1
Patch Changes
- 4ce59cc: Added an alpha
createAwsCredentialsManagerFromConnectionexport that creates anAwsCredentialsManagerbacked by the connections system, allowing AWS credential resolution through the newawsconnection type. The existing configuration-based setup is unchanged. - Updated dependencies
- @backstage/connections@0.3.0
@backstage/integration-react@1.2.21
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/integration@2.1.0
@backstage/release-manifests@0.0.14
Patch Changes
- 0ebb1f9: Migrated tests from MSW v1 to MSW v2.
@techdocs/cli@1.11.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-defaults@0.17.7
- @backstage/plugin-techdocs-node@1.15.3
@backstage/test-utils@1.7.21
Patch Changes
- a4759e6: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/core-app-api@1.20.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-react@0.5.4
@backstage/ui@0.17.1
Patch Changes
- 52a58be: Fixed Table not filling container width in Firefox when using
TableRootdirectly insideResizableTableContainer. Changedoverflow: hiddentooverflow: autoon the resizable container so it handles scrolling for directTableRootusages.
@backstage/plugin-api-docs@0.14.4
Patch Changes
- b7085d1: Fixed deep linking in OpenAPI definition widget.
- a8b5ba6: Updated dependencies.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/plugin-catalog@2.0.8
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-app@0.5.2
Patch Changes
- 2dd51e6: Fixed config-driven route redirects to preserve the query string and fragment from the original URL. Previously, redirects declared under
app.extensions[].app/routes.config.redirectssilently dropped everything after?or#in the incoming URL. - Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app-react@0.2.6
- @backstage/integration-react@1.2.21
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-app-backend@0.5.17
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.11.2
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-app-node@0.1.48
@backstage/plugin-app-module-user-settings@0.1.1
Patch Changes
- Updated dependencies
- @backstage/plugin-user-settings@0.9.6
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-signals-react@0.0.25
@backstage/plugin-app-node@0.1.48
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.11.2
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-app-react@0.2.6
Patch Changes
- a8b5ba6: Updated dependencies.
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-app-visualizer@0.2.7
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-auth@0.1.11
Patch Changes
- Updated dependencies
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-auth0-provider@0.4.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.19
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.30.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.23
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-github-provider@0.5.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-gitlab-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-google-provider@0.3.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-guest-provider@0.2.22
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.18
Patch Changes
- 7ccaf9d: Fixed an issue where acquiring tokens with non-Graph scopes (such as Azure Management API) would crash the sign-in resolver because the user profile was unavailable. This affected both the initial sign-in and later token refreshes. The Microsoft authenticator now makes a separate Graph API call to fetch the profile when the primary token targets a different resource. Setting the
skipUserProfileconfiguration option to true disables this extra call. - Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-oidc-provider@0.4.19
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.30.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-okta-provider@0.2.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-openshift-provider@0.1.10
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.17
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
@backstage/plugin-auth-node@0.7.4
Patch Changes
- 7ca2955: Fix OAuth start handler crashing with a 500 error on malformed origins, now returns a 400 error.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-auth-react@0.1.30
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
@backstage/plugin-bitbucket-cloud-common@0.3.12
Patch Changes
- Updated dependencies
- @backstage/integration@2.1.0
@backstage/plugin-catalog@2.0.8
Patch Changes
- 80b37b3: Fixed the
AboutFieldlabel in the About card usingvariant="inherit"instead ofvariant="h2"to prevent theme typography overrides from changing the intended 10px label size. - 05aed2e: Fixed a brief "Entity not found" flash when navigating between catalog entity pages.
- 1d026b0: Added explicit type annotations to
FilterContainerandEntityListContainerre-exports for forward-compatibility with TypeScript 7. - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/plugin-scaffolder-common@2.2.2
- @backstage/frontend-plugin-api@0.18.0
- @backstage/core-compat-api@0.5.14
- @backstage/integration-react@1.2.21
- @backstage/plugin-permission-react@0.5.4
- @backstage/plugin-search-react@1.11.7
- @backstage/plugin-techdocs-react@1.3.14
@backstage/plugin-catalog-backend-module-ai-model@0.1.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-aws@0.4.26
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-defaults@0.17.7
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/integration-aws-node@0.2.1
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-azure@0.3.20
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.17
Patch Changes
- 74d8cbf: The internal OpenAPI documentation provider now automatically discovers installed plugins via the system metadata service. The
catalog.providers.backstageOpenapi.pluginsconfiguration option is now optional and deprecated; when omitted, all installed plugins are discovered dynamically. - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-bitbucket-cloud-common@0.3.12
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-gcp@0.3.22
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-gerrit@0.3.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-gitea@0.1.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-github@0.13.5
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-github-org@0.3.25
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-backend-module-github@0.13.5
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-gitlab@0.8.6
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-defaults@0.17.7
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.24
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-backend-module-gitlab@0.8.6
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.15
Patch Changes
- 870acb3: Moved detailed documentation from the README to the Backstage docs site. The README now contains installation instructions and links to the full documentation.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-defaults@0.17.7
- @backstage/plugin-catalog-backend@3.9.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-ldap@0.12.8
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-logs@0.1.25
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@3.9.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-catalog-backend-module-msgraph@0.10.5
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-msgraph-incremental@0.1.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.15
- @backstage/plugin-catalog-backend-module-msgraph@0.10.5
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-openapi@0.2.25
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-puppetdb@0.2.25
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.23
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-scaffolder-common@2.2.2
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-backend-module-unprocessed@0.6.15
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-catalog-graph@0.6.7
Patch Changes
- 8babce3: Fixed the catalog graph page so configured filter and graph defaults are applied when the page opens.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-catalog-import@0.13.16
Patch Changes
- 74fb85d: Remove obsolete location import error handling in StepReviewLocation.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/integration@2.1.0
- @backstage/frontend-plugin-api@0.18.0
- @backstage/integration-react@1.2.21
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-catalog-node@2.2.4
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
@backstage/plugin-catalog-react@3.2.1
Patch Changes
-
9fcfbc9: Fixed a performance issue where all components reading the entity context on an entity page would rerender unnecessarily whenever the page rendered again without the entity data having changed, for example when a URL query parameter changed. This was particularly noticeable when switching tabs in the entity inspector dialog, which caused the entire underlying page to rerender.
-
e766061: Fixed an issue where the "Owned" count in
UserListPickerwould display the total number of catalog entities instead of 0 when the logged-in user has no ownership entity refs. The emptyrelations.ownedByfilter was being silently dropped by the catalog client, causing the backend to return all entities with no ownership filter applied.This was a regression introduced in #22131, which removed an explicit
ownershipEntityRefs?.length === 0guard that had been present since #20339. -
ed462ad: Fixed
EntityOwnerPickerinowners-onlymode to display human-readable entity titles (frommetadata.titleorspec.profile.displayName) instead of opaque internal names, both in the dropdown list and in the selected owner chips. The owner list is now virtualized, keeping the picker responsive for catalogs with large numbers of owner entities. -
Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/plugin-permission-common@0.9.10
- @backstage/frontend-plugin-api@0.18.0
- @backstage/core-compat-api@0.5.14
- @backstage/integration-react@1.2.21
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-catalog-unprocessed-entities@0.2.34
Patch Changes
- 531495a: Migrated the Unprocessed Entities UI to the Backstage UI component library. The page, dialogs, and action buttons now use the new design system, and the raw entity definition and delete confirmation dialogs have an updated look and feel. The pending entities tab now also has a search box, matching the failed entities tab.
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/core-compat-api@0.5.14
@backstage/plugin-config-schema@0.1.83
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
@backstage/plugin-devtools@0.1.42
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/core-compat-api@0.5.14
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-devtools-backend@0.5.20
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.11.2
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
@backstage/plugin-devtools-react@0.2.5
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-events-backend@0.6.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-aws-sqs@0.4.25
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-azure@0.2.34
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.34
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-bitbucket-server@0.1.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-gerrit@0.2.34
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-github@0.4.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-gitlab@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-google-pubsub@0.2.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-module-kafka@0.3.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-backend-test-utils@0.1.58
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-events-node@0.4.25
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-gateway-backend@1.1.8
Patch Changes
- fa72461: Updated dependency
@opentelemetry/coreto^2.0.0. - 9da01b6: chore(deps): bump
http-proxy-middlewarefrom 3.0.5 to 3.0.7 - Updated dependencies
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-home@0.9.9
Patch Changes
- a178067: Added new frontend system widget blueprints for Most Visited, Recently Visited, World Clocks, and a configurable Toolkit. The home page now supports a
defaultConfigfor defining the initial grid layout via app-config. - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/core-app-api@1.20.4
- @backstage/plugin-home-react@0.1.41
- @backstage/frontend-plugin-api@0.18.0
- @backstage/core-compat-api@0.5.14
@backstage/plugin-home-react@0.1.41
Patch Changes
- a178067: Added
HomePageDefaultConfigItemtype and optionaldefaultConfigprop toHomePageLayoutProps. - Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/frontend-plugin-api@0.18.0
- @backstage/core-compat-api@0.5.14
@backstage/plugin-kubernetes@0.12.22
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/plugin-kubernetes-react@0.5.23
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-kubernetes-backend@0.21.7
Patch Changes
-
684c9b9: Fixed
AwsIamStrategyto resolve account-specific AWS credentials when an assume role ARN is configured, enabling support forwebIdentityTokenFileandaccountDefaultsin environments without default AWS credentials. -
c6af8ac: Added audit logging for kubernetes-backend routes. The plugin now emits auditor events for cluster list, cluster proxy, entity workload queries, custom resource queries, and the deprecated services endpoint. Administrators can filter audit logs by
eventIdvaluescluster-fetchandresource-fetch, and byqueryTypein event metadata.KubernetesProxyOptionsaccepts an optionalauditorfor adopters that construct the proxy directly. When omitted, proxy requests are handled as before without audit events. -
bac00a5: The Kubernetes API proxy now refreshes cached middleware when cluster details change, after a configurable TTL, or when the cache reaches its size limit. At startup, the backend logs a warning for each cluster configured with
skipTLSVerify: true. Invalid cache configuration values fall back to defaults. Optional configuration is available underkubernetes.proxy.middlewareCache. -
f0834bd: Added a
kubernetes.clusterLocatorContinueOnErrorconfiguration option. When set totrue, a failing cluster locator no longer causes the entire cluster list request to fail — errors are logged and clusters from the remaining successful locators are still returned. The default isfalse, preserving the existing behavior. -
Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration-aws-node@0.2.1
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-kubernetes-node@0.4.7
@backstage/plugin-kubernetes-cluster@0.0.40
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/plugin-kubernetes-react@0.5.23
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-kubernetes-node@0.4.7
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-kubernetes-react@0.5.23
Patch Changes
- 226817d: chore(deps): bump
js-yamlfrom 4.2.0 to 4.3.0 - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
@backstage/plugin-mcp-actions-backend@0.2.1
Patch Changes
- ec2b90f: Added support for configuring MCP server instructions for both default and named servers.
- d7d03d9: Replaced duplicated documentation in the README with a link to the full docs on
backstage.io. - e4983fd: Added audit logging for MCP server operations using the Backstage Auditor Service. The plugin now emits
connection,tool-discovery, andtool-executionaudit events, allowing adopters to monitor and audit MCP server activity. - 9937a99: Added
scopes_supportedto the OAuth 2.0 Protected Resource Metadata (RFC 9728) response. Without this field, RFC-compliant MCP clients did not know which scope to request and never received a refresh token, causing sessions to expire with the short-lived access token. The field now includesopenid, and alsooffline_accesswhenauth.experimentalRefreshTokenis enabled. - Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-mui-to-bui@0.2.10
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-notifications@0.5.20
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-signals-react@0.0.25
@backstage/plugin-notifications-backend@0.6.8
Patch Changes
- 3222945: Fixed notification recipient resolution to safely handle cyclic group relationships during group traversal, preventing endless recursion.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-notifications-node@0.2.29
- @backstage/plugin-signals-node@0.2.4
@backstage/plugin-notifications-backend-module-email@0.3.24
Patch Changes
- a4e7831: Updated
nodemailerfrom v8 to v9. The new major version validates TLS certificates by default when fetching remote content such as attachments or OAuth2 tokens. If your SMTP relay or OAuth2 endpoint uses a self-signed or otherwise untrusted certificate, email delivery may start failing. You can opt out per transport by settingtls: { rejectUnauthorized: false }in your nodemailer transport options. - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration-aws-node@0.2.1
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-notifications-node@0.2.29
@backstage/plugin-notifications-backend-module-slack@0.4.5
Patch Changes
- 4956d7f: Added support for routing notifications to a specific Slack channel via
payload.metadata.slackChannel, with the existing entity annotation lookup as a fallback. - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-notifications-node@0.2.29
@backstage/plugin-notifications-node@0.2.29
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-org@0.7.7
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-org-react@0.1.53
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
@backstage/plugin-permission-backend@0.7.15
Patch Changes
- b754e32: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.22
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
@backstage/plugin-permission-common@0.9.10
Patch Changes
- b754e32: Migrated tests from MSW v1 to MSW v2.
@backstage/plugin-permission-node@0.11.3
Patch Changes
- b754e32: Migrated tests from MSW v1 to MSW v2.
- 2c99b29: Permission rule parameter schemas now accept JSON Schema-compatible Standard Schema implementations, such as Zod v4. Zod v3 schemas remain supported but are deprecated.
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
@backstage/plugin-permission-react@0.5.4
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-permission-common@0.9.10
@backstage/plugin-proxy-backend@0.6.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-proxy-node@0.1.18
@backstage/plugin-proxy-node@0.1.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-scaffolder@1.38.2
Patch Changes
- 9e773ee: Improves scaffolder entity pickers by using the catalog POST endpoint so large template filters are sent in the request body instead of the URL, helping avoid 431 errors and empty option lists.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/integration@2.1.0
- @backstage/plugin-scaffolder-common@2.2.2
- @backstage/frontend-plugin-api@0.18.0
- @backstage/integration-react@1.2.21
- @backstage/plugin-permission-react@0.5.4
- @backstage/plugin-scaffolder-react@2.0.3
- @backstage/plugin-techdocs-react@1.3.14
@backstage/plugin-scaffolder-backend@4.0.3
Patch Changes
- 4bbc088: Fixed the stale task janitor not being set up by passing the scheduler service to the router.
- 943687f: Removed the native addon requirement from scaffolder template rendering. Templates now run through a TypeScript interpreter, and the backend no longer needs the
--no-node-snapshotNode.js option. - 7ca434e: Scaffolder tasks now wait for recovery checkpoint state to be persisted before continuing, preventing later execution from racing ahead of stored recovery state. Restored checkpoints also preserve falsy values without re-running their callbacks.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/plugin-scaffolder-common@2.2.2
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-scaffolder-backend-module-azure@0.2.24
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.9
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-bitbucket-cloud-common@0.3.12
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.24
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.24
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.26
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-gcp@0.2.24
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.24
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- f83a652: Made
descriptionparameter optional inpublish:gerritaction. - Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-gitea@0.2.24
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-github@0.9.12
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-scaffolder-backend-module-gitlab@0.11.9
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-notifications@0.1.25
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-notifications-node@0.2.29
@backstage/plugin-scaffolder-backend-module-rails@0.5.24
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
@backstage/plugin-scaffolder-backend-module-sentry@0.3.7
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.25
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-scaffolder-node-test-utils@0.3.14
@backstage/plugin-scaffolder-common@2.2.2
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-permission-common@0.9.10
@backstage/plugin-scaffolder-node@0.13.6
Patch Changes
- 78bf918: chore(deps): bump
tarfrom 7.5.15 to 7.5.21 - 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/plugin-scaffolder-common@2.2.2
@backstage/plugin-scaffolder-node-test-utils@0.3.14
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.6
- @backstage/backend-plugin-api@1.10.0
- @backstage/backend-test-utils@1.11.6
@backstage/plugin-scaffolder-react@2.0.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/plugin-scaffolder-common@2.2.2
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-permission-react@0.5.4
@backstage/plugin-search@1.7.7
Patch Changes
- a178067: Added a Home page search bar widget blueprint for the new frontend system.
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/ui@0.17.1
- @backstage/plugin-home-react@0.1.41
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-search-react@1.11.7
@backstage/plugin-search-backend@2.1.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/backend-openapi-utils@0.7.1
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-module-catalog@0.3.18
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-module-elasticsearch@1.8.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration-aws-node@0.2.1
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-module-explore@0.3.17
Patch Changes
- 0dee0e6: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-module-pg@0.5.58
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.23
Patch Changes
- 0dee0e6: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-module-techdocs@0.4.17
Patch Changes
- 0dee0e6: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/plugin-techdocs-node@1.15.3
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-catalog-node@2.2.4
- @backstage/plugin-search-backend-node@1.4.7
@backstage/plugin-search-backend-node@1.4.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-permission-common@0.9.10
@backstage/plugin-search-react@1.11.7
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-signals@0.0.34
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-signals-react@0.0.25
@backstage/plugin-signals-backend@0.3.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
- @backstage/plugin-signals-node@0.2.4
@backstage/plugin-signals-node@0.2.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-events-node@0.4.25
@backstage/plugin-signals-react@0.0.25
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.9
@backstage/plugin-techdocs-addons-test-utils@2.0.8
Patch Changes
- Updated dependencies
- @backstage/plugin-techdocs@1.18.0
- @backstage/plugin-catalog@2.0.8
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/core-app-api@1.20.4
- @backstage/test-utils@1.7.21
- @backstage/integration-react@1.2.21
- @backstage/plugin-search-react@1.11.7
- @backstage/plugin-techdocs-react@1.3.14
@backstage/plugin-techdocs-backend@2.2.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/plugin-techdocs-node@1.15.3
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-techdocs-module-addons-contrib@1.1.39
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/integration@2.1.0
- @backstage/frontend-plugin-api@0.18.0
- @backstage/integration-react@1.2.21
- @backstage/plugin-techdocs-react@1.3.14
@backstage/plugin-techdocs-node@1.15.3
Patch Changes
- 226817d: chore(deps): bump
js-yamlfrom 4.2.0 to 4.3.0 - Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/integration@2.1.0
- @backstage/integration-aws-node@0.2.1
@backstage/plugin-techdocs-react@1.3.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/frontend-plugin-api@0.18.0
@backstage/plugin-user-settings@0.9.6
Patch Changes
- 4e8d763: Migrated tests from MSW v1 to MSW v2.
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/core-app-api@1.20.4
- @backstage/ui@0.17.1
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-signals-react@0.0.25
@backstage/plugin-user-settings-backend@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-signals-node@0.2.4
example-app@0.0.38
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/plugin-scaffolder@1.38.2
- @backstage/core-components@0.18.13
- @backstage/plugin-techdocs@1.18.0
- @backstage/plugin-api-docs@0.14.4
- @backstage/plugin-catalog@2.0.8
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/core-app-api@1.20.4
- @backstage/ui@0.17.1
- @backstage/plugin-catalog-graph@0.6.7
- @backstage/plugin-home@0.9.9
- @backstage/plugin-home-react@0.1.41
- @backstage/plugin-user-settings@0.9.6
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app@0.5.2
- @backstage/frontend-app-api@0.16.7
- @backstage/plugin-search@1.7.7
- @backstage/plugin-catalog-import@0.13.16
- @backstage/plugin-catalog-unprocessed-entities@0.2.34
- @backstage/plugin-app-react@0.2.6
- @backstage/app-defaults@1.7.11
- @backstage/cli@0.36.5
- @backstage/core-compat-api@0.5.14
- @backstage/frontend-defaults@0.5.5
- @backstage/integration-react@1.2.21
- @backstage/plugin-app-module-user-settings@0.1.1
- @backstage/plugin-app-visualizer@0.2.7
- @backstage/plugin-auth@0.1.11
- @backstage/plugin-auth-react@0.1.30
- @backstage/plugin-devtools@0.1.42
- @backstage/plugin-kubernetes@0.12.22
- @backstage/plugin-kubernetes-cluster@0.0.40
- @backstage/plugin-notifications@0.5.20
- @backstage/plugin-org@0.7.7
- @backstage/plugin-permission-react@0.5.4
- @backstage/plugin-scaffolder-react@2.0.3
- @backstage/plugin-search-react@1.11.7
- @backstage/plugin-signals@0.0.34
- @backstage/plugin-techdocs-module-addons-contrib@1.1.39
- @backstage/plugin-techdocs-react@1.3.14
app-example-plugin@0.0.38
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/frontend-plugin-api@0.18.0
example-app-legacy@0.2.124
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/plugin-scaffolder@1.38.2
- @backstage/core-components@0.18.13
- @backstage/plugin-techdocs@1.18.0
- @backstage/plugin-api-docs@0.14.4
- @backstage/plugin-catalog@2.0.8
- @backstage/core-plugin-api@1.12.9
- @backstage/plugin-catalog-react@3.2.1
- @backstage/core-app-api@1.20.4
- @backstage/ui@0.17.1
- @backstage/plugin-catalog-graph@0.6.7
- @backstage/plugin-home@0.9.9
- @backstage/plugin-home-react@0.1.41
- @backstage/plugin-user-settings@0.9.6
- @backstage/frontend-app-api@0.16.7
- @backstage/plugin-search@1.7.7
- @backstage/plugin-catalog-import@0.13.16
- @backstage/plugin-catalog-unprocessed-entities@0.2.34
- @backstage/app-defaults@1.7.11
- @backstage/cli@0.36.5
- @backstage/integration-react@1.2.21
- @backstage/plugin-auth-react@0.1.30
- @backstage/plugin-devtools@0.1.42
- @backstage/plugin-kubernetes@0.12.22
- @backstage/plugin-kubernetes-cluster@0.0.40
- @backstage/plugin-mui-to-bui@0.2.10
- @backstage/plugin-notifications@0.5.20
- @backstage/plugin-org@0.7.7
- @backstage/plugin-permission-react@0.5.4
- @backstage/plugin-scaffolder-react@2.0.3
- @backstage/plugin-search-react@1.11.7
- @backstage/plugin-signals@0.0.34
- @backstage/plugin-techdocs-module-addons-contrib@1.1.39
- @backstage/plugin-techdocs-react@1.3.14
example-backend@0.0.53
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/backend-defaults@0.17.7
- @backstage/plugin-mcp-actions-backend@0.2.1
- @backstage/plugin-catalog-backend@3.9.0
- @backstage/plugin-auth-backend@0.30.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-auth-node@0.7.4
- @backstage/plugin-scaffolder-backend@4.0.3
- @backstage/plugin-kubernetes-backend@0.21.7
- @backstage/plugin-permission-backend@0.7.15
- @backstage/plugin-permission-common@0.9.10
- @backstage/plugin-permission-node@0.11.3
- @backstage/plugin-search-backend-module-explore@0.3.17
- @backstage/plugin-search-backend-module-techdocs@0.4.17
- @backstage/plugin-notifications-backend@0.6.8
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.17
- @backstage/plugin-events-backend@0.6.5
- @backstage/plugin-search-backend@2.1.5
- @backstage/plugin-app-backend@0.5.17
- @backstage/plugin-auth-backend-module-github-provider@0.5.6
- @backstage/plugin-auth-backend-module-guest-provider@0.2.22
- @backstage/plugin-auth-backend-module-openshift-provider@0.1.10
- @backstage/plugin-catalog-backend-module-ai-model@0.1.3
- @backstage/plugin-catalog-backend-module-logs@0.1.25
- @backstage/plugin-catalog-backend-module-openapi@0.2.25
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.23
- @backstage/plugin-catalog-backend-module-unprocessed@0.6.15
- @backstage/plugin-devtools-backend@0.5.20
- @backstage/plugin-events-backend-module-google-pubsub@0.2.6
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.22
- @backstage/plugin-proxy-backend@0.6.16
- @backstage/plugin-scaffolder-backend-module-github@0.9.12
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.25
- @backstage/plugin-search-backend-module-catalog@0.3.18
- @backstage/plugin-search-backend-module-elasticsearch@1.8.6
- @backstage/plugin-search-backend-node@1.4.7
- @backstage/plugin-signals-backend@0.3.18
- @backstage/plugin-techdocs-backend@2.2.3
- @backstage/plugin-user-settings-backend@0.4.6
@internal/backend@0.0.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0
@backstage/connections-node@0.2.2
Patch Changes
-
a4b6efa: Added a new
awsconnection type for AWS account credentials, looked up by AWS account number or ARN rather than by URL. A singleaccountauth method covers all accounts: one entry per account with static keys, a profile, or IAM role assumption, and at most one entry markedmainAccount: truethat acts as the fallback for the environment's own account. A connection-levelroleName(with optionalpartition,region,externalId, andwebIdentityTokenFile) describes a role to assume in any account that has no entry of its own. Configurations with duplicate account IDs or multiple main account entries are rejected at startup, and legacy top-levelawsconfiguration is converted automatically, with explicitconnectionsconfig taking precedence.Connection types can now declare a whole-connection validation step that runs after the configuration schemas have parsed, enabling rules that span multiple auth entries or combine connection settings with auth entries. Each auth entry includes its plugin
match, allowing rules to take plugin scoping into account. Connection types also expose a type-levelauthaccessor describing the shape of their configured auth entries, mirroring the existingqueryaccessor. -
Updated dependencies
- @backstage/connections@0.3.0
- @backstage/backend-plugin-api@1.10.0
e2e-test@0.2.43
Patch Changes
- Updated dependencies
- @backstage/create-app@0.9.1
@internal/frontend@0.0.23
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.18.0
@internal/scaffolder@0.0.24
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-scaffolder-react@2.0.3
techdocs-cli-embedded-app@0.2.123
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.10.0
- @backstage/core-components@0.18.13
- @backstage/plugin-techdocs@1.18.0
- @backstage/plugin-catalog@2.0.8
- @backstage/core-app-api@1.20.4
- @backstage/ui@0.17.1
- @backstage/test-utils@1.7.21
- @backstage/frontend-plugin-api@0.18.0
- @backstage/plugin-app-react@0.2.6
- @backstage/cli@0.36.5
- @backstage/frontend-defaults@0.5.5
- @backstage/integration-react@1.2.21
- @backstage/plugin-techdocs-react@1.3.14
yarn-plugin-backstage@0.0.14
Patch Changes
- Updated dependencies
- @backstage/release-manifests@0.0.14
@backstage/plugin-connections-example-backend@0.1.3
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.17.7
- @backstage/connections@0.3.0
- @backstage/backend-plugin-api@1.10.0
- @backstage/plugin-catalog-node@2.2.4
@backstage/plugin-connections-example-backend-module-gitlab@0.1.3
Patch Changes
- Updated dependencies
- @backstage/connections@0.3.0
- @backstage/backend-plugin-api@1.10.0
@internal/plugin-todo-list@1.0.54
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.13
- @backstage/core-plugin-api@1.12.9
@internal/plugin-todo-list-backend@1.0.53
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.10.0