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

chore(deps): bump the backstage group with 3 updates #594

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 30, 2025

Bumps the backstage group with 3 updates: @backstage/cli, @backstage/plugin-scaffolder and @backstage/plugin-techdocs.

Updates @backstage/cli from 0.29.5 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 @backstage/plugin-scaffolder from 1.27.4 to 1.27.5

Release notes

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

v1.27.5

This release fixes an issue where the MultiEntityPicker would crash when using in the Scaffolder plugin

Changelog

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

@​backstage/plugin-scaffolder

1.28.0-next.1

Minor Changes

  • 17088d2: Updating the TaskLogStream to take up all space in a running task, and also show the last line of the log by default

Patch Changes

  • 58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.
  • Updated dependencies
    • @​backstage/core-components@​0.16.4-next.0
    • @​backstage/frontend-plugin-api@​0.9.5-next.1
    • @​backstage/integration-react@​1.2.4-next.0
    • @​backstage/core-compat-api@​0.3.6-next.1
    • @​backstage/core-plugin-api@​1.10.4-next.0
    • @​backstage/plugin-permission-react@​0.4.31-next.0
    • @​backstage/plugin-scaffolder-react@​1.14.4-next.1
    • @​backstage/plugin-catalog-react@​1.15.2-next.1
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/errors@​1.2.7
    • @​backstage/integration@​1.16.1
    • @​backstage/types@​1.2.1
    • @​backstage/plugin-catalog-common@​1.1.3
    • @​backstage/plugin-scaffolder-common@​1.5.9

1.27.5-next.0

Patch Changes

  • 3107f1f: Fixed a bug in the BitbucketRepoBranchPicker component that crashed the scaffolder
  • 3edf7e7: Add schema output return type to the makeFieldSchema function return
  • Updated dependencies
    • @​backstage/plugin-scaffolder-react@​1.14.4-next.0
    • @​backstage/frontend-plugin-api@​0.9.5-next.0
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/core-compat-api@​0.3.6-next.0
    • @​backstage/core-components@​0.16.3
    • @​backstage/core-plugin-api@​1.10.3
    • @​backstage/errors@​1.2.7
    • @​backstage/integration@​1.16.1
    • @​backstage/integration-react@​1.2.3
    • @​backstage/types@​1.2.1
    • @​backstage/plugin-catalog-common@​1.1.3
    • @​backstage/plugin-catalog-react@​1.15.2-next.0
    • @​backstage/plugin-permission-react@​0.4.30
    • @​backstage/plugin-scaffolder-common@​1.5.9
Commits

Updates @backstage/plugin-techdocs from 1.12.1 to 1.12.2

Changelog

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

@​backstage/plugin-techdocs

1.12.2-next.1

Patch Changes

  • 524f0af: Add missing route ref to the /alpha entity content extension.
  • 58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.
  • Updated dependencies
    • @​backstage/core-components@​0.16.4-next.0
    • @​backstage/frontend-plugin-api@​0.9.5-next.1
    • @​backstage/integration-react@​1.2.4-next.0
    • @​backstage/core-compat-api@​0.3.6-next.1
    • @​backstage/core-plugin-api@​1.10.4-next.0
    • @​backstage/plugin-techdocs-react@​1.2.14-next.0
    • @​backstage/plugin-catalog-react@​1.15.2-next.1
    • @​backstage/plugin-search-react@​1.8.6-next.1
    • @​backstage/plugin-auth-react@​0.1.12-next.0
    • @​backstage/theme@​0.6.4-next.0
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/integration@​1.16.1
    • @​backstage/plugin-search-common@​1.2.17
    • @​backstage/plugin-techdocs-common@​0.1.0

1.12.2-next.0

Patch Changes

  • f4be934: Changed the base URL in addLinkClickListener from window.location.origin to app.baseUrl for improved path handling. This fixes an issue where Backstage, when running on a subpath, was unable to handle non-Backstage URLs of the same origin correctly.

  • 1f40e6b: Add optional props to TechDocCustomHome to allow for more flexibility:

    import { TechDocsCustomHome } from '@backstage/plugin-techdocs';
    //...
    const options = { emptyRowsWhenPaging: false };
    const linkDestination = (entity: Entity): string | undefined => {
    return entity.metadata.annotations?.['external-docs'];
    };
    const techDocsTabsConfig = [
    {
    label: 'Recommended Documentation',
    panels: [
    {
    title: 'Golden Path',
    description: 'Documentation about standards to follow',
    panelType: 'DocsCardGrid',

... (truncated)

Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the backstage group with 3 updates: [@backstage/cli](https://github.com/backstage/backstage/tree/HEAD/packages/cli), [@backstage/plugin-scaffolder](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder) and [@backstage/plugin-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs).


Updates `@backstage/cli` from 0.29.5 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 `@backstage/plugin-scaffolder` from 1.27.4 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-techdocs` from 1.12.1 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)

---
updated-dependencies:
- dependency-name: "@backstage/cli"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backstage
- dependency-name: "@backstage/plugin-scaffolder"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backstage
- dependency-name: "@backstage/plugin-techdocs"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backstage
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 30, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 3, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 3, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/backstage-60aff45240 branch February 3, 2025 05:26
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