Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 16, 2025

Bumps @backstage/catalog-client from 1.11.0 to 1.12.0.

Changelog

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

1.12.0

Minor Changes

  • 0e9ec44: Introduced new streamEntities async generator method for the catalog.

    Catalog API and Catalog Service now includes a streamEntities method that allows for streaming entities from the catalog. This method is designed to handle large datasets efficiently by processing entities in a stream rather than loading them all into memory at once. This is useful when you need to fetch a large number of entities but do not want to use pagination or fetch all entities at once.

    Example usage:

    const pageStream = catalogClient.streamEntities({ pageSize: 100 }, { token });
    for await (const page of pageStream) {
      // Handle page of entities
      for (const entity of page) {
        console.log(entity);
      }
    }

Patch Changes

  • 0efcc97: Updated generated schemas

1.12.0-next.0

Minor Changes

  • 0e9ec44: Introduced new streamEntities async generator method for the catalog.

    Catalog API and Catalog Service now includes a streamEntities method that allows for streaming entities from the catalog. This method is designed to handle large datasets efficiently by processing entities in a stream rather than loading them all into memory at once. This is useful when you need to fetch a large number of entities but do not want to use pagination or fetch all entities at once.

    Example usage:

    const pageStream = catalogClient.streamEntities({ pageSize: 100 }, { token });
    for await (const page of pageStream) {
      // Handle page of entities
      for (const entity of page) {
        console.log(entity);
      }
    }
Commits
  • 24632ad Version Packages
  • c630360 catalog-client: getEntitiesByRefs should return undefined
  • b19b95f Version Packages (next)
  • 52b0022 chore(deps): update dependency msw to v1
  • b4627f2 Version Packages (next)
  • b5a58f4 Merge pull request #12246 from backstage/vinzscam/catalog-backend-paginated-e...
  • a746913 catalog-client: new cursors in api report
  • 88740be catalog-client: improve queryEntities example
  • b02b6c3 catalog-client: move query to fullTextFilterTerm
  • 7b370a5 catalog-client: sortFields to orderFields
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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/catalog-client](https://github.com/backstage/backstage/tree/HEAD/packages/catalog-client) from 1.11.0 to 1.12.0.
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-client/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.12.0/packages/catalog-client)

---
updated-dependencies:
- dependency-name: "@backstage/catalog-client"
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 Sep 16, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 16, 2025 21:12
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 16, 2025
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