Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the minor group across 1 directory with 64 updates #774

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the minor group with 47 updates in the /backstage directory:

Package From To
@backstage/cli 0.26.11 0.29.6
concurrently 9.0.1 9.1.2
lerna 8.1.7 8.1.9
typescript 5.5.4 5.7.3
@backstage/app-defaults 1.5.9 1.5.16
@backstage/core-components 0.14.9 0.16.3
@backstage/integration-react 1.1.29 1.2.3
@backstage/plugin-api-docs 0.11.7 0.12.3
@backstage/plugin-catalog-graph 0.4.7 0.4.15
@backstage/plugin-catalog-import 0.12.1 0.12.9
@backstage/plugin-home 0.7.8 0.8.4
@backstage/plugin-org 0.6.27 0.6.35
@backstage/plugin-scaffolder 1.23.0 1.27.5
@backstage/plugin-search 1.4.14 1.4.22
@backstage/plugin-techdocs 1.10.7 1.12.2
@backstage/plugin-techdocs-module-addons-contrib 1.1.12 1.1.20
@backstage/plugin-user-settings 0.8.10 0.8.18
@backstage/theme 0.5.6 0.6.3
@immobiliarelabs/backstage-plugin-gitlab 6.6.0 6.8.0
@remix-run/router 1.18.0 1.22.0
react-use 17.5.1 17.6.0
@backstage/test-utils 1.5.9 1.7.4
@testing-library/jest-dom 6.4.8 6.6.3
@testing-library/user-event 14.5.2 14.6.1
@types/node 22.5.4 22.13.0
start-server-and-test 2.0.5 2.0.10
@backstage/backend-common 0.23.3 0.25.0
@backstage/backend-tasks 0.5.27 0.6.1
@backstage/plugin-auth-backend 0.22.9 0.24.2
@backstage/plugin-auth-node 0.4.17 0.5.6
@backstage/plugin-catalog-backend 1.26.0 1.30.0
@backstage/plugin-catalog-backend-module-github 0.6.5 0.7.9
@backstage/plugin-catalog-backend-module-gitlab 0.3.21 0.6.2
@backstage/plugin-catalog-backend-module-ldap 0.7.0 0.11.1
@backstage/plugin-catalog-backend-module-openapi 0.1.40 0.2.6
@backstage/plugin-proxy-backend 0.5.3 0.5.10
@backstage/plugin-scaffolder-backend 1.23.0 1.29.0
@backstage/plugin-search-backend 1.5.14 1.8.1
@backstage/plugin-search-backend-module-pg 0.5.32 0.5.40
@backstage/plugin-techdocs-backend 1.10.13 1.11.5
@immobiliarelabs/backstage-plugin-gitlab-backend 6.6.0 6.8.0
better-sqlite3 11.1.2 11.8.1
dockerode 4.0.2 4.0.4
pg 8.12.0 8.13.1
winston 3.13.1 3.17.0
@types/dockerode 3.3.31 3.3.34
@types/express-serve-static-core 5.0.1 5.0.6

Updates @backstage/cli from 0.26.11 to 0.29.6

Changelog

Sourced from @​backstage/cli's changelog.

@​backstage/cli

0.30.0-next.1

Patch Changes

  • 207f88f: Fixed the file path pattern of many static assets output as part of the frontend build process, where there was an extra . before the extension, leading to names like image-af7946b..png.
  • Updated dependencies
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/cli-common@​0.1.15
    • @​backstage/cli-node@​0.2.13-next.0
    • @​backstage/config@​1.3.2
    • @​backstage/config-loader@​1.9.6-next.0
    • @​backstage/errors@​1.2.7
    • @​backstage/eslint-plugin@​0.1.10
    • @​backstage/integration@​1.16.1
    • @​backstage/release-manifests@​0.0.12
    • @​backstage/types@​1.2.1

0.30.0-next.0

