Release v1.51.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.51.0
@backstage/backend-app-api@1.7.0
Minor Changes
- 3595c97: Added
ExtensionPointFactoryMiddlewaretype andcreateExtensionPointFactoryMiddlewarehelper to reimplement extension point outputs at backend creation time.
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/config@1.3.8
@backstage/catalog-model@1.9.0
Minor Changes
- 3664148: Introduced the
AiResourcecatalog entity kind. Entity types, validators, type guards, and the model layer are exported from@backstage/catalog-model/alpha. Install@backstage/plugin-catalog-backend-module-ai-modelin your backend to register the kind with the catalog. - be71476: Added
spec.type: 'mcp-server'as a structured subtype of theAPIkind underv1alpha1/v1beta1. MCP server entities carry aspec.remoteslist instead of a stringdefinition, for representing Model Context Protocol servers in the catalog. See RFC #32062. New public exports:McpServerApiEntity,McpServerRemote,mcpServerApiEntityValidator, andisMcpServerApiEntity. Also addsaddKindVersiontoCatalogModelLayerBuilder(alpha) so layers can add new versions or spec types to existing kinds.
Patch Changes
- ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to
import type. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded viajest.requireActual— most visiblyCannot access '_AppRootElementBlueprintesm' before initializationfrom@backstage/frontend-plugin-api. There are no user-facing API changes. - Updated dependencies
- @backstage/errors@1.3.1
@backstage/eslint-plugin@0.3.0
Minor Changes
- ab1cdbb: Added a new
no-self-package-importslint rule, enabled aserrorin the recommended config, that reports when a package imports itself by its own name instead of using a relative path. This pattern causes circular initialization errors in bundled ESM and withjest.requireActual.
@backstage/frontend-plugin-api@0.17.0
Minor Changes
-
44d77e9: BREAKING: Removed the deprecated
NavItemBlueprint. Navigation items are now discovered fromPageBlueprintextensions based on theirtitleandiconparams.If you were still using
NavItemBlueprint, migrate by movingtitleandiconto yourPageBlueprintinstead:-const navItem = NavItemBlueprint.make({
- params: { title: 'Example', icon: ExampleIcon, routeRef },
-});
const page = PageBlueprint.make({
params: {
+ title: 'Example',
+ icon: <ExampleIcon fontSize="inherit" />,
routeRef,
path: '/example',
loader: () => import('./Page').then(m => <m.Page />),
},
});PageBlueprintexpects anIconElementrather than a Material UIIconComponent, so this is also a good time to switch to Remix Icon if you were using Material UI icons only for the nav item:-import ExampleIcon from '@material-ui/icons/Extension';
+import { RiPuzzleLine } from '@remixicon/react';
...
- icon: ExampleIcon,
+ icon: <RiPuzzleLine />, -
8738203: BREAKING: Removed the deprecated property form of
PortableSchema.schema. Theschemamember is now a plain method that must be called asschema()— direct property access likeschema.typeorschema.propertiesis no longer supported.
Patch Changes
- ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to
import type. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded viajest.requireActual— most visiblyCannot access '_AppRootElementBlueprintesm' before initializationfrom@backstage/frontend-plugin-api. There are no user-facing API changes. - cad156e: Replaced old config schema values from existing extensions and blueprints.
- 72a552f: Updated error messages and deprecation warnings to clarify that the
zod/v4subpath export from the Zod v3 package is not supported byconfigSchema, since it does not include JSON Schema conversion. Thezoddependency has been bumped to^4.0.0. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/filter-predicates@0.1.3
@backstage/frontend-test-utils@0.6.0
Minor Changes
-
44d77e9: BREAKING:
renderInTestAppno longer renders a sidebar or legacynav-itemextensions. The app nav extension is now disabled in the minimal test app shell, along with the layout and routes extensions.If your tests passed
featurescontainingnav-itemextensions and asserted on links or labels in that stub sidebar, switch torenderTestAppinstead — it uses the real app shell and discovers nav items from page extensions.If you only use
renderInTestAppto mount a component with APIs or route refs, there is no change.
Patch Changes
- 0c298f7: Removed internal
mockWithApiFactoryhelper in favor of usingattachMockApiFactorydirectly. - fa363f9: Added support for
ExternalRouteRefin themountedRoutesoption ofrenderInTestAppandrenderTestApp. - 9279ea8: Added explicit type annotations to
.map()callback parameters inrenderInTestAppto avoid implicitanyerrors with newer TypeScript versions. - Updated dependencies
- @backstage/plugin-app@0.4.6
- @backstage/frontend-app-api@0.16.3
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/filter-predicates@0.1.3
- @backstage/plugin-permission-common@0.9.9
- @backstage/plugin-app-react@0.2.3
- @backstage/config@1.3.8
- @backstage/core-app-api@1.20.1
- @backstage/test-utils@1.7.18
- @backstage/plugin-permission-react@0.5.1
@backstage/integration-aws-node@0.2.0
Minor Changes
-
8df06ec: Added
webIdentityTokenFiletoAwsIntegrationAccountConfigandAwsIntegrationDefaultAccountConfig. When set along with aroleName,DefaultAwsCredentialsManagerretrieves credentials by callingAssumeRoleWithWebIdentity(viafromTokenFile) using the file's contents as the web identity token. The file is re-read on each credential refresh.The validator rejects combining
webIdentityTokenFilewithaccessKeyId/secretAccessKey,profile, orexternalId, and rejects setting it without aroleName.
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/config@1.3.8
@techdocs/cli@1.11.0
Minor Changes
- 329f592: Add support for disabling external font downloads via techdocs-cli
techdocs-cli generate --disableExternalFonts, useful for air-gapped Backstage instances.
Patch Changes
- 0c5e41f: Removed unused dependencies that had no imports in source code.
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-defaults@0.17.1
- @backstage/plugin-techdocs-node@1.15.0
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
@backstage/ui@0.15.0
Minor Changes
-
a281469: Add support for flex item props (
grow,shrink, andbasis) toBox,Card,Grid, andFlexitself.Affected components: Box, Card, Grid, Flex
-
5351d8a: Added a
stickyprop to theHeadercomponent. Whentrue, the title-and-actions bar stays fixed to the top of its scroll container while the rest of the header (tags, description, metadata) scrolls away. The sticky bar background color automatically matches the container surface using the bg-consumer system.BREAKING: Removed the main header class from the
Headercomponent. Custom styles that target this class should be updated to target the component sections that remain.Affected components: Header
Patch Changes
-
3846774: Added missing dependencies that were previously only available transitively.
-
e8a1a35: Added
isPendingprop to Alert, Button, ButtonIcon, Table, and TableRoot as a replacement for theloadingprop, aligning with React Aria naming conventions. Theloadingprop is now deprecated but still supported as an alias. CSS selectors now usedata-ispendinginstead ofdata-loadingfor styling pending states;data-loadingis still emitted for backward compatibility but will be removed alongside theloadingprop.Affected components: Alert, Button, ButtonIcon, Table, TableRoot
-
37535b2: Added a public
--bui-bg-inheritCSS variable that resolves to the background color of the nearest enclosing bg provider (Box,Flex,Grid,Card,Accordion, or any element with adata-bgattribute), falling back to--bui-bg-app. Use it from CSS for sticky or fixed elements that need to match their surrounding surface without hardcoding a specific level..searchBarContainer {
position: sticky;
top: 0;
background-color: var(--bui-bg-inherit);
}As part of this change, the
data-bgpainting rules previously duplicated inBox,Flex,Grid,Accordion, andCardhave been centralized into a single source incore.css. Painting and component behavior are unchanged for all existing usages, with one minor expansion: any element with adata-bgattribute (including provider elements and any element that sets it directly) is now painted, not onlyBox/Flex/Grid/Card/Accordionelements. -
e2d9831: Tightened React Aria dependency version ranges from
^to~to prevent unintended minor version upgrades. -
e7fc79f: Added support for grouping options into sections in the Select component. You can now pass section objects with a
titleand a nestedoptionsarray alongside (or instead of) regular options to render grouped dropdowns with section headers.Affected components: Select
-
76635ae: Disabled
Cardscroll shadow in browsers that don't supportanimation-timeline: scroll(). Prevents the shadow from being always visible over theCardBodywhen there's nothing to scroll or the body is not scrolled.Affected components: Card
-
de75f7c: Fixed
CardBodyshowing an unwanted scrollbar when constrained below the scroll shadow height.Affected components: Card
-
a42766e: Fixed dark mode background for Dialog component by correcting the theme attribute selector from
data-themetodata-theme-mode.Affected components: Dialog
-
c6fc76f: Fixed an issue where the active tab indicator would disappear shortly after page load for uncontrolled Tabs.
Affected components: Tabs
-
5520e07: Updated field components to grow within flex layouts instead of forcing their width to remain fixed.
-
11699ac: Updated
PasswordFieldto visually matchTextField, including consistent focus rings, error states, disabled appearance, and background colour behaviour.Affected components: PasswordField
-
d1be10c: Updated React Aria dependencies to v1.17.0 and migrated imports from individual
@react-aria/*and@react-stately/*packages to the monopackages (react-aria,react-stately). This fixes a type resolution error for@react-types/tablethat occurred in new app installations. -
c96e2b3: Added
description,tags, andmetadataprops to theHeadercomponent. Thedescriptionprop accepts a markdown string with support for inline links. Thetagsprop renders a row of text or link items above the title. Themetadataprop renders key-value pairs below the description. Thebreadcrumbsprop has been deprecated and will be removed in a future release.Affected components: Header
-
4bb649d: Fixed Table with row selection creating phantom scroll height on ancestor elements by establishing a containing block for visually-hidden checkbox inputs.
Affected components: Table, TableRoot
-
f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. -
5b85902: Fix
Card href=...not showing a focus indicator on keyboard navigation.Linknow composesuseFocusRing, emitsdata-focus-visible, and renders a--bui-ringoutline when keyboard-focused. The Card's existing focus-ring CSS matches when the trigger is focused.Affected components: Card, Link
-
23ee789: Added invalid-state styling for Checkbox and corresponding Storybook variants for verification.
Affected components: Checkbox, CheckboxGroup
-
38bb056: Adjusted PluginHeader spacing and borders so headers with and without tabs align more consistently with surrounding page content, including when paired with page headers.
Affected components: PluginHeader, Header
-
df705bb: Fixed external URLs in BUI link components being rewritten as in-app paths when the app is served under a non-root base path. Absolute URLs (
http://,https://,//,mailto:,tel:) are now passed through unchanged. Internalhrefvalues are resolved against the currentbasenameexactly once, which also fixes a latent issue where internal link clicks under a non-root base path could navigate to a URL with thebasenameprefix doubled.Affected components: ButtonLink, Card, Link, Menu, Tab, Table, Tag
-
3e0ff6c: Added container alignment to
Headersections so tags, title actions, descriptions, metadata, and tabs use the same width as surrounding page content.Affected components: Header
-
b67a862: Updated Storybook development tooling for
@backstage/uito version 10.4. -
d726bcd: Added new
DatePickercomponent — combines a date field and a calendar popover for selecting a date, built on React Aria with full keyboard and screen reader accessibility. Uses BUI design tokens throughout, including auto-incremented backgrounds via the bg consumer pattern.Affected components: DatePicker
-
401916d: Added new
DateRangePickercomponent — combines two date fields and a calendar popover for selecting a date range, built on React Aria with full keyboard and screen reader accessibility. Uses BUI design tokens throughout, including auto-incremented backgrounds via the bg consumer pattern. -
25909ba: Added
searchDebounceMsandfilterDebounceMsoptions touseTableincompletemode. Both default to0(no debounce, no observable change for existing consumers); set them to defer the client-side filter/search/sort pipeline on large datasets without reimplementing input-layer debouncing. The controlledsearch/onSearchChangeandfilter/onFilterChangecallbacks continue to fire on every change.Affected components: Table
-
ddca41f: Added a new
Comboboxcomponent. It pairs a text input with a filterable dropdown of options and supports single selection, sectioned options, icons, sizes, and custom typed values viaallowsCustomValue.Affected components: Combobox
@backstage/plugin-auth-backend@0.29.0
Minor Changes
-
29d398b: BREAKING: Hardened the default allowed patterns for CIMD and DCR to replace the previous permissive
['*']wildcards with specific defaults for known MCP clients. If you previously relied on the default['*']patterns, you will need to explicitly configure the patterns you need in yourapp-config.yaml.CIMD (
experimentalClientIdMetadataDocuments):allowedClientIdPatternsnow defaults to Claude, VS Code, and the built-in Backstage CLI instead of['*']allowedRedirectUriPatternsnow defaults to loopback addresses (localhost, 127.0.0.1, [::1]) instead of['*']
DCR (
experimentalDynamicClientRegistration):allowedRedirectUriPatternsnow defaults to Cursor and loopback addresses instead of['*']
If you need to allow additional clients or redirect URIs, you can override these defaults in your
app-config.yaml:auth:
experimentalClientIdMetadataDocuments:
enabled: true
allowedClientIdPatterns:
- 'https://claude.ai/*'
- 'https://vscode.dev/*'
- 'https://my-custom-client.example.com/*'
allowedRedirectUriPatterns:
- 'http://localhost:*'
- 'http://127.0.0.1:*'
- 'https://my-app.example.com/callback'
experimentalDynamicClientRegistration:
enabled: true
allowedRedirectUriPatterns:
- 'cursor://*'
- 'http://localhost:*'
- 'http://127.0.0.1:*'
- 'myapp://*'
Patch Changes
- 9f269d7: Limit the size of fetched client ID metadata documents to prevent oversized responses from being accepted.
- 3f5e7ec: Improved OIDC error messages to include the rejected redirect URI or client ID, making it easier to debug client registration failures.
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - 27f24a9: Refresh token usage now verifies that the user's catalog entity still exists before issuing a new access token. If the user has been removed from the catalog, the refresh is rejected and the session is revoked. Transient catalog errors reject the refresh but preserve the session for retry. This check can be disabled by setting
auth.experimentalRefreshToken.dangerouslyDisableCatalogPresenceChecktotrue. - 4f62755: Improved the OAuth consent dialog for MCP authorization by showing more client details, including the client metadata host for CIMD clients, the metadata URL, callback URL, and requested scopes.
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-auth-node@0.7.1
- @backstage/config@1.3.8
@backstage/plugin-catalog-backend@3.7.0
Minor Changes
-
c2de113: BREAKING: When paginating entities with an order field via
/entities/by-query, entities that lack the order field are now excluded from both the result set and thetotalItemscount. Previously these entities appeared at the end of the sorted result viaNULLS LAST, but cursor-based pagination could not actually reach them past the first page — the count over-reported the number of navigable entities. The new behavior aligns the count with what is actually returned.This also removes the
DISTINCTdeduplication from the sort-field CTE, which is a prerequisite for the planner to use the(key, value, entity_id)index in sort order and short-circuit onLIMIT. Installations with duplicate search rows should land the search-table deduplication migration before adopting this change.
Patch Changes
-
3f5e7ec: Added
catalog.actions.experimentalCatalogLayersDescriptions.enabledconfig option. When enabled, thequery-catalog-entitiesaction description referencesget-catalog-model-descriptionfor field information instead of embedding a static model description. -
ccbad9d: Improved the performance of the
catalog_entities_countmetric.The legacy Prometheus and OpenTelemetry observable gauges previously each ran their own copy of the per-kind count query against the
searchtable on every metrics scrape. On large catalogs this could pile up faster than the queries completed, contending for buffers and stalling the database.The two callbacks now share a single query result with a short in-process TTL cache, and the underlying query reads from
final_entitiesinstead ofsearch, avoiding the bitmap heap scans that dominated the previous form. The emitted labels and values are unchanged. -
17a9550: Deprecated immediate mode stitching (
catalog.stitchingStrategy.mode: 'immediate'). A warning is now logged on startup when immediate mode is configured. Immediate mode will be removed in the next Backstage release. Migrate to deferred mode (the default) by removing thestitchingStrategyconfiguration or settingmode: 'deferred'. -
add5d1a: Restructured the entity listing endpoint so that, when a sort field is specified, the search-by-key index drives the query rather than being side-joined onto
final_entities. This lets PostgreSQL walk the(key, value, entity_id)index in already-sorted order and short-circuit onLIMIT, reducing typical broad-filter paginated list times from seconds to milliseconds. Entities that lack the sort field still appear at the end of sorted results (NULLS LAST semantics preserved), ordered byentity_id. -
387ea7d: Simplified the entity facets aggregation from
COUNT(DISTINCT entity_id)toCOUNT(*). The unique constraint on(entity_id, key, value)guarantees each entity appears at most once per search row group, making theDISTINCTunnecessary. This allows the database to use a simpler aggregation plan. -
3f55b73: Improved the performance of the entity facets endpoint when filters are applied. The filtered entity set is now combined with the search table through an inner join rather than a
WHERE entity_id IN (subquery). Results are unchanged; on large catalogs the query planner is able to choose dramatically cheaper plans, with measured improvements ranging from roughly 1.2× on already-fast cases to 7× or more on high-cardinality facets. -
b33f845: Fixed several database migration
downfunctions that were not properly reversible, causing the SQL report to show warnings:20241003170511_alter_target_in_locations.js: bothupanddownnow include.notNullable()when altering thelocations.targetcolumn, preventing theNOT NULLconstraint from being accidentally dropped when widening the column type fromvarchar(255)totext.20220116144621_remove_legacy.js: thedownfunction now properly recreates the three dropped legacy tables (entities,entities_search,entities_relations) with correct columns and indices.20210302150147_refresh_state.js: thedownfunction now drops dependent tables in the correct order (avoiding a FK constraint violation) and fixes a typo where the table was referred to asreferencesinstead ofrefresh_state_references.20201005122705_add_entity_full_name.js: thedownfunction now drops thefull_namecolumn fromentities(notentities_search), and restores theentities_unique_nameindex with the correct column order(kind, name, namespace).20200702153613_entities.js: thedownfunction now usestable.integer('generation')instead oftable.string('generation'), restoring the correct column type.
-
cde3643: Added missing description to the
typeparameter on theunregister-entityMCP action. -
cf195de: Fixed a performance regression in the
/entity-facetsendpoint when filters or permission conditions are applied, by routing the EXISTS-based filter throughfinal_entitiesinstead of correlating against the much largersearchtable. -
07ec25d: Moved
generateStableHashout of shared utility file to avoid pullingnode:cryptointo browser bundles -
bc32c13: Added a missing index on
relations.target_entity_ref. Several query paths (orphan deletion, entity ancestry, eager pruning) join or filter on this column, but no index existed — causing full sequential scans of the relations table on every invocation. On a production catalog with ~3.5M relation rows, individual lookups were taking ~122ms (full table scan) instead of <1ms (index scan). -
744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. -
e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). -
7445f0f: Added a migration that removes duplicate rows from the
searchtable, creates covering indices for improved query performance, and adds aUNIQUEconstraint on(entity_id, key, value).This is a long-running migration on large catalogs. On PostgreSQL with millions of search rows, the index creation may take 5-15 minutes per index. During this time, other pods running the previous version will continue to serve traffic normally — the index creation does not block reads or writes. However, if a Kubernetes liveness probe kills the pod before the index build completes, the build is lost and the next startup will start over. On large tables this can repeat indefinitely.
For large installations, it is recommended to run the following SQL commands against your PostgreSQL database before deploying this version. Each index build takes a few minutes but does not block reads or writes. If these have already completed, the migration will detect the existing indices and skip all work — startup will be instant.
-- Step 1: Remove duplicate search rows
WITH cte AS (
SELECT ctid, row_number() OVER (PARTITION BY entity_id, key, value) AS rn
FROM search
)
DELETE FROM search USING cte WHERE search.ctid = cte.ctid AND cte.rn > 1;
-- Step 2: Create new indices (run each separately)
CREATE UNIQUE INDEX CONCURRENTLY IF NOT EXISTS
search_entity_key_value_idx ON search (entity_id, key, value);
CREATE INDEX CONCURRENTLY IF NOT EXISTS
search_key_value_entity_idx ON search (key, value, entity_id);
CREATE INDEX CONCURRENTLY IF NOT EXISTS
search_facets_covering_idx ON search (key, original_value, entity_id)
WHERE original_value IS NOT NULL;
-- Step 3: Drop old indices that are no longer needed
DROP INDEX CONCURRENTLY IF EXISTS search_key_value_idx;
DROP INDEX CONCURRENTLY IF EXISTS search_key_original_value_idx;Also fixed
buildEntitySearchto remove duplicate output for entities with duplicate array values, and addedON CONFLICT DO UPDATEtosyncSearchRowsso that concurrent stitching races are handled gracefully. -
Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/filter-predicates@0.1.3
- @backstage/integration@2.0.2
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-permission-common@0.9.9
- @backstage/backend-openapi-utils@0.6.9
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-ai-model@0.1.0
Minor Changes
- 3664148: Introduced the
AiResourcecatalog entity kind. Entity types, validators, type guards, and the model layer are exported from@backstage/catalog-model/alpha. Install@backstage/plugin-catalog-backend-module-ai-modelin your backend to register the kind with the catalog.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
@backstage/plugin-catalog-backend-module-msgraph@0.10.0
Minor Changes
- 2bd0450: BREAKING: Disabled user accounts are now filtered out by default. The provider automatically applies an
accountEnabled eq truefilter, combining it with any customuser.filteryou provide. If you previously includedaccountEnabled eq truein your user filter, it is safe to remove it, but leaving it in will not cause any issues.
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-msgraph-incremental@0.1.0
Minor Changes
- 2bd0450: BREAKING: Disabled user accounts are now filtered out by default. The provider automatically applies an
accountEnabled eq truefilter, combining it with any customuser.filteryou provide. If you previously includedaccountEnabled eq truein your user filter, it is safe to remove it, but leaving it in will not cause any issues. - f1279ea: Introduces a cursor-based incremental ingestion provider for Microsoft Graph that processes users and groups one page at a time. Unlike
MicrosoftGraphOrgEntityProvider, this module never holds the full dataset in memory — each burst processes a single page (up to 999 users or 100 groups). The@odata.nextLinkcursor is persisted so a pod restart resumes from the last completed page rather than starting over.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.12
- @backstage/plugin-catalog-backend-module-msgraph@0.10.0
- @backstage/config@1.3.8
@backstage/plugin-permission-node@0.11.0
Minor Changes
-
2f0519c: BREAKING: Cleaned up the
PolicyQueryUsertype:token— Removed. Was previously deprecated in favor ofcredentialswithcoreServices.auth.expiresInSeconds— Removed. Was previously deprecated.identity— Removed. Was previously deprecated in favor ofinfo.info— Deprecated. Still required and populated for now; will be made optional and then removed in a future release.credentials— Unchanged.
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-permission-common@0.9.9
- @backstage/config@1.3.8
@backstage/plugin-scaffolder@1.37.0
Minor Changes
-
dbeb7aa: Added experimental BUI (Backstage UI) form theme for scaffolder forms. All default field extensions render BUI variants when enabled.
Extension config:
app:
extensions:
- sub-page:scaffolder/templates:
config:
enableBackstageUi: trueJSX props:
<ScaffolderPage formProps={{ EXPERIMENTAL_theme: 'bui' }} /> -
8006acf: Promoted
formDecoratorsApiRef,ScaffolderFormDecoratorsApi,DefaultScaffolderFormDecoratorsApi, andformDecoratorsApifrom@alphato@public. -
d09c21c: The
sub-page:scaffolder/templatesextension now accepts agroupsconfig field that lets you define template groups on the template list page. Each group has atitleand afilterpredicate. Templates not matched by any configured group fall into an automatically appended "Other Templates" group. With no groups configured, the page renders a single "Templates" group as before.Example:
app:
extensions:
- sub-page:scaffolder/templates:
config:
groups:
- title: Recommended Services
filter:
spec.type: service
- title: Documentation
filter:
spec.type: documentation
Patch Changes
- 1ecc3ca: Fixed spelling mistakes in internal code
- f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 415e30b: Simplified the
OwnerEntityColumnin the task list to rely onEntityRefLinkand the entity presentation API instead of manually fetching entities from the catalog. - 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - 8006acf: Form decorator input is now parsed against the zod schema configured on the
decorator before the decorator runs, so defaults declared via
.default()are applied and invalid input is reported through the error API instead of silently passing through. - 8006acf: The template wizard now reads form decorators from the new
spec.formDecoratorsfield on a template, falling back to the deprecatedspec.EXPERIMENTAL_formDecoratorsfor templates that have not been migrated. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/plugin-scaffolder-react@2.0.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/filter-predicates@0.1.3
- @backstage/integration@2.0.2
- @backstage/plugin-catalog-react@3.0.0
- @backstage/plugin-techdocs-react@1.3.11
- @backstage/plugin-scaffolder-common@2.2.0
- @backstage/catalog-client@1.15.1
- @backstage/integration-react@1.2.18
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-scaffolder-backend@4.0.0
Minor Changes
- 77bee9f: Updated the
list-scaffolder-tasksaction to support the new "status" filter parameter, allowing the action to return tasks matching a specific status. - 07e08be: Added
always()andfailure()status check functions for scaffolder steps. These functions can be used in the if field of a step to control execution after failures.always()ensures a step runs regardless of previous step outcomes, whilefailure()runs a step only when a previous step has failed. - 8006acf: The template parameter schema response now exposes a
formDecoratorsfield instead ofEXPERIMENTAL_formDecorators. Templates that still declarespec.EXPERIMENTAL_formDecoratorsare read transparently and surfaced under the new field.
Patch Changes
- c78b3b6: Add explicit memory management to SecureTemplater usage
- 1ecc3ca: Fixed spelling mistakes in internal code
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/plugin-scaffolder-node@0.13.3
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-permission-common@0.9.9
- @backstage/plugin-scaffolder-common@2.2.0
- @backstage/backend-openapi-utils@0.6.9
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-scaffolder-common@2.2.0
Minor Changes
- 8006acf: Promote the
formDecoratorsfield on theTemplatespec out of experimental. The previousEXPERIMENTAL_formDecoratorsfield continues to work and is kept as a deprecated alias.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/integration@2.0.2
- @backstage/plugin-permission-common@0.9.9
@backstage/plugin-scaffolder-react@2.0.0
Minor Changes
-
dbeb7aa: Added experimental BUI (Backstage UI) form theme for scaffolder forms. All default field extensions render BUI variants when enabled.
Extension config:
app:
extensions:
- sub-page:scaffolder/templates:
config:
enableBackstageUi: trueJSX props:
<ScaffolderPage formProps={{ EXPERIMENTAL_theme: 'bui' }} /> -
8006acf: Promoted
FormDecoratorBlueprintandScaffolderFormDecoratorfrom@alphato@public. -
d09c21c: The
TemplateCardcomponent is now a swappable component. Apps using the new frontend system can replace it by registering aSwappableComponentBlueprintthat targetsTemplateCard. Components used as the swappable implementation receiveTemplateCardComponentProps, whereonSelectedis a zero-argument callback bound to the rendered template. Existing usage continues to work unchanged.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/frontend-test-utils@0.6.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-catalog-react@3.0.0
- @backstage/plugin-scaffolder-common@2.2.0
- @backstage/catalog-client@1.15.1
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-techdocs-backend@2.2.0
Minor Changes
- 5ef8d16: Add support for disabling external font downloads via app-config option
techdocs.generator.mkdocs.disableExternalFonts, useful for air-gapped Backstage instances.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/plugin-techdocs-node@1.15.0
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
@backstage/plugin-techdocs-node@1.15.0
Minor Changes
- 5ef8d16: Add support for disabling external font downloads via app-config option
techdocs.generator.mkdocs.disableExternalFonts, useful for air-gapped Backstage instances.
Patch Changes
- 6ce8462: Fixed bug causing
--legacyCopyReadmeMdToIndexMdoption to fail if docs directory is not present - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/integration-aws-node@0.2.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-search-common@1.2.24
@backstage/app-defaults@1.7.8
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/core-plugin-api@1.12.6
- @backstage/core-app-api@1.20.1
- @backstage/plugin-permission-react@0.5.1
@backstage/backend-defaults@0.17.1
Patch Changes
- 90b572e: Adds an alpha
TracingServiceto provide a unified interface for emitting trace spans across Backstage plugins. - 97d3bd4: Fixed a race condition in
CachedUserInfoServicewhere a failed request could incorrectly evict a newer cache entry for the same token. The error handler now verifies the map entry is still the same promise before deleting it. - 3595c97: Exported
defaultServiceFactoriesto allow use withcreateSpecializedBackendfor advanced configuration likeextensionPointFactoryMiddleware. - 89d3248: Fixed scheduler
sleepfiring immediately for durations longer than ~24.8 days, caused by Node.jssetTimeoutoverflowing its 32-bit millisecond limit. - d00a44b: Fixed Valkey cluster mode to use
iovalkey'sClusterclass instead ofcreateClusterfrom@keyv/redis. The previous implementation passed a@redis/clientRedisClusterinstance to@keyv/valkey, which expects aniovalkeyClusterinstance. This caused the cluster client to not be recognized correctly, as the two libraries have incompatible object models. - 2f0519c: Added a new
CachedUserInfoServicedecorator that wrapsDefaultUserInfoServicewith a 5-second TTL cache and in-flight request coalescing. The decorator is wired in viauserInfoServiceFactoryusing a shared root-level cache. RepeatedgetUserInfo()calls for the same user token within the TTL window return the cached result without making an HTTP call to the auth backend. Note that customUserInfoServiceimplementations registered via their own factory will not benefit from this cache automatically. - 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - 6209065: Added
contextandpropagationto the alphaTracingService. Plugins can bridge OpenTelemetry context across async boundaries viatracing.propagation.extract(tracing.context.active(), carrier)followed bytracing.context.with(ctx, fn), and read propagated baggage viatracing.propagation.getActiveBaggage()ortracing.propagation.getBaggage(ctx). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/integration-aws-node@0.2.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-app-api@1.7.0
- @backstage/cli-node@0.3.2
- @backstage/integration@2.0.2
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-auth-node@0.7.1
- @backstage/plugin-permission-common@0.9.9
- @backstage/config@1.3.8
- @backstage/config-loader@1.10.11
- @backstage/plugin-events-node@0.4.22
@backstage/backend-dynamic-feature-service@0.8.2
Patch Changes
- 41070b8: Upgraded
@module-federation/enhanced,@module-federation/runtime, and@module-federation/sdkfrom^0.21.6to^2.3.3to address known vulnerabilities. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-defaults@0.17.1
- @backstage/plugin-catalog-backend@3.7.0
- @backstage/cli-node@0.3.2
- @backstage/plugin-scaffolder-node@0.13.3
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-auth-node@0.7.1
- @backstage/plugin-permission-common@0.9.9
- @backstage/plugin-search-backend-node@1.4.4
- @backstage/backend-openapi-utils@0.6.9
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
- @backstage/config-loader@1.10.11
- @backstage/plugin-app-node@0.1.45
- @backstage/plugin-events-backend@0.6.2
- @backstage/plugin-events-node@0.4.22
- @backstage/plugin-search-common@1.2.24
@backstage/backend-openapi-utils@0.6.9
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
@backstage/backend-plugin-api@1.9.1
Patch Changes
- 90b572e: Adds an alpha
TracingServiceto provide a unified interface for emitting trace spans across Backstage plugins. - 6209065: Added
contextandpropagationto the alphaTracingService. Plugins can bridge OpenTelemetry context across async boundaries viatracing.propagation.extract(tracing.context.active(), carrier)followed bytracing.context.with(ctx, fn), and read propagated baggage viatracing.propagation.getActiveBaggage()ortracing.propagation.getBaggage(ctx). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-auth-node@0.7.1
- @backstage/plugin-permission-common@0.9.9
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
@backstage/backend-test-utils@1.11.3
Patch Changes
- 7fb12b8: Added a new tracing service mock to be leveraged in tests
- ada7df7: Fixed
mockCredentialsto include the internalversion: 'v1'field on all credential objects (none(),user(),limitedUser(),service()), and fixeduser()to encode the user entity ref into the token (matchinguser.token(ref)behavior). This makes mock credentials compatible withtoInternalBackstageCredentials(), which validates the version field, and ensures that credentials for different users produce different tokens. - e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - 6209065: Added
contextandpropagationto the alphaTracingService. Plugins can bridge OpenTelemetry context across async boundaries viatracing.propagation.extract(tracing.context.active(), carrier)followed bytracing.context.with(ctx, fn), and read propagated baggage viatracing.propagation.getActiveBaggage()ortracing.propagation.getBaggage(ctx). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-defaults@0.17.1
- @backstage/backend-app-api@1.7.0
- @backstage/plugin-auth-node@0.7.1
- @backstage/plugin-permission-common@0.9.9
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/catalog-client@1.15.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/filter-predicates@0.1.3
@backstage/cli@0.36.2
Patch Changes
- 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - Updated dependencies
- @backstage/eslint-plugin@0.3.0
- @backstage/errors@1.3.1
- @backstage/cli-module-build@0.1.3
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
- @backstage/cli-defaults@0.1.2
- @backstage/cli-module-test-jest@0.1.2
@backstage/cli-common@0.2.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
@backstage/cli-defaults@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-module-build@0.1.3
- @backstage/cli-module-new@0.1.3
- @backstage/cli-module-actions@0.1.1
- @backstage/cli-module-auth@0.1.2
- @backstage/cli-module-config@0.1.2
- @backstage/cli-module-github@0.1.2
- @backstage/cli-module-info@0.1.2
- @backstage/cli-module-lint@0.1.2
- @backstage/cli-module-maintenance@0.1.2
- @backstage/cli-module-migrate@0.1.2
- @backstage/cli-module-test-jest@0.1.2
- @backstage/cli-module-translations@0.1.2
@backstage/cli-module-actions@0.1.1
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-node@0.3.2
@backstage/cli-module-auth@0.1.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-node@0.3.2
@backstage/cli-module-build@0.1.3
Patch Changes
- ed4ee6f: Fixed config path resolution for the embedded-postgres database client detection to resolve paths relative to the target package directory rather than the workspace root.
- be7e4eb: The embedded Postgres database used during local development now respects user-provided connection configuration. If you configure
host,port,user, orpasswordunderbackend.database.connectionalongside theembedded-postgresdatabase client, those values will be forwarded to the embedded Postgres instance. Only values that you have not configured will be filled in with defaults. This makes it possible to run the embedded database on a specific host and port, for example to connect to it externally withpsql. - 41070b8: Upgraded
@module-federation/enhanced,@module-federation/runtime, and@module-federation/sdkfrom^0.21.6to^2.3.3to address known vulnerabilities. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-node@0.3.2
- @backstage/module-federation-common@0.1.4
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
- @backstage/config-loader@1.10.11
@backstage/cli-module-config@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
- @backstage/config-loader@1.10.11
@backstage/cli-module-github@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-info@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-lint@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-maintenance@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-migrate@0.1.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-new@0.1.3
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-test-jest@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-module-translations@0.1.2
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
@backstage/cli-node@0.3.2
Patch Changes
- 357d639: Fixed a bug in
PackageGraph.listChangedPackageswhere removed dependencies were not detected during lockfile analysis. The dependency graph from the previous lockfile was not being merged, causing transitive dependency removals to be missed. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-common@0.2.2
@backstage/codemods@0.1.57
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.2.2
@backstage/config@1.3.8
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
@backstage/config-loader@1.10.11
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
@backstage/core-app-api@1.20.1
Patch Changes
- Updated dependencies
- @backstage/ui@0.15.0
- @backstage/core-plugin-api@1.12.6
- @backstage/config@1.3.8
@backstage/core-compat-api@0.5.11
Patch Changes
- 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/filter-predicates@0.1.3
- @backstage/plugin-catalog-react@3.0.0
- @backstage/plugin-app-react@0.2.3
@backstage/core-components@0.18.10
Patch Changes
- 3846774: Added missing dependencies that were previously only available transitively.
- 021b368: Added stable DOM markers to the legacy Page and Header so adjacent layout components can coordinate spacing without relying on generated class names.
- 0c5e41f: Removed unused dependencies that had no imports in source code.
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/core-plugin-api@1.12.6
- @backstage/config@1.3.8
@backstage/core-plugin-api@1.12.6
Patch Changes
- ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to
import type. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded viajest.requireActual— most visiblyCannot access '_AppRootElementBlueprintesm' before initializationfrom@backstage/frontend-plugin-api. There are no user-facing API changes. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/config@1.3.8
@backstage/create-app@0.8.3
Patch Changes
- 7295193: Bumped create-app version.
- b0bc1e5: Bumped create-app version.
- 14e2056: Pinned the Jest version range in app templates to
~30.2.0to prevent automatic upgrades to Jest 30.4.x, which requires Node.js v24.9+ and breaks tests on Node 22. - 927c003: Replaced internal error utilities with shared ones from
@backstage/cli-common. - Updated dependencies
- @backstage/cli-common@0.2.2
@backstage/dev-utils@1.1.23
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-catalog-react@3.0.0
- @backstage/app-defaults@1.7.8
- @backstage/core-app-api@1.20.1
- @backstage/integration-react@1.2.18
@backstage/errors@1.3.1
Patch Changes
- 8741e5a: Added explicit
nameproperty toServiceUnavailableErrorfor consistency with all other error classes, making it resilient to minification.
@backstage/filter-predicates@0.1.3
Patch Changes
- 691da8d: Filter predicates that mix operator keys (
$all,$any,$not) with other keys are now rejected. Previously, a predicate like{ kind: 'API', $not: { 'spec.type': 'dataset' } }would silently drop thekindcheck. The correct form wraps conditions in$all. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/config@1.3.8
@backstage/frontend-app-api@0.16.3
Patch Changes
- f79eaf2: Internal cleanup of routing utilities.
- b6ca666: Invalid feature flag declarations no longer crash the app during bootstrap. They are now reported through the error collector and skipped, letting the rest of the app load normally.
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/frontend-defaults@0.5.2
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/filter-predicates@0.1.3
- @backstage/config@1.3.8
- @backstage/core-app-api@1.20.1
@backstage/frontend-defaults@0.5.2
Patch Changes
- 482cc59: Invalid feature flag declarations are now treated as warnings rather than errors, letting the app load normally.
- Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/errors@1.3.1
- @backstage/plugin-app@0.4.6
- @backstage/frontend-app-api@0.16.3
- @backstage/frontend-plugin-api@0.17.0
- @backstage/config@1.3.8
@backstage/frontend-dev-utils@0.1.2
Patch Changes
- Updated dependencies
- @backstage/ui@0.15.0
- @backstage/plugin-app@0.4.6
- @backstage/frontend-defaults@0.5.2
- @backstage/frontend-plugin-api@0.17.0
@backstage/frontend-dynamic-feature-loader@0.1.12
Patch Changes
- 41070b8: Upgraded
@module-federation/enhanced,@module-federation/runtime, and@module-federation/sdkfrom^0.21.6to^2.3.3to address known vulnerabilities. - Updated dependencies
- @backstage/frontend-plugin-api@0.17.0
- @backstage/module-federation-common@0.1.4
- @backstage/config@1.3.8
@backstage/integration@2.0.2
Patch Changes
-
6b112d3: Fixed two issues in the GitLab integration's fetch behavior:
- The internal fetch wrapper was passing
mode: 'same-origin'on every request. This had no practical effect server-side, but would have caused cross-origin requests to be rejected when the integration is used from a browser. Requests now use the default fetch mode and work correctly in both browser and Node environments. - When retries are configured, transient network errors (such as dropped connections or DNS hiccups) are now retried using the same
maxRetriesand exponential delay as retryable HTTP status codes. Previously, a thrown fetch error would propagate immediately on the first failure regardless of the retry configuration. Caller-initiated aborts continue to surface immediately without being retried.
- The internal fetch wrapper was passing
-
b62781f: Moved
registerMswTestHooksto test files. -
Updated dependencies
- @backstage/errors@1.3.1
- @backstage/config@1.3.8
@backstage/integration-react@1.2.18
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.6
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
@backstage/module-federation-common@0.1.4
Patch Changes
- 41070b8: Upgraded
@module-federation/enhanced,@module-federation/runtime, and@module-federation/sdkfrom^0.21.6to^2.3.3to address known vulnerabilities. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/config@1.3.8
@backstage/repo-tools@0.17.2
Patch Changes
- 927c003: Replaced internal error utilities with shared ones from
@backstage/cli-common. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/cli-node@0.3.2
- @backstage/cli-common@0.2.2
- @backstage/config-loader@1.10.11
@backstage/test-utils@1.7.18
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-permission-common@0.9.9
- @backstage/config@1.3.8
- @backstage/core-app-api@1.20.1
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-api-docs@0.14.1
Patch Changes
- f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/plugin-catalog@2.0.5
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-catalog-react@3.0.0
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-app@0.4.6
Patch Changes
-
a345820: The
app/routesredirect config now supports path parameter substitution in thetotarget. Named params (:userId) and splat params (*) captured by thefrompath are replaced in thetostring before navigating, making it possible to express redirects like:app:
extensions:
- app/routes:
config:
redirects:
- from: /users/:userId
to: /profile/:userId
- from: /old-docs
to: /docs/* -
d1be10c: Migrated React Aria imports from individual packages (
@react-aria/toast,@react-aria/button,@react-stately/toast) to the monopackages (react-aria,react-stately). -
e2d9831: Tightened React Aria dependency version ranges from
^to~to prevent unintended minor version upgrades. -
f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. -
2ba8c10: Following the removal of
NavItemBlueprintin@backstage/frontend-plugin-api, the built-in app nav was updated to keep accepting legacynav-itemextensions so older plugins continue to work until they migrate. -
cad156e: Replaced old config schema values from existing extensions and blueprints.
-
085133f: The
zoddependency has been bumped from^3.25.76 || ^4.0.0to^4.0.0, sinceconfigSchemarequires the full Zod v4 package for JSON Schema support. -
Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/filter-predicates@0.1.3
- @backstage/plugin-app-react@0.2.3
- @backstage/integration-react@1.2.18
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-app-backend@0.5.14
Patch Changes
- 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - 0c5e41f: Removed unused dependencies that had no imports in source code.
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
- @backstage/config@1.3.8
- @backstage/config-loader@1.10.11
- @backstage/plugin-app-node@0.1.45
@backstage/plugin-app-node@0.1.45
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/config-loader@1.10.11
@backstage/plugin-app-react@0.2.3
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
@backstage/plugin-app-visualizer@0.2.4
Patch Changes
- e2d9831: Tightened React Aria dependency version ranges from
^to~to prevent unintended minor version upgrades. - f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
@backstage/plugin-auth@0.1.8
Patch Changes
- f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 4f62755: Improved the OAuth consent dialog for MCP authorization by showing more client details, including the client metadata host for CIMD clients, the metadata URL, callback URL, and requested scopes.
- Updated dependencies
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-auth0-provider@0.4.1
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.16
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-backend@0.29.0
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.20
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.15
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
- @backstage/config@1.3.8
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.15
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-github-provider@0.5.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-gitlab-provider@0.4.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-google-provider@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-guest-provider@0.2.19
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.20
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-oidc-provider@0.4.16
Patch Changes
- 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-backend@0.29.0
- @backstage/plugin-auth-node@0.7.1
- @backstage/config@1.3.8
@backstage/plugin-auth-backend-module-okta-provider@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-openshift-provider@0.1.7
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
- @backstage/config@1.3.8
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-auth-node@0.7.1
@backstage/plugin-auth-node@0.7.1
Patch Changes
- 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
@backstage/plugin-auth-react@0.1.27
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/errors@1.3.1
- @backstage/core-plugin-api@1.12.6
@backstage/plugin-bitbucket-cloud-common@0.3.10
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.2
@backstage/plugin-catalog@2.0.5
Patch Changes
- 728629c: Fixed an issue where navigating to an unknown sub-path on an entity page (for example
/catalog/default/component/foo/blob) would silently render the first available route. Unknown paths now show the standard not-found page instead. - 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - 0c5e41f: Removed unused dependencies that had no imports in source code.
- cad156e: Replaced old config schema values from existing extensions and blueprints.
- 085133f: The
zoddependency has been bumped from^3.25.76 || ^4.0.0to^4.0.0, sinceconfigSchemarequires the full Zod v4 package for JSON Schema support. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-catalog-react@3.0.0
- @backstage/core-compat-api@0.5.11
- @backstage/plugin-techdocs-react@1.3.11
- @backstage/plugin-search-react@1.11.4
- @backstage/plugin-scaffolder-common@2.2.0
- @backstage/catalog-client@1.15.1
- @backstage/integration-react@1.2.18
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-permission-react@0.5.1
- @backstage/plugin-search-common@1.2.24
@backstage/plugin-catalog-backend-module-aws@0.4.23
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/integration-aws-node@0.2.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-defaults@0.17.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-kubernetes-common@0.9.12
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-azure@0.3.17
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.14
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/backend-openapi-utils@0.6.9
- @backstage/config@1.3.8
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.11
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-bitbucket-cloud-common@0.3.10
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.11
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-gcp@0.3.19
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-kubernetes-common@0.9.12
- @backstage/config@1.3.8
@backstage/plugin-catalog-backend-module-gerrit@0.3.14
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-gitea@0.1.12
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-github@0.13.2
Patch Changes
- d745f1c: Added experimental support for checking suspended users via the GitHub REST API instead of the GraphQL
suspendedAtfield. Enable by setting bothexcludeSuspendedUsers: trueandexperimental_checkForSuspendedUsersWithRest: truein the provider config. When enabled, responses are cached using conditional HTTP requests to minimize REST API rate limit usage. - e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - aa313f0: The
GithubMultiOrgEntityProvidernow emits entities in a stable order during full mutations. Entities are sorted by entity ref, with the location annotation as a tiebreaker for entities that share the same ref. This prevents entity data from flickering between different GitHub orgs across refresh cycles whenalwaysUseDefaultNamespaceis enabled and teams with identical slugs exist in multiple orgs. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-github-org@0.3.22
Patch Changes
- d745f1c: Added experimental support for checking suspended users via the GitHub REST API instead of the GraphQL
suspendedAtfield. Enable by setting bothexcludeSuspendedUsers: trueandexperimental_checkForSuspendedUsersWithRest: truein the provider config. When enabled, responses are cached using conditional HTTP requests to minimize REST API rate limit usage. - Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-backend-module-github@0.13.2
- @backstage/plugin-catalog-node@2.2.1
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-gitlab@0.8.3
Patch Changes
- 1ecc3ca: Fixed spelling mistakes in internal code
- 0c5e41f: Removed unused dependencies that had no imports in source code.
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-defaults@0.17.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.21
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-catalog-backend-module-gitlab@0.8.3
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.12
Patch Changes
- 32f0dfe: On PostgreSQL,
WHERE ref IN ($1, $2, ..., $N)queries on theingestion_mark_entitiestable now use= ANY($1)with a single array parameter instead. This reduces prepared statement bloat in the query plan cache when the number of entity refs varies between calls. - 0c5e41f: Removed unused dependencies that had no imports in source code.
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-defaults@0.17.1
- @backstage/plugin-catalog-backend@3.7.0
- @backstage/plugin-catalog-node@2.2.1
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-ldap@0.12.5
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/config@1.3.8
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-logs@0.1.22
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-backend@3.7.0
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-catalog-backend-module-openapi@0.2.22
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/integration@2.0.2
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-puppetdb@0.2.22
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/config@1.3.8
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.20
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-scaffolder-common@2.2.0
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-backend-module-unprocessed@0.6.12
Patch Changes
- fa06df6: Added permission authorization checks to the unprocessed entities read endpoints for pending and failed entities.
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-auth-node@0.7.1
- @backstage/plugin-permission-common@0.9.9
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.16
@backstage/plugin-catalog-common@1.1.10
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/plugin-permission-common@0.9.9
- @backstage/plugin-search-common@1.2.24
@backstage/plugin-catalog-graph@0.6.4
Patch Changes
- f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 0c5e41f: Removed unused dependencies that had no imports in source code.
- cad156e: Replaced old config schema values from existing extensions and blueprints.
- 085133f: The
zoddependency has been bumped from^3.25.76 || ^4.0.0to^4.0.0, sinceconfigSchemarequires the full Zod v4 package for JSON Schema support. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-catalog-react@3.0.0
- @backstage/catalog-client@1.15.1
@backstage/plugin-catalog-import@0.13.13
Patch Changes
- f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 39eb61b: Internal refactor
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/integration@2.0.2
- @backstage/plugin-catalog-react@3.0.0
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
- @backstage/integration-react@1.2.18
- @backstage/plugin-catalog-common@1.1.10
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-catalog-node@2.2.1
Patch Changes
- ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to
import type. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded viajest.requireActual— most visiblyCannot access '_AppRootElementBlueprintesm' before initializationfrom@backstage/frontend-plugin-api. There are no user-facing API changes. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-test-utils@1.11.3
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-permission-common@0.9.9
- @backstage/catalog-client@1.15.1
- @backstage/plugin-catalog-common@1.1.10
@backstage/plugin-catalog-react@3.0.0
Patch Changes
- f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 744fa1f: Removed duplicated entries that appeared in both
dependenciesanddevDependencies. - cad156e: Replaced old config schema values from existing extensions and blueprints.
- 085133f: The
zoddependency has been bumped from^3.25.76 || ^4.0.0to^4.0.0, sinceconfigSchemarequires the full Zod v4 package for JSON Schema support. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/frontend-test-utils@0.6.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/filter-predicates@0.1.3
- @backstage/core-compat-api@0.5.11
- @backstage/plugin-permission-common@0.9.9
- @backstage/catalog-client@1.15.1
- @backstage/integration-react@1.2.18
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-catalog-unprocessed-entities@0.2.31
Patch Changes
- 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/core-compat-api@0.5.11
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.16
@backstage/plugin-catalog-unprocessed-entities-common@0.0.16
Patch Changes
- fa06df6: Added
unprocessedEntitiesReadPermissionfor authorizing read access to unprocessed entity endpoints. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/plugin-permission-common@0.9.9
@backstage/plugin-config-schema@0.1.80
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/errors@1.3.1
- @backstage/core-plugin-api@1.12.6
@backstage/plugin-devtools@0.1.39
Patch Changes
- b15ef55: Scheduled Tasks page now refreshes its table automatically after a task is triggered or cancelled, so the updated status is visible without reloading the browser.
- 08c922e: Migrated
ConfigContentcomponent from Material UI to Backstage UI (BUI). - 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/core-compat-api@0.5.11
- @backstage/plugin-devtools-common@0.1.25
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-devtools-backend@0.5.17
Patch Changes
- 0c5e41f: Removed unused dependencies that had no imports in source code.
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-permission-common@0.9.9
- @backstage/cli-common@0.2.2
- @backstage/config@1.3.8
- @backstage/config-loader@1.10.11
- @backstage/plugin-devtools-common@0.1.25
@backstage/plugin-devtools-common@0.1.25
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.9.9
@backstage/plugin-devtools-react@0.2.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
@backstage/plugin-events-backend@0.6.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/backend-openapi-utils@0.6.9
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-aws-sqs@0.4.22
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-azure@0.2.31
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.31
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-bitbucket-server@0.1.12
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-gerrit@0.2.31
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-github@0.4.12
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/integration@2.0.2
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-gitlab@0.3.12
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-google-pubsub@0.2.3
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/filter-predicates@0.1.3
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-module-kafka@0.3.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
- @backstage/config@1.3.8
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-backend-test-utils@0.1.55
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.22
@backstage/plugin-events-node@0.4.22
Patch Changes
- Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
@backstage/plugin-gateway-backend@1.1.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.1
@backstage/plugin-home@0.9.6
Patch Changes
- 419141e: Fixed widgets not being movable or resizable after saved edits. Previously, entering edit mode didn't restore
isDraggableandisResizable. - 44d77e9: Removed separate nav item extensions. Sidebar entries are now provided via
titleandiconon each plugin's page extension. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-catalog-react@3.0.0
- @backstage/core-compat-api@0.5.11
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
- @backstage/core-app-api@1.20.1
- @backstage/plugin-home-react@0.1.38
@backstage/plugin-home-react@0.1.38
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/core-compat-api@0.5.11
@backstage/plugin-kubernetes@0.12.19
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-kubernetes-common@0.9.12
- @backstage/plugin-catalog-react@3.0.0
- @backstage/plugin-kubernetes-react@0.5.19
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-kubernetes-backend@0.21.4
Patch Changes
- 1ecc3ca: Fixed spelling mistakes in internal code
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/integration-aws-node@0.2.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-kubernetes-common@0.9.12
- @backstage/plugin-kubernetes-node@0.4.4
- @backstage/plugin-permission-node@0.11.0
- @backstage/plugin-permission-common@0.9.9
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
@backstage/plugin-kubernetes-cluster@0.0.37
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-kubernetes-common@0.9.12
- @backstage/plugin-catalog-react@3.0.0
- @backstage/plugin-kubernetes-react@0.5.19
- @backstage/plugin-permission-react@0.5.1
@backstage/plugin-kubernetes-common@0.9.12
Patch Changes
- ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to
import type. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded viajest.requireActual— most visiblyCannot access '_AppRootElementBlueprintesm' before initializationfrom@backstage/frontend-plugin-api. There are no user-facing API changes. - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/plugin-permission-common@0.9.9
@backstage/plugin-kubernetes-node@0.4.4
Patch Changes
- ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to
import type. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded viajest.requireActual— most visiblyCannot access '_AppRootElementBlueprintesm' before initializationfrom@backstage/frontend-plugin-api. There are no user-facing API changes. - 0c5e41f: Removed unused dependencies that had no imports in source code.
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-kubernetes-common@0.9.12
@backstage/plugin-kubernetes-react@0.5.19
Patch Changes
- e68cb8a: Added optional clustersCacheTtlMs option to KubernetesBackendClient that caches getClusters() responses for the specified duration, avoiding repeated /clusters requests when multiple proxy calls resolve cluster auth in quick succession.
- Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/core-components@0.18.10
- @backstage/errors@1.3.1
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-kubernetes-common@0.9.12
@backstage/plugin-mcp-actions-backend@0.1.13
Patch Changes
- ca8951a: Fixed an issue where actions returned Markdown-formatted JSON instead of plain JSON and a
structuredContentfield for model context protocol responses. - 8916f83: Trace spans are now emitted for MCP
tools/callinvocations, following OpenTelemetry server-side MCP semantic conventions. - Updated dependencies
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/catalog-client@1.15.1
- @backstage/config@1.3.8
@backstage/plugin-mui-to-bui@0.2.7
Patch Changes
- Updated dependencies
- @backstage/ui@0.15.0
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
@backstage/plugin-notifications@0.5.17
Patch Changes
- 3846774: Added missing dependencies that were previously only available transitively.
- e2d9831: Tightened React Aria dependency version ranges from
^to~to prevent unintended minor version upgrades. - f635139: Limited
@remixicon/reactdependency to versions below 4.9.0 due to a license change in that release. - 03311e3: The notification description used in the notifications table is now a swappable component, so that apps can replace its rendering with a custom implementation.
- Updated dependencies
- @backstage/core-components@0.18.10
- @backstage/ui@0.15.0
- @backstage/errors@1.3.1
- @backstage/frontend-plugin-api@0.17.0
- @backstage/core-plugin-api@1.12.6
- @backstage/plugin-notifications-common@0.2.3
- @backstage/plugin-signals-react@0.0.22
@backstage/plugin-notifications-backend@0.6.5
Patch Changes
- e9b78e9: Removed the
uuiddependency and replaced usage with the built-incrypto.randomUUID(). - Updated dependencies
- @backstage/catalog-model@1.9.0
- @backstage/errors@1.3.1
- @backstage/backend-plugin-api@1.9.1
- @backstage/plugin-catalog-node@2.2.1
- @backstage/plugin-notifications-common@0.2.3
- @backstage/plugin-notifications-node@0.2.26
- @backstage/plugin-signals-node@0.2.1
- @backstage/config@1.3.8