Skip to content

Bump @backstage/plugin-catalog from 1.20.0 to 2.0.6#148

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/backstage/plugin-catalog-2.0.6
Open

Bump @backstage/plugin-catalog from 1.20.0 to 2.0.6#148
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/backstage/plugin-catalog-2.0.6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown

Bumps @backstage/plugin-catalog from 1.20.0 to 2.0.6.

Release notes

Sourced from @​backstage/plugin-catalog's releases.

v1.53.0-next.1

See docs/releases/v1.53.0-next.1-changelog.md for more information.

v1.53.0-next.0

See docs/releases/v1.53.0-next.0-changelog.md for more information.

v1.52.1

This patch release fixes the following issues:

  • Internal refactor of the specialized app sign-in runtime to initialize it once instead of reassigning it.
  • Fix scheduler tasks stuck with NULL next_run_start_at when switching from manual trigger to cadence
  • Fix broken configuration schema in @backstage/plugin-kubernetes-react.

v1.52.0

These are the release notes for the v1.52.0 release of Backstage.

A huge thanks to the whole team of maintainers and contributors as well as the amazing Backstage Community for the hard work in getting this release developed and done.

Highlights

BREAKING: Default discovery API changed to FrontendHostDiscovery

The default discovery API implementation in @backstage/plugin-app has been changed to FrontendHostDiscovery, which supports the discovery.endpoints configuration for per-plugin endpoint overrides. This means the frontend will now honor discovery.endpoints configuration, including string target values. If you currently use internal-only targets there, update them to the object form and move the internal URL to target.internal, omitting target.external (or setting it to a browser-reachable URL) to avoid routing the frontend to internal URLs.

BREAKING: Removed immediate mode stitching

The catalog.stitchingStrategy.mode: 'immediate' setting, which was deprecated in v1.51.0, has been removed. All stitching now uses the deferred mode, which processes entities asynchronously via a worker queue. If your configuration still includes catalog.stitchingStrategy.mode: 'immediate', it will be ignored with a deprecation warning. The pollingInterval and stitchTimeout settings continue to work as before.

BREAKING: Backstage UI updates

This release brings several notable additions and changes to Backstage UI:

Async collections: Both Combobox and Select now support async collections, incremental loading, client and server search, and rich or custom item rendering. Loading placeholders and stale result indicators are exposed via public CSS classes for theme customization. The Combobox and Select popovers now correctly load additional pages as users scroll, rather than loading every page immediately.

Semantic color tokens: A new set of semantic color token families has been introduced -- 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 and updated foreground tokens are also included. The previous tokens remain in place for backward compatibility but are now deprecated. A new @backstage/no-deprecated-bui-tokens ESLint rule warns when deprecated tokens are referenced in JavaScript or TypeScript files.

New components: A NumberField component has been added for numeric input with support for min, max, step, and keyboard increment/decrement. Contributed by @​jabrks in #34264.

Breaking changes:

  • ComboboxProps is now a union type. Replace interfaces that extend ComboboxProps with type intersections:
    - interface MyComboboxProps extends ComboboxProps {
    -   trackingId: string;
    - }
    + type MyComboboxProps = ComboboxProps & {
    +   trackingId: string;
    + };
  • SelectProps is now a union type and the popover list content is no longer a direct child of .bui-SelectPopover. Apply the same intersection migration as ComboboxProps, and update CSS selectors that target list content as a direct child of .bui-SelectPopover.

... (truncated)

Changelog

Sourced from @​backstage/plugin-catalog's changelog.

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 new totalItemsLoading field is exposed on EntityListContextProps so 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 the CatalogIndexPage.

  • d7c1dcf: Fixed a missing React key warning for context menu items on the entity page.

  • a07e6a3: Added the correctly-spelled RelatedEntitiesCard.domainEntityColumns static property and deprecated the previous typoed RelatedEntitiesCard.domainEntityColums property. Existing references to the old property continue to work; switch to domainEntityColumns 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/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

2.0.6-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-client@​1.16.0-next.1
    • @​backstage/frontend-plugin-api@​0.17.2-next.0
    • @​backstage/core-components@​0.18.11-next.1
    • @​backstage/ui@​0.15.1-next.0
    • @​backstage/core-compat-api@​0.5.12-next.1
    • @​backstage/core-plugin-api@​1.12.7-next.0
    • @​backstage/plugin-catalog-react@​3.0.1-next.1
    • @​backstage/plugin-search-react@​1.11.5-next.1
    • @​backstage/plugin-techdocs-react@​1.3.12-next.1
    • @​backstage/integration-react@​1.2.19-next.1
    • @​backstage/plugin-permission-react@​0.5.2-next.0

2.0.6-next.0

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 new totalItemsLoading field is exposed on EntityListContextProps so 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.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@backstage/plugin-catalog](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog) from 1.20.0 to 2.0.6.
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog)

---
updated-dependencies:
- dependency-name: "@backstage/plugin-catalog"
  dependency-version: 2.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants