Release v1.52.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.52.0
@backstage/catalog-client@1.16.0
Minor Changes
- 8f20cc2:
CatalogApi.queryEntitiesnow accepts atotalItemsoption ('include'or'exclude', default'include') on initial requests. Pass'exclude'to skip thetotalItemscount when the caller doesn't need it.
Patch Changes
- 378784e: Moved dependencies that are re-exported in the public API from
devDependenciestodependencies. These were incorrectly demoted in #33936 because the source code only uses type imports, but the types still appear in the published API surface and need to be resolvable by consumers at build time.
@backstage/connections@0.1.0
Minor Changes
- b1e3037: Added the connections package as experimental. A connection is a piece of configuration storing an external host and the credentials required to authenticate with that host. A single connections can be consumed by many plugins, reducing the amount of repeated configuration needed. Connections can have many auth methods which can be restricted to plugins/modules.
Patch Changes
- 95688f6: Added a
titlefield to connections, providing a human-readable display name for each connection. When not explicitly configured, the title defaults to the provider name (e.g. "GitHub") or includes the host when multiple connections share a type (e.g. "GitHub (ghe.acme.com)"). - Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/ui@0.16.0
Minor Changes
-
fc4e624:
Comboboxnow supports async collections, incremental loading, client and server search, and rich or custom item rendering. Loading placeholders expose.bui-ComboboxLoadingand.bui-ComboboxLoadingRow, and stale visible results exposedata-staleon.bui-ComboboxList.BREAKING: The public
ComboboxPropsinterface is now a union type.Migration:
Required on upgrade:
Replace interfaces that extend
ComboboxPropswith type intersections.- interface MyComboboxProps extends ComboboxProps {
- trackingId: string;
- }
+ type MyComboboxProps = ComboboxProps & {
+ trackingId: string;
+ };Optional migration away from deprecated APIs:
Prefer
idinstead ofvaluefor plain options. Existing array-valued options usingvalueremain supported as a deprecated compatibility path, but new option content fields and async option sources requireid.Move input state and custom filtering into the nested
searchconfiguration:- <Combobox inputValue={query} onInputChange={setQuery} />
+ <Combobox search={{ inputValue: query, onInputChange: setQuery }} />The existing top-level input state props remain supported as a deprecated compatibility path for plain-array
options.Affected components: Combobox
-
fc4e624:
Selectnow supports async collections, incremental loading, client and server search, and rich or custom item rendering. Loading placeholders expose.bui-SelectLoadingand.bui-SelectLoadingRow, and stale retained results exposedata-staleon.bui-SelectList.BREAKING: The public
SelectPropsinterface is now a union type, and Select popover list content is no longer a direct child of.bui-SelectPopover.Migration:
Required on upgrade:
Replace interfaces that extend
SelectPropswith type intersections.- interface MySelectProps extends SelectProps {
- trackingId: string;
- }
+ type MySelectProps = SelectProps & {
+ trackingId: string;
+ };Update CSS selectors that rely on list content being a direct child of
.bui-SelectPopover. Select popovers now use the standard BUI Popover content structure, with contents wrapped in.bui-Box.bui-PopoverContent. The existing.bui-Popover.bui-SelectPopoverroot classes are unchanged.Optional migration away from deprecated APIs:
Prefer
idinstead ofvaluefor plain options. Existing array-valued options usingvalueremain supported as a deprecated compatibility path, but new option content fields and async option sources requireid.Replace
searchableandsearchPlaceholderwith nestedsearchconfiguration:- <Select searchable searchPlaceholder="Search owners" />
+ <Select search={{ placeholder: 'Search owners' }} />Affected components: Select
Patch Changes
-
3d6c2e4: Updated the dark theme neutral background tokens to provide clearer contrast between neutral surfaces.
-
c86efcd: Fixed the Table component not filling its container width in Firefox. The
overflowstyle is now applied to a wrapper element instead of the<table>element directly, which avoids a Firefox behavior where non-visible overflow on tables causes them to shrink-wrap to content size. -
adf94f5: Make Skeleton component background aware, automatically adjusting its color to maintain visible contrast against neutral parent surfaces.
Affected components: Skeleton
-
b06b3c7: Fixed header tab links to respect the configured router
basename.Affected components: Header
-
14a101f: Switch now adapts its track and thumb colors based on the background context of its parent container, and uses the accent token family when selected.
Affected components: Switch
-
66c4e55: Fixed tab indicator not updating position when tab content changes width dynamically.
-
b33bb24: Added a new
NumberFieldcomponent for numeric input with support for min, max, step, and keyboard increment/decrement.Affected components: NumberField
-
350407d: Fixed async pagination in
ComboboxandSelectpopovers so additional pages load as users scroll instead of loading every page immediately.Comboboxnow uses.bui-PopoverContentas its scroll container, while allSelectvariants use the new.bui-SelectResultsresults container.Searchable
Selectkeeps its search field fixed while results scroll. The new public classes.bui-SelectContentand.bui-SelectResultsexpose this layout for theme customization.Affected components: Combobox, Select
-
e989f95: Fixed
Comboboxclient search crashing when used with plain options.Affected components: Combobox
-
1f709a3: Fixed Header breadcrumb typography so it remains consistent when component styles are loaded in different orders.
Affected components: Header
-
5d80f77: Introduces a new set of semantic color token families — Accent, Announcement, Warning, Negative, and Positive — each providing a consistent set of background, foreground, and border tokens for both light and dark themes. A gray scale (
--bui-gray-1through--bui-gray-11) and updated foreground tokens are also included.The previous tokens remain in place for backward compatibility but are now deprecated and will be removed in a future release.
Migration:
Neutral backgrounds
The neutral background tokens keep their existing names (
--bui-bg-app,--bui-bg-neutral-1through--bui-bg-neutral-4) but are updated with new solid-color values for both light and dark themes. No token renaming is required. The-hover,-pressed, and-disabledinteraction variants of these tokens are deprecated and should be removed.Foreground
Deprecated Replacement --bui-fg-danger--bui-fg-negative--bui-fg-success--bui-fg-positive--bui-fg-info--bui-fg-announcementAccent
Deprecated Replacement --bui-bg-solid--bui-accent-bg--bui-bg-solid-hover--bui-accent-bg-hover--bui-bg-solid-disabled--bui-accent-bg-disabled--bui-fg-solid--bui-accent-fg--bui-fg-solid-disabled--bui-accent-fg-disabledPositive
Deprecated Replacement --bui-bg-success--bui-positive-bg-subdued--bui-fg-success-on-bg--bui-positive-fg-subdued--bui-border-success--bui-positive-borderNegative
Deprecated Replacement --bui-bg-danger--bui-negative-bg-subdued--bui-fg-danger-on-bg--bui-negative-fg-subdued--bui-border-danger--bui-negative-borderWarning
Deprecated Replacement --bui-bg-warning--bui-warning-bg-subdued--bui-fg-warning-on-bg--bui-warning-fg-subdued--bui-border-warning--bui-warning-borderAnnouncement
Deprecated Replacement --bui-bg-info--bui-announcement-bg-subdued--bui-fg-info-on-bg--bui-announcement-fg-subdued--bui-border-info--bui-announcement-border
@backstage/plugin-app@0.5.0
Minor Changes
- 6e5fca3: BREAKING Changed the default discovery API implementation to use
FrontendHostDiscovery, which supports thediscovery.endpointsconfiguration for per-plugin endpoint overrides. Note that this will start honoringdiscovery.endpoints(including stringtargetvalues), so if you currently use internal-only targets there, update them to the object form and move the internal URL totarget.internal, omittingtarget.external(or setting it to a browser-reachable URL) to avoid routing the frontend to internal URLs.
Patch Changes
- 33d03ed: fix: make Toast text content selectable
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-app-react@0.2.4
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.3.0
Minor Changes
- 9822a2a: Added forwardedPreferredUsernameMatchingUserEntityName sign-in resolver
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-catalog-backend@3.8.0
Minor Changes
-
8f20cc2:
/entities/by-querynow accepts atotalItemsparameter ('include'or'exclude', default'include') that controls whether the response'stotalItemscount is computed. Pass'exclude'to skip the count entirely when the caller doesn't need it — useful for cursor-paginated user interfaces that only display the count cosmetically. The accepted values list is forward-compatible: future modes (e.g. approximate counts) can be added without breaking existing callers.The internal
QueryEntitiesInitialRequest.skipTotalItemsoption has been replaced bytotalItems: 'include' | 'exclude'. Note thatskipTotalItemswas never exposed as a REST API parameter, so this is only a TypeScript-level change affecting direct callers ofEntitiesCatalog.queryEntities.Sort field keys are now lowercased before comparing against
search.key, fixing silent mismatches for camelCase field names. TheNULLS LASTordering clause has been removed since NULL sort values are already excluded by theWHEREclause. -
dc7678c: Removed the immediate mode stitching strategy. All stitching now uses the deferred mode, which processes entities asynchronously via a worker queue. If your configuration includes
catalog.stitchingStrategy.mode: 'immediate', it will be ignored with a deprecation warning. ThepollingIntervalandstitchTimeoutsettings continue to work as before.
Patch Changes
-
9698738: Dropped the legacy
search_entity_id_idxindex which is now redundant with the covering unique index on(entity_id, key, value). The old index caused the query planner to choose an inefficient scan pattern for catalog list queries with multiple sort fields, leading to severely degraded performance on large catalogs. -
ccfa4f1: Optimized
entitiesBatchon PostgreSQL to use= ANY(array)instead ofWHERE IN ($1, $2, ...). This produces a single stable query plan regardless of batch size, instead of up to 200 different plans that pollute the query plan cache. On PostgreSQL, batching is no longer needed so all entity refs are fetched in a single query. -
750b310:
HAS_LABELandHAS_ANNOTATIONpermission rules are now case insensitive. -
24775dc: Added a migration that tunes PostgreSQL automatic vacuum thresholds on the
search,final_entities,relations, andrefresh_state_referencestables, and fixes column statistics forentity_idin thesearchtable. This prevents the query planner from falling back to sequential scans when table maintenance falls behind, keeping catalog queries fast on large installations. -
39c5fbb: Added extended multi-column statistics on
(key, value)in thesearchtable (PostgreSQL only). This tells the query planner about the correlation between thekeyandvaluecolumns, fixing severe row count estimation errors on compound filter queries. Without this, the planner could choose to materialize and sort thousands of rows instead of using the LIMIT short-circuit index scan — causing 10-40x slower catalog list views when multiple filters are active. -
4829e89: Split the
queryEntitieslist and count into separate queries instead of a multi-reference CTE. When thefilteredCTE was referenced twice (once for the count, once for the data), PostgreSQL refused to inline it, forcing full materialization of the filtered set before applyingLIMIT. By running the count as a standalone query, the list CTE is only referenced once, allowing the planner to short-circuit onLIMITand return the first page in milliseconds instead of waiting for the full filtered set to materialize.The standalone count query also fixes a pre-existing bug where
totalItemswas inflated for entities with multi-valued sort fields (e.g. tags). The old CTE-based count counted search rows, so an entity with 3 tags would be counted 3 times. The new count usesEXISTSto count distinct entities, aligningtotalItemswith the number of entities actually reachable through cursor pagination. -
774d698: Fixed a race condition in the stitch queue and entity processing claim logic where
SELECT FOR UPDATE SKIP LOCKEDrow locks were released before the subsequent timestamp bump, allowing multiple workers to claim the same rows. Both the select and update now run inside a single transaction for MySQL and PostgreSQL. -
0b8b677: Improved stitch queue semantics to prevent overlapping stitches for the same entity. New stitch requests that arrive while a stitch is in progress now only update the ticket (not the timestamp), so the in-progress worker is not interrupted. When the worker completes and detects a pending re-stitch, the queue entry becomes immediately eligible for pickup instead of waiting for the timeout period.
-
Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-catalog-react@3.1.0
Minor Changes
- b6d6551: Added optional
getOptionLabelandrenderOptionprops toEntityAutocompletePicker, allowing consumers to customize how option labels and option rendering are displayed in the autocomplete dropdown. - 5dd532d: Added a
refreshfunction to theuseEntityListhook. - 4212b78: Allow full text searching of Location target URLs in catalog tables
Patch Changes
-
d8757b1: The entity list provider now fetches the entity list and the total count as two separate parallel requests when using cursor or offset pagination. The list query skips the expensive count computation (using
totalItems: 'exclude'), so the table populates immediately. The count arrives asynchronously and updates the title. A newtotalItemsLoadingfield is exposed onEntityListContextPropsso consumers can distinguish a stale count from a fresh one.The catalog table now keeps stale rows visible during filter changes and page navigation instead of replacing the entire table body with a spinner. The full-table spinner is only shown on the very first load when no data exists yet. The entity count in the title is dimmed while the count is refreshing, and a small spinner appears next to the title while rows are loading.
-
e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 -
7c20545: Fixed redundant API calls during entity list initialization. Filter components that register their initial state in quick succession (e.g.
EntityKindPicker,UserListPicker,EntityTagPicker) no longer trigger multiple identical fetches. Frontend-only filter changes such as toggling the user list are now applied synchronously without a network round-trip. -
Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-scaffolder@1.38.0
Minor Changes
- 3e5acb5: Extended the
RepoOwnerPickerimplementation with a custom variant for GitLab.
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - 02c4e8a: Removed unused
json-schemaruntime dependency. The package was only used for TypeScript types from@types/json-schema; affected imports have been converted toimport typeto allow safe removal. - Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/plugin-scaffolder-react@2.0.1
- @backstage/integration@2.0.3
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/plugin-scaffolder-common@2.2.1
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-permission-react@0.5.2
- @backstage/plugin-techdocs-react@1.3.12
@backstage/app-defaults@1.7.9
Patch Changes
-
74ed625: Provide toastApi for old frontend system
Fixes 'No implementation available for apiRef{core.toast}' on old frontend system.
-
Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-permission-react@0.5.2
@backstage/backend-app-api@1.7.1
Patch Changes
- 2e895ea: Internal refactor.
- Updated dependencies
- @backstage/connections@0.1.0
- @backstage/backend-plugin-api@1.9.2
@backstage/backend-defaults@0.17.3
Patch Changes
- 4f4bcf5: Upgraded
infinispanfrom^0.12.0to^0.13.0to address known vulnerabilities. - a07e6a3: Updated
AzureBlobStorageUrlReaderto reference the correctly-namedAzureBlobStorageIntegrationtype from@backstage/integration. The previously-usedAzureBlobStorageIntergationis now an alias for the new type and remains a valid argument to the constructor. - b75158b: Adapted Azure-related tests for the Azure SDK upgrade to ESM-style exports. The
AzureBlobStorageUrlReadernow accepts an optionalcreateContainerClientdependency for testability without needing to mock the@azure/storage-blobmodule. - 89a95ca: Fixed the task worker retry loop to respect the abort signal. Previously, when a task worker encountered an unexpected error, the retry loop would continue indefinitely even after the worker was signaled to stop. The retry loop now checks the abort signal before retrying and passes it to the retry delay, allowing the worker to shut down gracefully.
- def82d4: Fixed the built-in rate limiter throwing a validation error and refusing to start when
backend.rateLimitis enabled. Requests are now keyed using the address normalization helper fromexpress-rate-limit, which is required by newer versions of that library and ensures IPv6 clients are grouped by their address block rather than by individual address. - 0211390: Added a new
v2invoke endpoint (/.backstage/actions/v2/actions/:id/invoke) that accepts a wrapped body format{ input, secrets }with secrets validation. The existingv1invoke endpoint remains unchanged for backward compatibility. UpdatedDefaultActionsServiceto use thev2endpoint. UpdatedDefaultActionsRegistryServiceto expose secrets schema in the actions list response and validate secrets on invocation. - 34f21c3: Fix gitlabUrlReader issue with retrieving the repository archive tree
- Updated dependencies
- @backstage/cli-node@0.3.3
- @backstage/backend-app-api@1.7.1
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/config-loader@1.10.12
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-events-node@0.4.23
- @backstage/plugin-permission-node@0.11.1
@backstage/backend-dynamic-feature-service@0.8.3
Patch Changes
- 7005478: Fixed dynamic backend plugin loading to fall back to the main package export when an alpha
package.jsonis present but does not provide a plugin entrypoint. Previously, plugins whose alpha export only exposed supplementary APIs (such as permissions) could fail to load even though the main export was valid. The loader now tries the alpha entry first and uses the main export when the alpha module does not export aBackendFeature,BackendFeatureFactory, ordynamicPluginInstaller. - Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/plugin-catalog-backend@3.8.0
- @backstage/cli-node@0.3.3
- @backstage/backend-defaults@0.17.3
- @backstage/plugin-events-backend@0.6.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/config-loader@1.10.12
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-app-node@0.1.46
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-events-node@0.4.23
- @backstage/plugin-permission-node@0.11.1
- @backstage/plugin-search-backend-node@1.4.5
@backstage/backend-openapi-utils@0.6.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/backend-plugin-api@1.9.2
Patch Changes
- 02c4e8a: Removed unused
json-schemaruntime dependency. The package was only used for TypeScript types from@types/json-schema; affected imports have been converted toimport typeto allow safe removal. - 0211390: Added optional
secretsschema support toActionsRegistryActionOptionsandActionsRegistryActionContext. Actions can now declare a Zod secrets schema separate from the input schema, enabling surfaces to collect sensitive credentials independently from tool arguments. Added optionalsecretsfield toActionsServiceActionmetadata andActionsService.invoke()parameters. - Updated dependencies
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-permission-node@0.11.1
@backstage/backend-test-utils@1.11.4
Patch Changes
- 2e895ea: Internal refactor.
- 2d181c0: Increased MySQL connection and pool timeouts to reduce flaky
connect ETIMEDOUTfailures in CI. The test MySQL container now also usesmysql_native_passwordfor cheaper connection handshakes and disables binary logging. - 06a2035: Updated
MockActionsRegistryto support the new secrets schema. The mock now validates secrets against the declared schema, rejects missing secrets for actions that require them, and forwards secrets to the action handler. - Updated dependencies
- @backstage/backend-defaults@0.17.3
- @backstage/backend-app-api@1.7.1
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-events-node@0.4.23
@backstage/cli@0.36.3
Patch Changes
- b521571: Improved validation of conflicting CLI module commands, including conflicts between parent and nested command paths.
- Updated dependencies
- @backstage/cli-module-build@0.1.4
- @backstage/cli-module-test-jest@0.1.3
- @backstage/cli-node@0.3.3
- @backstage/eslint-plugin@0.3.1
- @backstage/cli-defaults@0.1.3
@backstage/cli-defaults@0.1.3
Patch Changes
- Updated dependencies
- @backstage/cli-module-new@0.1.4
- @backstage/cli-module-actions@0.1.2
- @backstage/cli-module-auth@0.1.3
- @backstage/cli-module-build@0.1.4
- @backstage/cli-module-config@0.1.3
- @backstage/cli-module-github@0.1.3
- @backstage/cli-module-info@0.1.3
- @backstage/cli-module-lint@0.1.3
- @backstage/cli-module-maintenance@0.1.3
- @backstage/cli-module-migrate@0.1.3
- @backstage/cli-module-test-jest@0.1.3
- @backstage/cli-module-translations@0.1.3
@backstage/cli-module-actions@0.1.2
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-auth@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-build@0.1.4
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- a1971ea: Suppress false-positive
@protobufjs/inquire"Critical dependency" warning in the bundler. Sinceprotobufjs7.5.9, the dynamic require path in inquire is no longer exercised, but webpack/rspack still flags it during static analysis. - 8007b58: Updated dependency
embedded-postgresto18.3.0-beta.17. - Updated dependencies
- @backstage/cli-node@0.3.3
- @backstage/config-loader@1.10.12
@backstage/cli-module-config@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- 02c4e8a: Removed unused
json-schemaruntime dependency. The package was only used for TypeScript types from@types/json-schema; affected imports have been converted toimport typeto allow safe removal. - Updated dependencies
- @backstage/cli-node@0.3.3
- @backstage/config-loader@1.10.12
@backstage/cli-module-github@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-info@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-lint@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-maintenance@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-migrate@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-new@0.1.4
Patch Changes
- 4014819: Added a new
scaffolder-field-extension-moduletemplate for scaffolding custom Scaffolder form field extensions viabackstage-cli new. - 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-test-jest@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-module-translations@0.1.3
Patch Changes
- 696c78c: The
--helpoutput for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts. - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
- Updated dependencies
- @backstage/cli-node@0.3.3
@backstage/cli-node@0.3.3
Patch Changes
- b521571: Added
runClifor creating executable CLI packages from a fixed collection of directly imported CLI modules, with validation for conflicting command paths. The single-modulerunCliModulehelper is now deprecated.
@backstage/config-loader@1.10.12
Patch Changes
- 02c4e8a: Removed unused
json-schemaruntime dependency. The package was only used for TypeScript types from@types/json-schema; affected imports have been converted toimport typeto allow safe removal.
@backstage/core-app-api@1.20.2
Patch Changes
- Updated dependencies
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
@backstage/core-compat-api@0.5.12
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@3.1.0
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-app-react@0.2.4
@backstage/core-components@0.18.11
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - a07e6a3: Added the correctly-spelled
'header'literal to theTableFiltersClassKeyunion type and deprecated the previous typoed'heder'literal. The generated CSS class with the old key is preserved for backwards compatibility; switch to'header'to avoid future removal. - c161e1c: Lazy-load
react-syntax-highlighterand@dagrejs/dagreso they are no longer pulled in eagerly through the barrel export. This reduces the upfront module cost of importing from@backstage/core-componentsby roughly 10 MB. The public API is unchanged. - dbe93a7: Fix autologout not working correctly when closing all tabs
- 8add9b9: Fixed the proxy-based sign-in page failing to read the session token when the proxy issues a token whose payload is encoded using the URL-safe base64 alphabet. Such tokens are now decoded correctly so sign-in no longer breaks.
- f35372d: Fixed text clipping in SidebarSubmenuItem by correcting line-height from 1 to 1.5
- Updated dependencies
- @backstage/core-plugin-api@1.12.7
@backstage/core-plugin-api@1.12.7
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
@backstage/create-app@0.8.4
Patch Changes
-
68db890: Bumped create-app version.
-
e7e4ef0: Bumped create-app version.
-
6344c54: Newly scaffolded apps now use Yarn 4.13.0 (up from 4.4.1) and enable Yarn's
npmMinimalAgeGate: 3dsetting, which refuses to install npm packages published less than three days ago as a defense against supply-chain attacks. Backstage's own packages are exempted vianpmPreapprovedPackages: ['@backstage/*']so newly released Backstage versions remain installable without delay.Existing apps are unaffected. To opt in, add the
npmMinimalAgeGateandnpmPreapprovedPackagessettings to your own.yarnrc.ymland upgrade Yarn to 4.13 or later.
@backstage/dev-utils@1.1.24
Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.7.9
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/ui@0.16.0
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
@backstage/eslint-plugin@0.3.1
Patch Changes
- 5d80f77: Adds a new
@backstage/no-deprecated-bui-tokenslint rule that warns when a deprecated@backstage/uiCSS token is referenced in a JavaScript or TypeScript file (including CSS-in-JS patterns and template literals). The rule is included in therecommendedconfig, so plugin authors usingplugin:@backstage/recommendedwill receive warnings automatically when using tokens that have been superseded by the new semantic color families. Note that plain CSS and CSS module files are outside ESLint's scope and are not covered by this rule.
@backstage/frontend-app-api@0.16.4
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
- @backstage/frontend-defaults@0.5.3
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
@backstage/frontend-defaults@0.5.3
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.5.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/frontend-app-api@0.16.4
@backstage/frontend-dev-utils@0.1.3
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.5.0
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/frontend-defaults@0.5.3
@backstage/frontend-dynamic-feature-loader@0.1.13
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
@backstage/frontend-plugin-api@0.17.2
Patch Changes
- 378784e: Moved dependencies that are re-exported in the public API from
devDependenciestodependencies. These were incorrectly demoted in #33936 because the source code only uses type imports, but the types still appear in the published API surface and need to be resolvable by consumers at build time.
@backstage/frontend-test-utils@0.6.1
Patch Changes
- 62dd4fc: Added a
mountPathoption torenderInTestAppthat controls the route path pattern the test element is rendered at. When set, the element is wrapped in a<Route>with the given path, enablinguseParams()to extract route parameters from the URL. Use together withinitialRouteEntriesto set a concrete URL that matches the pattern. This is useful for testing page components that depend on URL parameters, such as entity pages that useuseRouteRefParams. - Updated dependencies
- @backstage/plugin-app@0.5.0
- @backstage/frontend-plugin-api@0.17.2
- @backstage/frontend-app-api@0.16.4
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
- @backstage/test-utils@1.7.19
- @backstage/plugin-app-react@0.2.4
- @backstage/plugin-permission-react@0.5.2
@backstage/integration@2.0.3
Patch Changes
- a07e6a3: Added the correctly-spelled
AzureBlobStorageIntegrationclass export and deprecated the previous typoedAzureBlobStorageIntergationexport. Existing usage ofAzureBlobStorageIntergationcontinues to work; switch toAzureBlobStorageIntegrationto avoid future removal. - b75158b: Adapted Azure-related tests for the Azure SDK upgrade to ESM-style exports. The
AzureBlobStorageUrlReadernow accepts an optionalcreateContainerClientdependency for testability without needing to mock the@azure/storage-blobmodule. - 241d359: Changed visibility of Bitbucket username as it is not a secret.
@backstage/integration-react@1.2.19
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/core-plugin-api@1.12.7
@backstage/repo-tools@0.17.3
Patch Changes
- Updated dependencies
- @backstage/cli-node@0.3.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/config-loader@1.10.12
@techdocs/cli@1.11.1
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.17.3
- @backstage/plugin-techdocs-node@1.15.1
@backstage/test-utils@1.7.19
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-api-docs@0.14.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@2.0.6
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-app-backend@0.5.15
Patch Changes
- ca450be: Added a new
app.disablePublicEntryPointconfig option that allows you to opt out of the automatic public sign-in entry point. When set totrue, the app backend will skip serving the public entry point to unauthenticated users, even if the app was bundled with anindex-public-experimentalentry point. - Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/config-loader@1.10.12
- @backstage/plugin-app-node@0.1.46
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-app-node@0.1.46
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/config-loader@1.10.12
@backstage/plugin-app-react@0.2.4
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-app-visualizer@0.2.5
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-auth@0.1.9
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
@backstage/plugin-auth-backend@0.29.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-auth0-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-backend@0.29.1
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.21
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-github-provider@0.5.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-gitlab-provider@0.4.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-google-provider@0.3.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-guest-provider@0.2.20
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-oidc-provider@0.4.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-backend@0.29.1
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-okta-provider@0.2.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-openshift-provider@0.1.8
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
@backstage/plugin-auth-node@0.7.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-auth-react@0.1.28
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-bitbucket-cloud-common@0.3.11
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
@backstage/plugin-catalog@2.0.6
Patch Changes
-
7172386: Updated the new frontend system Catalog index page to use the current Backstage UI page header and content container.
-
d8757b1: The entity list provider now fetches the entity list and the total count as two separate parallel requests when using cursor or offset pagination. The list query skips the expensive count computation (using
totalItems: 'exclude'), so the table populates immediately. The count arrives asynchronously and updates the title. A newtotalItemsLoadingfield is exposed onEntityListContextPropsso consumers can distinguish a stale count from a fresh one.The catalog table now keeps stale rows visible during filter changes and page navigation instead of replacing the entire table body with a spinner. The full-table spinner is only shown on the very first load when no data exists yet. The entity count in the title is dimmed while the count is refreshing, and a small spinner appears next to the title while rows are loading.
-
82cf16f: Added
CatalogExportButton, which adds CSV and JSON export support to theCatalogIndexPage. -
d7c1dcf: Fixed a missing React key warning for context menu items on the entity page.
-
a07e6a3: Added the correctly-spelled
RelatedEntitiesCard.domainEntityColumnsstatic property and deprecated the previous typoedRelatedEntitiesCard.domainEntityColumsproperty. Existing references to the old property continue to work; switch todomainEntityColumnsto avoid future removal. -
Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/plugin-search-react@1.11.5
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/plugin-scaffolder-common@2.2.1
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-permission-react@0.5.2
- @backstage/plugin-techdocs-react@1.3.12
@backstage/plugin-catalog-backend-module-ai-model@0.1.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-aws@0.4.24
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.17.3
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-azure@0.3.18
Patch Changes
- a07e6a3: Updated internal usage of
AzureBlobStorageIntegration(previously misspelled asAzureBlobStorageIntergation) following the rename in@backstage/integration. - Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.12
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-bitbucket-cloud-common@0.3.11
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.12
Patch Changes
- 9e2ff8c: Added a Bitbucket Server SCM event translation layer to the catalog backend module. The module now subscribes to Bitbucket Server webhook events and translates them into generic catalog SCM events, enabling instant catalog reprocessing when repositories are pushed to or renamed. The
analyzeBitbucketServerWebhookEventfunction is exported from the alpha entry point for custom integrations. - Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-gcp@0.3.20
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-gerrit@0.3.15
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-gitea@0.1.13
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-github@0.13.3
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-github-org@0.3.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-backend-module-github@0.13.3
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-gitlab@0.8.4
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.17.3
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.22
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-backend-module-gitlab@0.8.4
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.13
Patch Changes
- e846874: Alter column type for
ingestions.last_errorto remove the 255-character restriction. - Updated dependencies
- @backstage/plugin-catalog-backend@3.8.0
- @backstage/backend-defaults@0.17.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-ldap@0.12.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-logs@0.1.23
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@3.8.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-catalog-backend-module-msgraph@0.10.3
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - e6493b9: Fixed a bug where setting
user.selectto an empty array would cause all users to be dropped from the catalog instead of using the default set of fields. - 8930d77: Reverted the server-side
accountEnabled eq truebase filter that was added in v1.51.0, which broke theuserGroupMemberpath because the group members endpoint doesn't support$filteron that property. Disabled users (accountEnabled === false) are now filtered client-side in both the/usersand group members paths. The mutual exclusivity checks betweenuserFilteranduserGroupMemberFilter/userGroupMemberSearchhave been restored. - Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-msgraph-incremental@0.1.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-msgraph@0.10.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.13
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-openapi@0.2.23
Patch Changes
- cf4b34b: Fixed resolution of relative
$refpaths in OpenAPI and AsyncAPI specs by using the original reference string and parent document URL from the ref parser, instead of computing paths relative to the process working directory. This fixes a regression where cross-directory refs like./../../common/specs/common.yamland nested refs at depth > 1 would resolve incorrectly. - Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-puppetdb@0.2.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.21
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-scaffolder-common@2.2.1
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-backend-module-unprocessed@0.6.13
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-catalog-graph@0.6.5
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-catalog-import@0.13.14
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/integration@2.0.3
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-catalog-node@2.2.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-catalog-unprocessed-entities@0.2.32
Patch Changes
- 80b4370: Updated instructions for enabling the
catalog-unprocessed-entitiespage - Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-config-schema@0.1.81
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-devtools@0.1.40
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-devtools-backend@0.5.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/config-loader@1.10.12
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-devtools-react@0.2.3
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-events-backend@0.6.3
Patch Changes
- f4342b9: Increased the events bus request body limit to 5mb to allow larger event payloads.
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-aws-sqs@0.4.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-azure@0.2.32
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.32
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-bitbucket-server@0.1.13
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-gerrit@0.2.32
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-github@0.4.13
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-gitlab@0.3.13
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-google-pubsub@0.2.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-module-kafka@0.3.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-backend-test-utils@0.1.56
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-events-node@0.4.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-gateway-backend@1.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-home@0.9.7
Patch Changes
- a07e6a3: Added the correctly-spelled
'widgetSettingsOverlay.editSettingsTooltip'translation key inhomeTranslationRefand deprecated the previous typoed'widgetSettingsOverlay.editSettingsTooptip'key. Existing references to the old key continue to work; switch to the new key to avoid future removal. - Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-app-api@1.20.2
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-home-react@0.1.39
@backstage/plugin-home-react@0.1.39
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-kubernetes@0.12.20
Patch Changes
- 07bd0b4: Removed the default Kubernetes standalone page that was registered at
/kubernetes. This page was added by mistake and is not intended to be part of the plugin. - Updated dependencies
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-kubernetes-react@0.5.20
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-kubernetes-backend@0.21.5
Patch Changes
- 998664c: chore(deps): Bump
wsfrom 8.20.0 to 8.20.1 - c4f935b: pool HTTPS agents per cluster in KubernetesFetcher
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-kubernetes-node@0.4.5
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-kubernetes-cluster@0.0.38
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-kubernetes-react@0.5.20
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-kubernetes-node@0.4.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-kubernetes-react@0.5.20
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-mcp-actions-backend@0.1.14
Patch Changes
- ed1be73: Validate each action against the MCP tool schema when responding to
tools/list, and skip any action that doesn't conform instead of failing the entire response. A single misbehaving action with a malformed input schema will now be logged as a warning and omitted from the tool list, letting the remaining actions continue to be served. - Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-mui-to-bui@0.2.8
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-notifications@0.5.18
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-signals-react@0.0.23
@backstage/plugin-notifications-backend@0.6.6
Patch Changes
- ac410b1: Migrated the internal router to be generated from the plugin's OpenAPI specification. The HTTP API is unchanged.
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-notifications-node@0.2.27
- @backstage/plugin-signals-node@0.2.2
@backstage/plugin-notifications-backend-module-email@0.3.22
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-notifications-node@0.2.27
@backstage/plugin-notifications-backend-module-slack@0.4.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-notifications-node@0.2.27
@backstage/plugin-notifications-node@0.2.27
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-org@0.7.5
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - Updated dependencies
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-org-react@0.1.51
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-permission-backend@0.7.13
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.20
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-permission-node@0.11.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-permission-react@0.5.2
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-proxy-backend@0.6.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-proxy-node@0.1.16
@backstage/plugin-proxy-node@0.1.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend@4.0.1
Patch Changes
- 063fc34: Restored user-supplied task secrets in scaffolder dry-run executions. The previous security fix that stripped secrets from dry-run also removed task secrets passed in the dry-run request body, which broke integration test setups that rely on user-supplied secrets. Environment secrets (server-configured) remain stripped during dry-run; only task secrets supplied by the caller are now forwarded to actions.
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-scaffolder-common@2.2.1
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-events-node@0.4.23
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-scaffolder-backend-module-azure@0.2.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.7
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-bitbucket-cloud-common@0.3.11
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.24
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-gcp@0.2.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-gitea@0.2.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-github@0.9.10
Patch Changes
- 464ebc2: Added a fallback for
publish:githubandgithub:repo:pushactions that retries via the GitHub GraphQL API when the git push fails with a connection-level error (ECONNRESETorECONNREFUSED, checked on botherror.codeanderror.cause.code). The git smart HTTP protocol sends binary pack data in a POST request which can be blocked by network proxies that perform deep packet inspection. The GraphQL fallback uses standard JSON requests which are not affected. - Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-scaffolder-backend-module-gitlab@0.11.7
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-notifications@0.1.23
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-notifications-node@0.2.27
@backstage/plugin-scaffolder-backend-module-rails@0.5.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-sentry@0.3.5
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.23
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-scaffolder-node-test-utils@0.3.12
@backstage/plugin-scaffolder-common@2.2.1
Patch Changes
- 02c4e8a: Removed unused
json-schemaruntime dependency. The package was only used for TypeScript types from@types/json-schema; affected imports have been converted toimport typeto allow safe removal. - Updated dependencies
- @backstage/integration@2.0.3
@backstage/plugin-scaffolder-node@0.13.4
Patch Changes
- 3d0ba59: Added retry with exponential back off to
Git.push(). Scaffolder template actions that create a repository and immediately push to it (e.g.,publish:github) can encounter transient failures when the repository is not yet fully provisioned. The push is now retried up to 5 times with increasing delays before failing. Authentication and permission errors (401, 403) fail immediately without retrying. - Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-scaffolder-common@2.2.1
- @backstage/plugin-permission-node@0.11.1
@backstage/plugin-scaffolder-node-test-utils@0.3.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.13.4
- @backstage/backend-test-utils@1.11.4
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-scaffolder-react@2.0.1
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - 02c4e8a: Removed unused
json-schemaruntime dependency. The package was only used for TypeScript types from@types/json-schema; affected imports have been converted toimport typeto allow safe removal. - Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/plugin-scaffolder-common@2.2.1
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-permission-react@0.5.2
@backstage/plugin-search@1.7.5
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - Updated dependencies
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/plugin-search-react@1.11.5
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-search-backend@2.1.3
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/backend-openapi-utils@0.6.10
- @backstage/plugin-permission-node@0.11.1
- @backstage/plugin-search-backend-node@1.4.5
@backstage/plugin-search-backend-module-catalog@0.3.16
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-search-backend-node@1.4.5
@backstage/plugin-search-backend-module-elasticsearch@1.8.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-search-backend-node@1.4.5
@backstage/plugin-search-backend-module-explore@0.3.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-search-backend-node@1.4.5
@backstage/plugin-search-backend-module-pg@0.5.56
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-search-backend-node@1.4.5
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.21
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-search-backend-node@1.4.5
@backstage/plugin-search-backend-module-techdocs@0.4.15
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-search-backend-node@1.4.5
- @backstage/plugin-techdocs-node@1.15.1
@backstage/plugin-search-backend-node@1.4.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-search-react@1.11.5
Patch Changes
- e0889a3: chore(deps): bump
qsfrom 6.15.1 to 6.15.2 - Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-signals@0.0.32
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-signals-react@0.0.23
@backstage/plugin-signals-backend@0.3.16
Patch Changes
- 998664c: chore(deps): Bump
wsfrom 8.20.0 to 8.20.1 - Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
- @backstage/plugin-signals-node@0.2.2
@backstage/plugin-signals-node@0.2.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-events-node@0.4.23
@backstage/plugin-signals-react@0.0.23
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-techdocs@1.17.7
Patch Changes
-
460c597: Added missing i18n support for TechDocs plugin components including:
- Search components (placeholder text, no results message)
- Table components (column headers, pagination, toolbar, actions, empty states)
- Home page components (support button, page wrapper title/subtitle)
- Reader components (build logs, not found errors, state indicators, settings)
- Error messages and navigation labels
Also exported
techdocsTranslationReffrom the alpha entrypoint for external use. -
Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/plugin-search-react@1.11.5
- @backstage/integration@2.0.3
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-auth-react@0.1.28
- @backstage/plugin-techdocs-react@1.3.12
@backstage/plugin-techdocs-addons-test-utils@2.0.6
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@2.0.6
- @backstage/plugin-catalog-react@3.1.0
- @backstage/plugin-search-react@1.11.5
- @backstage/plugin-techdocs@1.17.7
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/test-utils@1.7.19
- @backstage/plugin-techdocs-react@1.3.12
@backstage/plugin-techdocs-backend@2.2.1
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
- @backstage/plugin-techdocs-node@1.15.1
@backstage/plugin-techdocs-module-addons-contrib@1.1.37
Patch Changes
- 9095f69: Added a default export to the
/alphaentrypoint that bundles all contributed TechDocs addon modules usingcreateFrontendFeatureLoader. This allows the package to be loaded as a single feature in setups that discover frontend modules through their default export, such as dynamic plugin loaders. - Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/integration@2.0.3
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-techdocs-react@1.3.12
@backstage/plugin-techdocs-node@1.15.1
Patch Changes
- Updated dependencies
- @backstage/integration@2.0.3
- @backstage/backend-plugin-api@1.9.2
@backstage/plugin-techdocs-react@1.3.12
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/core-plugin-api@1.12.7
@backstage/plugin-user-settings@0.9.4
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@3.1.0
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/core-app-api@1.20.2
- @backstage/core-plugin-api@1.12.7
- @backstage/plugin-signals-react@0.0.23
@backstage/plugin-user-settings-backend@0.4.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-signals-node@0.2.2
example-app@0.0.36
Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.7.9
- @backstage/plugin-catalog@2.0.6
- @backstage/plugin-catalog-react@3.1.0
- @backstage/cli@0.36.3
- @backstage/plugin-app@0.5.0
- @backstage/core-components@0.18.11
- @backstage/plugin-catalog-graph@0.6.5
- @backstage/plugin-org@0.7.5
- @backstage/plugin-scaffolder-react@2.0.1
- @backstage/plugin-scaffolder@1.38.0
- @backstage/plugin-search-react@1.11.5
- @backstage/plugin-search@1.7.5
- @backstage/plugin-catalog-unprocessed-entities@0.2.32
- @backstage/plugin-home@0.9.7
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/plugin-kubernetes@0.12.20
- @backstage/plugin-techdocs-module-addons-contrib@1.1.37
- @backstage/plugin-techdocs@1.17.7
- @backstage/frontend-app-api@0.16.4
- @backstage/frontend-defaults@0.5.3
- @backstage/core-app-api@1.20.2
- @backstage/plugin-api-docs@0.14.2
- @backstage/plugin-app-visualizer@0.2.5
- @backstage/plugin-auth@0.1.9
- @backstage/plugin-devtools@0.1.40
- @backstage/plugin-notifications@0.5.18
- @backstage/plugin-user-settings@0.9.4
- @backstage/core-compat-api@0.5.12
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-app-react@0.2.4
- @backstage/plugin-auth-react@0.1.28
- @backstage/plugin-catalog-import@0.13.14
- @backstage/plugin-home-react@0.1.39
- @backstage/plugin-kubernetes-cluster@0.0.38
- @backstage/plugin-permission-react@0.5.2
- @backstage/plugin-signals@0.0.32
- @backstage/plugin-techdocs-react@1.3.12
app-example-plugin@0.0.36
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
example-app-legacy@0.2.122
Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.7.9
- @backstage/plugin-catalog@2.0.6
- @backstage/plugin-catalog-react@3.1.0
- @backstage/cli@0.36.3
- @backstage/core-components@0.18.11
- @backstage/plugin-catalog-graph@0.6.5
- @backstage/plugin-org@0.7.5
- @backstage/plugin-scaffolder-react@2.0.1
- @backstage/plugin-scaffolder@1.38.0
- @backstage/plugin-search-react@1.11.5
- @backstage/plugin-search@1.7.5
- @backstage/plugin-catalog-unprocessed-entities@0.2.32
- @backstage/plugin-home@0.9.7
- @backstage/ui@0.16.0
- @backstage/plugin-kubernetes@0.12.20
- @backstage/plugin-techdocs-module-addons-contrib@1.1.37
- @backstage/plugin-techdocs@1.17.7
- @backstage/frontend-app-api@0.16.4
- @backstage/core-app-api@1.20.2
- @backstage/plugin-api-docs@0.14.2
- @backstage/plugin-devtools@0.1.40
- @backstage/plugin-mui-to-bui@0.2.8
- @backstage/plugin-notifications@0.5.18
- @backstage/plugin-user-settings@0.9.4
- @backstage/core-plugin-api@1.12.7
- @backstage/integration-react@1.2.19
- @backstage/plugin-auth-react@0.1.28
- @backstage/plugin-catalog-import@0.13.14
- @backstage/plugin-home-react@0.1.39
- @backstage/plugin-kubernetes-cluster@0.0.38
- @backstage/plugin-permission-react@0.5.2
- @backstage/plugin-signals@0.0.32
- @backstage/plugin-techdocs-react@1.3.12
example-backend@0.0.51
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@3.8.0
- @backstage/backend-defaults@0.17.3
- @backstage/plugin-search-backend@2.1.3
- @backstage/plugin-kubernetes-backend@0.21.5
- @backstage/plugin-signals-backend@0.3.16
- @backstage/plugin-app-backend@0.5.15
- @backstage/plugin-events-backend@0.6.3
- @backstage/plugin-catalog-backend-module-openapi@0.2.23
- @backstage/plugin-scaffolder-backend@4.0.1
- @backstage/plugin-mcp-actions-backend@0.1.14
- @backstage/plugin-notifications-backend@0.6.6
- @backstage/plugin-scaffolder-backend-module-github@0.9.10
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-auth-backend@0.29.1
- @backstage/plugin-auth-backend-module-github-provider@0.5.4
- @backstage/plugin-auth-backend-module-guest-provider@0.2.20
- @backstage/plugin-auth-backend-module-openshift-provider@0.1.8
- @backstage/plugin-auth-node@0.7.2
- @backstage/plugin-catalog-backend-module-ai-model@0.1.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.15
- @backstage/plugin-catalog-backend-module-logs@0.1.23
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.21
- @backstage/plugin-catalog-backend-module-unprocessed@0.6.13
- @backstage/plugin-devtools-backend@0.5.18
- @backstage/plugin-events-backend-module-google-pubsub@0.2.4
- @backstage/plugin-permission-backend@0.7.13
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.20
- @backstage/plugin-permission-node@0.11.1
- @backstage/plugin-proxy-backend@0.6.14
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.23
- @backstage/plugin-search-backend-module-catalog@0.3.16
- @backstage/plugin-search-backend-module-elasticsearch@1.8.4
- @backstage/plugin-search-backend-module-explore@0.3.15
- @backstage/plugin-search-backend-module-techdocs@0.4.15
- @backstage/plugin-search-backend-node@1.4.5
- @backstage/plugin-techdocs-backend@2.2.1
e2e-test@0.2.41
Patch Changes
- Updated dependencies
- @backstage/create-app@0.8.4
@internal/frontend@0.0.21
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.17.2
@internal/scaffolder@0.0.22
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-react@2.0.1
- @backstage/frontend-plugin-api@0.17.2
techdocs-cli-embedded-app@0.2.121
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@2.0.6
- @backstage/cli@0.36.3
- @backstage/core-components@0.18.11
- @backstage/frontend-plugin-api@0.17.2
- @backstage/ui@0.16.0
- @backstage/plugin-techdocs@1.17.7
- @backstage/frontend-defaults@0.5.3
- @backstage/core-app-api@1.20.2
- @backstage/integration-react@1.2.19
- @backstage/test-utils@1.7.19
- @backstage/plugin-app-react@0.2.4
- @backstage/plugin-techdocs-react@1.3.12
@backstage/plugin-connections-example-backend@0.1.1
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.16.0
- @backstage/connections@0.1.0
- @backstage/backend-defaults@0.17.3
- @backstage/backend-plugin-api@1.9.2
- @backstage/plugin-catalog-node@2.2.2
@backstage/plugin-connections-example-backend-module-gitlab@0.1.1
Patch Changes
- Updated dependencies
- @backstage/connections@0.1.0
- @backstage/backend-plugin-api@1.9.2
@internal/plugin-todo-list@1.0.52
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.11
- @backstage/core-plugin-api@1.12.7
@internal/plugin-todo-list-backend@1.0.51
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.9.2