Skip to content

fix(deps): update backstage monorepo#115

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/backstage-monorepo
Open

fix(deps): update backstage monorepo#115
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/backstage-monorepo

Conversation

@renovate

@renovate renovate Bot commented Jun 21, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@backstage/app-defaults (source) 1.7.81.7.9 age confidence
@backstage/backend-defaults (source) 0.17.20.17.4 age confidence
@backstage/backend-plugin-api (source) 1.9.11.9.2 age confidence
@backstage/cli (source) 0.36.20.36.3 age confidence
@backstage/core-app-api (source) 1.20.11.20.2 age confidence
@backstage/core-components (source) 0.18.100.18.11 age confidence
@backstage/core-plugin-api (source) 1.12.61.12.7 age confidence
@backstage/frontend-plugin-api (source) 0.17.10.17.2 age confidence
@backstage/integration-react (source) 1.2.181.2.19 age confidence
@backstage/plugin-api-docs (source) 0.14.10.14.2 age confidence
@backstage/plugin-app-backend (source) 0.5.140.5.15 age confidence
@backstage/plugin-auth-backend (source) 0.29.00.29.1 age confidence
@backstage/plugin-auth-backend-module-github-provider (source) 0.5.30.5.4 age confidence
@backstage/plugin-auth-backend-module-guest-provider (source) 0.2.190.2.20 age confidence
@backstage/plugin-auth-backend-module-oidc-provider (source) 0.4.160.4.17 age confidence
@backstage/plugin-auth-node (source) 0.7.10.7.2 age confidence
@backstage/plugin-catalog (source) 2.0.52.0.6 age confidence
@backstage/plugin-catalog-backend (source) 3.7.13.8.0 age confidence
@backstage/plugin-catalog-backend-module-logs (source) 0.1.220.1.23 age confidence
@backstage/plugin-catalog-backend-module-scaffolder-entity-model (source) 0.2.200.2.21 age confidence
@backstage/plugin-catalog-graph (source) 0.6.40.6.5 age confidence
@backstage/plugin-catalog-import (source) 0.13.130.13.14 age confidence
@backstage/plugin-kubernetes (source) 0.12.190.12.20 age confidence
@backstage/plugin-kubernetes-backend (source) 0.21.40.21.5 age confidence
@backstage/plugin-notifications (source) 0.5.170.5.18 age confidence
@backstage/plugin-notifications-backend (source) 0.6.50.6.6 age confidence
@backstage/plugin-org (source) 0.7.40.7.5 age confidence
@backstage/plugin-permission-backend (source) 0.7.120.7.13 age confidence
@backstage/plugin-permission-backend-module-allow-all-policy (source) 0.2.190.2.20 age confidence
@backstage/plugin-permission-node (source) 0.11.00.11.1 age confidence
@backstage/plugin-permission-react (source) 0.5.10.5.2 age confidence
@backstage/plugin-proxy-backend (source) 0.6.130.6.14 age confidence
@backstage/plugin-scaffolder (source) 1.37.01.38.0 age confidence
@backstage/plugin-scaffolder-backend-module-github (source) 0.9.90.9.10 age confidence
@backstage/plugin-scaffolder-backend-module-notifications (source) 0.1.220.1.23 age confidence
@backstage/plugin-scaffolder-node (source) 0.13.30.13.4 age confidence
@backstage/plugin-search (source) 1.7.41.7.5 age confidence
@backstage/plugin-search-backend (source) 2.1.22.1.3 age confidence
@backstage/plugin-search-backend-module-catalog (source) 0.3.150.3.16 age confidence
@backstage/plugin-search-backend-module-pg (source) 0.5.550.5.56 age confidence
@backstage/plugin-search-backend-module-techdocs (source) 0.4.140.4.15 age confidence
@backstage/plugin-search-backend-node (source) 1.4.41.4.5 age confidence
@backstage/plugin-search-react (source) 1.11.41.11.5 age confidence
@backstage/plugin-signals (source) ^0.0.31^0.0.32 age confidence
@backstage/plugin-signals-backend (source) 0.3.150.3.16 age confidence
@backstage/plugin-techdocs (source) 1.17.61.17.7 age confidence
@backstage/plugin-techdocs-backend (source) 2.2.02.2.1 age confidence
@backstage/plugin-techdocs-module-addons-contrib (source) 1.1.361.1.37 age confidence
@backstage/plugin-techdocs-react (source) 1.3.111.3.12 age confidence
@backstage/plugin-user-settings (source) 0.9.30.9.4 age confidence
@backstage/test-utils (source) 1.7.181.7.19 age confidence
@backstage/ui (source) ^0.15.0^0.16.0 age confidence

Release Notes

backstage/backstage (@​backstage/app-defaults)

v1.7.9

Compare Source

Patch Changes
backstage/backstage (@​backstage/backend-defaults)

