Skip to content

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

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

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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 2, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/backstage/plugin-catalog-2.0.6 branch from 732ddb7 to 7a08c02 Compare July 7, 2026 07:24
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 force-pushed the dependabot/npm_and_yarn/backstage/plugin-catalog-2.0.6 branch from 7a08c02 to 30777b3 Compare July 7, 2026 07:33
@liamfallon liamfallon mentioned this pull request Jul 7, 2026
@liamfallon

Copy link
Copy Markdown

Aggregated into #149

@liamfallon liamfallon closed this Jul 7, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 7, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/backstage/plugin-catalog-2.0.6 branch July 7, 2026 07:38
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.

1 participant