Minor Changes

  • cb76663: BREAKING: Add support for native ESM in Node.js code. This changes the behavior of dynamic import expressions in Node.js code. Typically this can be fixed by replacing import(...) with require(...), with an as typeof import(...) cast if needed for types. This is because dynamic imports will no longer be transformed to require(...) calls, but instead be left as-is. This in turn allows you to load ESM modules from CommonJS code using import(...).

    This change adds support for the following in Node.js packages, across type checking, package builds, runtime transforms and Jest tests:

    • Dynamic imports that load ESM modules from CommonJS code.
    • Both .mjs and .mts files as explicit ESM files, as well as .cjs and .cts as explicit CommonJS files.
    • Support for the "type": "module" field in package.json to indicate that the package is an ESM package.

    There are a few caveats to be aware of:

    • To enable support for native ESM in tests, you need to run the tests with the --experimental-vm-modules flag enabled, typically via NODE_OPTIONS='--experimental-vm-modules'.
    • Declaring a package as "type": "module" in package.json is supported, but in tests it will cause all local transitive dependencies to also be treated as ESM, regardless of whether they declare "type": "module" or not.
    • Node.js has an ESM interoperability layer with CommonJS that allows for imports from ESM to identify named exports in CommonJS packages. This interoperability layer is only enabled when importing packages with a .cts or .cjs extension. This is because the interoperability layer is not fully compatible with the NPM ecosystem, and would break package if it was enabled for .js files.
    • Dynamic imports of CommonJS packages will vary in shape depending on the runtime, i.e. test vs local development, etc. It is therefore recommended to avoid dynamic imports of CommonJS packages and instead use require, or to use the explicit CommonJS extensions as mentioned above. If you do need to dynamically import CommonJS packages, avoid using default exports, as the shape of them vary across different environments and you would otherwise need to manually unwrap the import based on the shape of the module object.

Patch Changes

  • f21b125: Ensure that both global-agent and undici agents are enabled when proxying is enabled.
  • Updated dependencies
    • @​backstage/cli-node@​0.2.13-next.0
    • @​backstage/config-loader@​1.9.6-next.0
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/cli-common@​0.1.15
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/eslint-plugin@​0.1.10
    • @​backstage/integration@​1.16.1

... (truncated)

Commits

Updates concurrently from 9.0.1 to 9.1.2

Release notes

Sourced from concurrently's releases.

v9.1.2

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.1.1...v9.1.2

v9.1.1

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.1.0...v9.1.1

v9.1.0

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0

Commits

Updates lerna from 8.1.7 to 8.1.9

Release notes

Sourced from lerna's releases.

v8.1.9

8.1.9 (2024-10-31)

Bug Fixes

  • add extends property in schema (#4075) (28c8ef2)
  • core: avoid reading empty .config.json, upgrade cosmiconfig@v9.0.0 (#4062) (960bdd9)
  • update nx support to latest v20 (#4103) (cb37f19)
  • version: enable changing commit message when using amend (#3954) (529e83f)

Features

  • publish: support full file path for --summary-file (#4039) (cfd573a)

v8.1.8

8.1.8 (2024-08-05)

Bug Fixes

  • publish: upgrade @​npmcli/arborist to 7.5.4 (#4058) (89de0eb)
  • version: truncate release body based on maximum size allowed by VCS client (#4041) (3c2a3c9)

Features

  • publish: enable throttling when publishing modules (#4013) (fccca12)
Changelog

Sourced from lerna's changelog.

8.1.9 (2024-10-31)

Bug Fixes

  • add extends property in schema (#4075) (28c8ef2)
  • core: avoid reading empty .config.json, upgrade cosmiconfig@v9.0.0 (#4062) (960bdd9)
  • update nx support to latest v20 (#4103) (cb37f19)

8.1.8 (2024-08-05)

Bug Fixes

  • publish: upgrade @​npmcli/arborist to 7.5.4 (#4058) (89de0eb)
Commits

Updates typescript from 5.5.4 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable in compare view

Updates @backstage/app-defaults from 1.5.9 to 1.5.16

Changelog

Sourced from @​backstage/app-defaults's changelog.

1.5.16

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/core-components@​0.16.3
    • @​backstage/core-app-api@​1.15.4
    • @​backstage/theme@​0.6.3
    • @​backstage/plugin-permission-react@​0.4.30

1.5.16-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3-next.0
    • @​backstage/core-app-api@​1.15.4-next.0
    • @​backstage/core-components@​0.16.3-next.0
    • @​backstage/plugin-permission-react@​0.4.30-next.0
    • @​backstage/theme@​0.6.3

1.5.15

Patch Changes

  • Updated dependencies
    • @​backstage/core-app-api@​1.15.3
    • @​backstage/theme@​0.6.3
    • @​backstage/core-components@​0.16.2
    • @​backstage/core-plugin-api@​1.10.2
    • @​backstage/plugin-permission-react@​0.4.29

1.5.15-next.2

Patch Changes

  • Updated dependencies
    • @​backstage/core-app-api@​1.15.3-next.1
    • @​backstage/core-components@​0.16.2-next.2
    • @​backstage/core-plugin-api@​1.10.2-next.0
    • @​backstage/theme@​0.6.3-next.0
    • @​backstage/plugin-permission-react@​0.4.29-next.0

1.5.15-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/core-components@​0.16.2-next.1

... (truncated)

Commits

Updates @backstage/catalog-model from 1.7.0 to 1.7.3

Changelog

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

1.7.3

Patch Changes

  • Updated dependencies
    • @​backstage/types@​1.2.1
    • @​backstage/errors@​1.2.7

1.7.3-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/types@​1.2.1-next.0
    • @​backstage/errors@​1.2.7-next.0

1.7.2

Patch Changes

  • Updated dependencies
    • @​backstage/errors@​1.2.6
    • @​backstage/types@​1.2.0

1.7.2-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/errors@​1.2.6-next.0
    • @​backstage/types@​1.2.0

1.7.1

Patch Changes

  • Updated dependencies
    • @​backstage/types@​1.2.0
    • @​backstage/errors@​1.2.5
Commits

Updates @backstage/core-app-api from 1.14.1 to 1.15.4

Changelog

Sourced from @​backstage/core-app-api's changelog.

1.15.4

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/types@​1.2.1
    • @​backstage/config@​1.3.2
    • @​backstage/version-bridge@​1.0.10

1.15.4-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3-next.0
    • @​backstage/types@​1.2.1-next.0
    • @​backstage/config@​1.3.2-next.0
    • @​backstage/version-bridge@​1.0.10

1.15.3

Patch Changes

  • e5fa018: The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.
  • 2830689: Decrease OAuth2 token refresh grace period
  • Updated dependencies
    • @​backstage/config@​1.3.1
    • @​backstage/core-plugin-api@​1.10.2
    • @​backstage/types@​1.2.0
    • @​backstage/version-bridge@​1.0.10

1.15.3-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/config@​1.3.1-next.0
    • @​backstage/core-plugin-api@​1.10.2-next.0
    • @​backstage/types@​1.2.0
    • @​backstage/version-bridge@​1.0.10

1.15.3-next.0

Patch Changes

  • e5fa018: The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.
  • 2830689: Decrease OAuth2 token refresh grace period
  • Updated dependencies
    • @​backstage/config@​1.3.0

... (truncated)

Commits

Updates @backstage/core-components from 0.14.9 to 0.16.3

Changelog

Sourced from @​backstage/core-components's changelog.

0.16.3

Patch Changes

  • 4ec6f7b: Allow passing component for ContentHeader description
  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/theme@​0.6.3
    • @​backstage/version-bridge@​1.0.10

0.16.3-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3-next.0
    • @​backstage/config@​1.3.2-next.0
    • @​backstage/errors@​1.2.7-next.0
    • @​backstage/theme@​0.6.3
    • @​backstage/version-bridge@​1.0.10

0.16.2

Patch Changes

  • e47be38: Added data-testid to placeholder rendered by Progress component to simplify assertions in tests
  • Updated dependencies
    • @​backstage/theme@​0.6.3
    • @​backstage/errors@​1.2.6
    • @​backstage/config@​1.3.1
    • @​backstage/core-plugin-api@​1.10.2
    • @​backstage/version-bridge@​1.0.10

0.16.2-next.2

Patch Changes

  • Updated dependencies
    • @​backstage/errors@​1.2.6-next.0
    • @​backstage/config@​1.3.1-next.0
    • @​backstage/core-plugin-api@​1.10.2-next.0
    • @​backstage/theme@​0.6.3-next.0
    • @​backstage/version-bridge@​1.0.10

0.16.2-next.1

Patch Changes

... (truncated)

Commits

Updates @backstage/core-plugin-api from 1.9.3 to 1.10.3

Changelog

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

1.10.3

Patch Changes

  • b40eb41: Move Expand and ExpandRecursive to @backstage/types
  • Updated dependencies
    • @​backstage/types@​1.2.1
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/version-bridge@​1.0.10

1.10.3-next.0

Patch Changes

  • b40eb41: Move Expand and ExpandRecursive to @backstage/types
  • Updated dependencies
    • @​backstage/types@​1.2.1-next.0
    • @​backstage/config@​1.3.2-next.0
    • @​backstage/errors@​1.2.7-next.0
    • @​backstage/version-bridge@​1.0.10

1.10.2

Patch Changes

  • Updated dependencies
    • @​backstage/errors@​1.2.6
    • @​backstage/config@​1.3.1
    • @​backstage/types@​1.2.0
    • @​backstage/version-bridge@​1.0.10

1.10.2-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/errors@​1.2.6-next.0
    • @​backstage/config@​1.3.1-next.0
    • @​backstage/types@​1.2.0
    • @​backstage/version-bridge@​1.0.10

1.10.1

Patch Changes

  • Updated dependencies
    • @​backstage/config@​1.3.0
    • @​backstage/types@​1.2.0
    • @​backstage/errors@​1.2.5

... (truncated)

Commits

Updates @backstage/integration-react from 1.1.29 to 1.2.3

Changelog

Sourced from @​backstage/integration-react's changelog.

1.2.3

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/integration@​1.16.1
    • @​backstage/config@​1.3.2

1.2.3-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.3-next.0
    • @​backstage/config@​1.3.2-next.0
    • @​backstage/integration@​1.16.1-next.0

1.2.2

Patch Changes

  • Updated dependencies
    • @​backstage/integration@​1.16.0
    • @​backstage/config@​1.3.1
    • @​backstage/core-plugin-api@​1.10.2

1.2.2-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/config@​1.3.1-next.0
    • @​backstage/core-plugin-api@​1.10.2-next.0
    • @​backstage/integration@​1.16.0-next.1

1.2.2-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/integration@​1.16.0-next.0
    • @​backstage/config@​1.3.0
    • @​backstage/core-plugin-api@​1.10.1

1.2.1

Patch Changes

  • Updated dependencies

... (truncated)

Commits

Updates @backstage/plugin-api-docs from 0.11.7 to 0.12.3

Changelog

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

0.12.3

Patch Changes

  • dcf6e72: Fix typo in default path of api docs definition route
  • Updated dependencies
    • @​backstage/plugin-catalog-react@​1.15.1
    • @​backstage/frontend-plugin-api@​0.9.4
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/core-components@​0.16.3
    • @​backstage/plugin-catalog@​1.26.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/core-compat-api@​0.3.5
    • @​backstage/plugin-catalog-common@​1.1.3
    • @​backstage/plugin-permission-react@​0.4.30

0.12.3-next.1

Patch Changes

  • dcf6e72: Fix typo in default path of api docs definition route
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.9.4-next.0
    • @​backstage/core-plugin-api@​1.10.3-next.0
    • @​backstage/plugin-catalog@​1.26.1-next.1
    • @​backstage/core-compat-api@​0.3.5-next.0
    • @​backstage/plugin-catalog-react@​1.15.1-next.1
    • @​backstage/core-components@​0.16.3-next.0
    • @​backstage/plugin-permission-react@​0.4.30-next.0
    • @​backstage/catalog-model@​1.7.3-next.0
    • @​backstage/plugin-catalog-common@​1.1.3-next.0

0.12.3-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-catalog-react@​1.15.1-next.0
    • @​backstage/plugin-catalog@​1.26.1-next.0
    • @​backstage/core-compat-api@​0.3.4

0.12.2

Patch Changes

  • 11babd9: Fix link styling in ProvidedApisCard component so it aligns with other card components.
  • Updated dependencies
    • @​backstage/plugin-catalog-react@​1.15.0
    • @​backstage/plugin-catalog@​1.26.0
    • @​backstage/core-compat-api@​0.3.4

... (truncated)

Commits

Updates @backstage/plugin-catalog from 1.21.1 to 1.26.1

Release notes

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

v1.26.1

This release deprecates @backstage/plugin-todo and @backstage/plugin-todo-backend has they have now been moved to the @backstage-community/* namespace over in the community-plugins repository.

You should be able to do yarn backstage-cli versions:bump if you're already on v1.26.0+ of Backstage. Otherwise, you can do do yarn backstage-cli versions:bump followed by yarn backstage-cli versions:migrate to switch over to the new packages, if you're on versions <v1.26.0

v1.26.0

See docs/releases/v1.26.0-changelog.md for more information.

v1.26.0-next.1

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

v1.26.0-next.0

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

v1.25.2

This release fixes an issue where requests for the public http routes for the events-backend were authenticated causing 401 errors.

v1.25.1

This release fixes an bug where the kubernetes plugin would crash reading credentials from undefined.

v1.25.0

These are the release notes for the v1.25.0 release of Backstage. This is an unscheduled release that replaces what would’ve otherwise been the v1.25.0-next.1 release, due to a problem with the patch releases for 1.24.0. The next main line release will still be released on April 16th as scheduled, but will now instead be 1.26.0.

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

Auth service fixes

A number of fixes have been made to various plugins related to the new auth system:

Rate limiting has been disabled as it was a bit too aggressive and didn’t interact well with proxies. Fixes an issue in the TechDocs CLI related to cookie auth Fixes an integration issue of the new auth services in the Jenkins backend plugin Fixed an issue in the scaffolder were credentials weren’t forwarded correctly to the action context. Fixed an issue where the proxy backend blocked unauthenticated requests.

Catalog

The catalog backend can now be extended with additional permissions through new addPermissions methods of the CatalogBuilder and catalogPermissionExtensionPoint. The paginated catalog table now saves the search text in the query parameters and debounces the server requests.

Security Fixes

This release does not contain any security fixes.

Upgrade path

We recommend that you keep your Backstage project up to date with this latest release. For more guidance on how to upgrade, check out the documentation for keeping Backstage updated.

... (truncated)

Changelog

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

1.26.1

Patch Changes

  • 208e53b: Fixing spelling mistake in translation
  • Updated dependencies
    • @​backstage/plugin-catalog-react@​1.15.1
    • @​backstage/frontend-plugin-api@​0.9.4
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/types@​1.2.1
    • @​backstage/core-components@​0.16.3
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/core-compat-api@​0.3.5
    • @​backstage/errors@​1.2.7
    • @​backstage/integration-react@​1.2.3
    • @​backstage/plugin-catalog-common@​1.1.3
    • @​backstage/plugin-permission-react@​0.4.30
    • @​backstage/plugin-scaffolder-common@​1.5.9
    • @​backstage/plugin-search-common@​1.2.17
    • @​backstage/plugin-search-react@​1.8.5

1.26.1-next.1

Patch Changes

  • 208e53b: Fixing spelling mistake in translation
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.9.4-next.0
    • @​backstage/core-plugin-api@​1.10.3-next.0
    • @​backstage/types@​1.2.1-next.0
    • @​backstage/core-compat-api@​0.3.5-next.0
    • @​backstage/plugin-catalog-react@​1.15.1-next.1
    • @​backstage/plugin-search-react@​1.8.5-next.0
    • @​backstage/core-components@​0.16.3-next.0
    • @​backstage/integration-react@​1.2.3-next.0
    • @​backstage/plugin-permission-react@​0.4.30-next.0
    • @​backstage/catalog-model@​1.7.3-next.0
    • @​backstage/errors@​1.2.7-next.0
    • @​backstage/plugin-scaffolder-common@​1.5.9-next.0
    • @​backstage/plugin-search-common@​1.2.17-next.0
    • @​backstage/catalog-client@​1.9.1-next.0
    • @​backstage/plugin-catalog-common@​1.1.3-next.0

1.26.1-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-catalog-react@​1.15.1-next.0

... (truncated)

Commits
  • 0e48f5a Version Packages
  • f6e7d64 Merge pull request #24180 from backstage/renovate/testing-library-dom-10.x
  • 908d5dd Merge pull request #24078 from aureliosaraiva/master
  • cb1e3b0 chore(deps): update dependency @​testing-library/dom to v10
  • abfbcfc chore(deps): update dependency @​testing-library/react to v15
  • 036b9b3 Version Packages (next)
  • 4ef0dcf Also add the entity presentation API in app-next apps
  • 1370bc6 feat(plugins/catalog): added custom sort on createLabelColumn
  • 8bcf84b Merge pull request #23401 from backstage/roi/scaffolder-metadata
  • 366cf07 Version Packages (next)
  • Additional commits viewable in compare view

Updates @backstage/plugin-catalog-common from 1.1.0 to 1.1.3

Changelog

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

1.1.3

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/plugin-permission-common@​0.8.4
    • @​backstage/plugin-search-common@​1.2.17

1.1.3-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-model@​1.7.3-next.0
    • @​backstage/plugin-permission-common@​0.8.4-next.0
    • @​backstage/plugin-search-common@​1.2.17-next.0

1.1.2

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-model@​1.7.2
    • @​backstage/plugin-permission-common@​0.8.3
    • @​backstage/plugin-search-common@​1.2.16

1.1.2-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-model@​1.7.2-next.0
    • @​backstage/plugin-permission-common@​0.8.3-next.0
    • @​backstage/plugin-search-common@​1.2.16-next.0

1.1.1

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-permission-common@​0.8.2
    • @​backstage/catalog-model@​1.7.1
    • @​backstage/plugin-search-common@​1.2.15
Commits

Updates @backstage/plugin-catalog-graph from 0.4.7 to 0.4.15

Changelog

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

0.4.15

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-catalog-react@​1.15.1
    • @​backstage/frontend-plugin-api@​0.9.4
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/types@​1.2.1
    • @​backstage/core-components@​0.16.3
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/core-compat-api@​0.3.5

0.4.15-next.1

Patch Changes

  • Updated dependencies Description has been truncated

Bumps the minor group with 47 updates in the /backstage directory:

| Package | From | To |
| --- | --- | --- |
| [@backstage/cli](https://github.com/backstage/backstage/tree/HEAD/packages/cli) | `0.26.11` | `0.29.6` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `9.0.1` | `9.1.2` |
| [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) | `8.1.7` | `8.1.9` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.7.3` |
| [@backstage/app-defaults](https://github.com/backstage/backstage/tree/HEAD/packages/app-defaults) | `1.5.9` | `1.5.16` |
| [@backstage/core-components](https://github.com/backstage/backstage/tree/HEAD/packages/core-components) | `0.14.9` | `0.16.3` |
| [@backstage/integration-react](https://github.com/backstage/backstage/tree/HEAD/packages/integration-react) | `1.1.29` | `1.2.3` |
| [@backstage/plugin-api-docs](https://github.com/backstage/backstage/tree/HEAD/plugins/api-docs) | `0.11.7` | `0.12.3` |
| [@backstage/plugin-catalog-graph](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-graph) | `0.4.7` | `0.4.15` |
| [@backstage/plugin-catalog-import](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-import) | `0.12.1` | `0.12.9` |
| [@backstage/plugin-home](https://github.com/backstage/backstage/tree/HEAD/plugins/home) | `0.7.8` | `0.8.4` |
| [@backstage/plugin-org](https://github.com/backstage/backstage/tree/HEAD/plugins/org) | `0.6.27` | `0.6.35` |
| [@backstage/plugin-scaffolder](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder) | `1.23.0` | `1.27.5` |
| [@backstage/plugin-search](https://github.com/backstage/backstage/tree/HEAD/plugins/search) | `1.4.14` | `1.4.22` |
| [@backstage/plugin-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs) | `1.10.7` | `1.12.2` |
| [@backstage/plugin-techdocs-module-addons-contrib](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs-module-addons-contrib) | `1.1.12` | `1.1.20` |
| [@backstage/plugin-user-settings](https://github.com/backstage/backstage/tree/HEAD/plugins/user-settings) | `0.8.10` | `0.8.18` |
| [@backstage/theme](https://github.com/backstage/backstage/tree/HEAD/packages/theme) | `0.5.6` | `0.6.3` |
| [@immobiliarelabs/backstage-plugin-gitlab](https://github.com/immobiliare/backstage-plugin-gitlab) | `6.6.0` | `6.8.0` |
| [@remix-run/router](https://github.com/remix-run/react-router/tree/HEAD/packages/router) | `1.18.0` | `1.22.0` |
| [react-use](https://github.com/streamich/react-use) | `17.5.1` | `17.6.0` |
| [@backstage/test-utils](https://github.com/backstage/backstage/tree/HEAD/packages/test-utils) | `1.5.9` | `1.7.4` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.8` | `6.6.3` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.5.2` | `14.6.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.13.0` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.0.5` | `2.0.10` |
| [@backstage/backend-common](https://github.com/backstage/backstage/tree/HEAD/packages/backend-common) | `0.23.3` | `0.25.0` |
| [@backstage/backend-tasks](https://github.com/backstage/backstage/tree/HEAD/packages/backend-tasks) | `0.5.27` | `0.6.1` |
| [@backstage/plugin-auth-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-backend) | `0.22.9` | `0.24.2` |
| [@backstage/plugin-auth-node](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-node) | `0.4.17` | `0.5.6` |
| [@backstage/plugin-catalog-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend) | `1.26.0` | `1.30.0` |
| [@backstage/plugin-catalog-backend-module-github](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-github) | `0.6.5` | `0.7.9` |
| [@backstage/plugin-catalog-backend-module-gitlab](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-gitlab) | `0.3.21` | `0.6.2` |
| [@backstage/plugin-catalog-backend-module-ldap](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-ldap) | `0.7.0` | `0.11.1` |
| [@backstage/plugin-catalog-backend-module-openapi](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-openapi) | `0.1.40` | `0.2.6` |
| [@backstage/plugin-proxy-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/proxy-backend) | `0.5.3` | `0.5.10` |
| [@backstage/plugin-scaffolder-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder-backend) | `1.23.0` | `1.29.0` |
| [@backstage/plugin-search-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend) | `1.5.14` | `1.8.1` |
| [@backstage/plugin-search-backend-module-pg](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-pg) | `0.5.32` | `0.5.40` |
| [@backstage/plugin-techdocs-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs-backend) | `1.10.13` | `1.11.5` |
| [@immobiliarelabs/backstage-plugin-gitlab-backend](https://github.com/immobiliare/backstage-plugin-gitlab) | `6.6.0` | `6.8.0` |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `11.1.2` | `11.8.1` |
| [dockerode](https://github.com/apocas/dockerode) | `4.0.2` | `4.0.4` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.12.0` | `8.13.1` |
| [winston](https://github.com/winstonjs/winston) | `3.13.1` | `3.17.0` |
| [@types/dockerode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dockerode) | `3.3.31` | `3.3.34` |
| [@types/express-serve-static-core](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express-serve-static-core) | `5.0.1` | `5.0.6` |



Updates `@backstage/cli` from 0.26.11 to 0.29.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/cli)

Updates `concurrently` from 9.0.1 to 9.1.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v9.0.1...v9.1.2)

Updates `lerna` from 8.1.7 to 8.1.9
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/main/packages/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v8.1.9/packages/lerna)

Updates `typescript` from 5.5.4 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.7.3)

Updates `@backstage/app-defaults` from 1.5.9 to 1.5.16
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/app-defaults/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/app-defaults)

Updates `@backstage/catalog-model` from 1.7.0 to 1.7.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/catalog-model)

Updates `@backstage/core-app-api` from 1.14.1 to 1.15.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-app-api/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-app-api)

Updates `@backstage/core-components` from 0.14.9 to 0.16.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-components/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-components)

Updates `@backstage/core-plugin-api` from 1.9.3 to 1.10.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-plugin-api/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-plugin-api)

Updates `@backstage/integration-react` from 1.1.29 to 1.2.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/integration-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/integration-react)

Updates `@backstage/plugin-api-docs` from 0.11.7 to 0.12.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/api-docs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/api-docs)

Updates `@backstage/plugin-catalog` from 1.21.1 to 1.26.1
- [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/v1.26.1/plugins/catalog)

Updates `@backstage/plugin-catalog-common` from 1.1.0 to 1.1.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-common)

Updates `@backstage/plugin-catalog-graph` from 0.4.7 to 0.4.15
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-graph/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-graph)

Updates `@backstage/plugin-catalog-import` from 0.12.1 to 0.12.9
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-import/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-import)

Updates `@backstage/plugin-catalog-react` from 1.12.2 to 1.15.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-react)

Updates `@backstage/plugin-home` from 0.7.8 to 0.8.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/home/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/home)

Updates `@backstage/plugin-org` from 0.6.27 to 0.6.35
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/org/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/org)

Updates `@backstage/plugin-permission-react` from 0.4.24 to 0.4.30
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-react)

Updates `@backstage/plugin-scaffolder` from 1.23.0 to 1.27.5
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/scaffolder/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.27.5/plugins/scaffolder)

Updates `@backstage/plugin-search` from 1.4.14 to 1.4.22
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search)

Updates `@backstage/plugin-search-react` from 1.7.13 to 1.8.5
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-react)

Updates `@backstage/plugin-techdocs` from 1.10.7 to 1.12.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/techdocs)

Updates `@backstage/plugin-techdocs-module-addons-contrib` from 1.1.12 to 1.1.20
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs-module-addons-contrib/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/techdocs-module-addons-contrib)

Updates `@backstage/plugin-techdocs-react` from 1.2.6 to 1.2.13
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/techdocs-react)

Updates `@backstage/plugin-user-settings` from 0.8.10 to 0.8.18
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/user-settings/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/user-settings)

Updates `@backstage/theme` from 0.5.6 to 0.6.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/theme/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/theme)

Updates `@immobiliarelabs/backstage-plugin-gitlab` from 6.6.0 to 6.8.0
- [Release notes](https://github.com/immobiliare/backstage-plugin-gitlab/releases)
- [Changelog](https://github.com/immobiliare/backstage-plugin-gitlab/blob/main/CHANGELOG.md)
- [Commits](immobiliare/backstage-plugin-gitlab@v6.6.0...v6.8.0)

Updates `@remix-run/router` from 1.18.0 to 1.22.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/@remix-run/router@1.22.0/packages/router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@remix-run/router@1.22.0/packages/router)

Updates `react-use` from 17.5.1 to 17.6.0
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](streamich/react-use@v17.5.1...v17.6.0)

Updates `@backstage/test-utils` from 1.5.9 to 1.7.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/test-utils/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/test-utils)

Updates `@testing-library/jest-dom` from 6.4.8 to 6.6.3
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.8...v6.6.3)

Updates `@testing-library/user-event` from 14.5.2 to 14.6.1
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.5.2...v14.6.1)

Updates `@types/node` from 22.5.4 to 22.13.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react-dom` from 17.0.25 to 17.0.26
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `start-server-and-test` from 2.0.5 to 2.0.10
- [Release notes](https://github.com/bahmutov/start-server-and-test/releases)
- [Commits](bahmutov/start-server-and-test@v2.0.5...v2.0.10)

Updates `@backstage/backend-common` from 0.23.3 to 0.25.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/v0.25.0/packages/backend-common)

Updates `@backstage/backend-tasks` from 0.5.27 to 0.6.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/backend-tasks)

Updates `@backstage/catalog-client` from 1.7.0 to 1.9.1
- [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.9.1/packages/catalog-client)

Updates `@backstage/config` from 1.2.0 to 1.3.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/config/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/config)

Updates `@backstage/integration` from 1.15.0 to 1.16.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/integration/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/integration)

Updates `@backstage/plugin-auth-backend` from 0.22.9 to 0.24.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-backend)

Updates `@backstage/plugin-auth-node` from 0.4.17 to 0.5.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-node)

Updates `@backstage/plugin-catalog-backend` from 1.26.0 to 1.30.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.30.0/plugins/catalog-backend)

Updates `@backstage/plugin-catalog-backend-module-github` from 0.6.5 to 0.7.9
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-github/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-backend-module-github)

Updates `@backstage/plugin-catalog-backend-module-gitlab` from 0.3.21 to 0.6.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-gitlab/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-backend-module-gitlab)

Updates `@backstage/plugin-catalog-backend-module-ldap` from 0.7.0 to 0.11.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-ldap/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.11.1/plugins/catalog-backend-module-ldap)

Updates `@backstage/plugin-catalog-backend-module-openapi` from 0.1.40 to 0.2.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-openapi/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-backend-module-openapi)

Updates `@backstage/plugin-permission-common` from 0.8.1 to 0.8.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-common)

Updates `@backstage/plugin-permission-node` from 0.8.3 to 0.8.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-node)

Updates `@backstage/plugin-proxy-backend` from 0.5.3 to 0.5.10
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/proxy-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/proxy-backend)

Updates `@backstage/plugin-scaffolder-backend` from 1.23.0 to 1.29.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/scaffolder-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.29.0/plugins/scaffolder-backend)

Updates `@backstage/plugin-search-backend` from 1.5.14 to 1.8.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.8.1/plugins/search-backend)

Updates `@backstage/plugin-search-backend-module-pg` from 0.5.32 to 0.5.40
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-pg/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-pg)

Updates `@backstage/plugin-search-backend-node` from 1.2.27 to 1.3.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-node)

Updates `@backstage/plugin-techdocs-backend` from 1.10.13 to 1.11.5
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/techdocs-backend)

Updates `@immobiliarelabs/backstage-plugin-gitlab-backend` from 6.6.0 to 6.8.0
- [Release notes](https://github.com/immobiliare/backstage-plugin-gitlab/releases)
- [Changelog](https://github.com/immobiliare/backstage-plugin-gitlab/blob/main/CHANGELOG.md)
- [Commits](immobiliare/backstage-plugin-gitlab@v6.6.0...v6.8.0)

Updates `better-sqlite3` from 11.1.2 to 11.8.1
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v11.1.2...v11.8.1)

Updates `dockerode` from 4.0.2 to 4.0.4
- [Release notes](https://github.com/apocas/dockerode/releases)
- [Commits](apocas/dockerode@v4.0.2...v4.0.4)

Updates `express` from 4.20.0 to 4.21.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.2/History.md)
- [Commits](expressjs/express@4.20.0...4.21.2)

Updates `pg` from 8.12.0 to 8.13.1
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.13.1/packages/pg)

Updates `winston` from 3.13.1 to 3.17.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.13.1...v3.17.0)

Updates `@types/dockerode` from 3.3.31 to 3.3.34
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dockerode)

Updates `@types/express-serve-static-core` from 5.0.1 to 5.0.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express-serve-static-core)

---
updated-dependencies:
- dependency-name: "@backstage/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: lerna
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/app-defaults"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/catalog-model"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/core-app-api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-components"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-plugin-api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/integration-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-api-docs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-common"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-graph"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-import"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-home"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-org"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-scaffolder"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs-module-addons-contrib"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs-react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-user-settings"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/theme"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@immobiliarelabs/backstage-plugin-gitlab"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@remix-run/router"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: react-use
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/test-utils"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: start-server-and-test
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/backend-common"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-tasks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/catalog-client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/config"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/integration"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-backend"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-github"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-gitlab"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-ldap"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-openapi"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-common"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-proxy-backend"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-scaffolder-backend"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-pg"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs-backend"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@immobiliarelabs/backstage-plugin-gitlab-backend"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: better-sqlite3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: dockerode
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/dockerode"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/express-serve-static-core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: 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 Feb 1, 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