v0.17.4

Compare Source

Patch Changes

v0.17.3

Compare Source

Patch Changes
  • 4f4bcf5: Upgraded infinispan from ^0.12.0 to ^0.13.0 to address known vulnerabilities.
  • a07e6a3: Updated AzureBlobStorageUrlReader to reference the correctly-named AzureBlobStorageIntegration type from @backstage/integration. The previously-used AzureBlobStorageIntergation is 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 AzureBlobStorageUrlReader now accepts an optional createContainerClient dependency for testability without needing to mock the @azure/storage-blob module.
  • 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.rateLimit is enabled. Requests are now keyed using the address normalization helper from express-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 v2 invoke endpoint (/.backstage/actions/v2/actions/:id/invoke) that accepts a wrapped body format { input, secrets } with secrets validation. The existing v1 invoke endpoint remains unchanged for backward compatibility. Updated DefaultActionsService to use the v2 endpoint. Updated DefaultActionsRegistryService to 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/backstage (@​backstage/backend-plugin-api)

v1.9.2

Compare Source

Patch Changes
  • 02c4e8a: Removed unused json-schema runtime dependency. The package was only used for TypeScript types from @types/json-schema; affected imports have been converted to import type to allow safe removal.
  • 0211390: Added optional secrets schema support to ActionsRegistryActionOptions and ActionsRegistryActionContext. Actions can now declare a Zod secrets schema separate from the input schema, enabling surfaces to collect sensitive credentials independently from tool arguments. Added optional secrets field to ActionsServiceAction metadata and ActionsService.invoke() parameters.
  • Updated dependencies
backstage/backstage (@​backstage/cli)

v0.36.3

Compare Source

Patch Changes
backstage/backstage (@​backstage/core-app-api)

v1.20.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/core-components)

v0.18.11

Compare Source

Patch Changes
  • e0889a3: chore(deps): bump qs from 6.15.1 to 6.15.2
  • a07e6a3: Added the correctly-spelled 'header' literal to the TableFiltersClassKey union 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-highlighter and @dagrejs/dagre so they are no longer pulled in eagerly through the barrel export. This reduces the upfront module cost of importing from @backstage/core-components by 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/backstage (@​backstage/core-plugin-api)

v1.12.7

Compare Source

Patch Changes
backstage/backstage (@​backstage/frontend-plugin-api)

v0.17.2

Compare Source

Patch Changes
  • 378784e: Moved dependencies that are re-exported in the public API from devDependencies to dependencies. 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/backstage (@​backstage/integration-react)

v1.2.19

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-api-docs)

v0.14.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-app-backend)

v0.5.15

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-auth-backend)

v0.29.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-auth-backend-module-github-provider)

v0.5.4

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-auth-backend-module-guest-provider)

v0.2.20

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-auth-backend-module-oidc-provider)

v0.4.17

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-auth-node)

v0.7.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-catalog)

v2.0.6

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-backend)

v3.8.0

Compare Source

Minor Changes
  • 8f20cc2: /entities/by-query now accepts a totalItems parameter ('include' or 'exclude', default 'include') that controls whether the response's totalItems count 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.skipTotalItems option has been replaced by totalItems: 'include' | 'exclude'. Note that skipTotalItems was never exposed as a REST API parameter, so this is only a TypeScript-level change affecting direct callers of EntitiesCatalog.queryEntities.

    Sort field keys are now lowercased before comparing against search.key, fixing silent mismatches for camelCase field names. The NULLS LAST ordering clause has been removed since NULL sort values are already excluded by the WHERE clause.

  • 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. The pollingInterval and stitchTimeout settings continue to work as before.

Patch Changes
  • 9698738: Dropped the legacy search_entity_id_idx index 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 entitiesBatch on PostgreSQL to use = ANY(array) instead of WHERE 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_LABEL and HAS_ANNOTATION permission rules are now case insensitive.

  • 24775dc: Added a migration that tunes PostgreSQL automatic vacuum thresholds on the search, final_entities, relations, and refresh_state_references tables, and fixes column statistics for entity_id in the search table. 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 the search table (PostgreSQL only). This tells the query planner about the correlation between the key and value columns, 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 queryEntities list and count into separate queries instead of a multi-reference CTE. When the filtered CTE was referenced twice (once for the count, once for the data), PostgreSQL refused to inline it, forcing full materialization of the filtered set before applying LIMIT. By running the count as a standalone query, the list CTE is only referenced once, allowing the planner to short-circuit on LIMIT and 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 totalItems was 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 uses EXISTS to count distinct entities, aligning totalItems with 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 LOCKED row 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/backstage (@​backstage/plugin-catalog-backend-module-logs)

v0.1.23

Compare Source

Patch Chang

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/backstage-monorepo branch from 563ef3c to 6fea26d Compare June 26, 2026 16:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants