Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-12-09 15:00:09 +00:00
parent 081b310d26
commit e08f48a9b5
281 changed files with 3971 additions and 140 deletions
+33
View File
@@ -1,5 +1,38 @@
# @backstage/cli
## 0.35.0-next.2
### Minor Changes
- f8dff94: Switched the default module resolution to `bundler` and the `module` setting to `ES2020`.
You may need to bump some dependencies as part of this change and fix imports in code. The most common source of this is that type checking will now consider the `exports` field in `package.json` when resolving imports. This in turn can break older versions of packages that had incompatible `exports` fields. Generally these issues will have already been fixed in the upstream packages.
You might be tempted to use `--skipLibCheck` to hide issues due to this change, but it will weaken the type safety of your project. If you run into a large number of issues and want to keep the old behavior, you can reset the `moduleResolution` and `module` settings your own `tsconfig.json` file to `node` and `ESNext` respectively. But keep in mind that the `node` option will be removed in future versions of TypeScript.
A future version of Backstage will make these new settings mandatory, as we move to rely on the `exports` field for type resolution in packages, rather than the `typesVersions` field.
### Patch Changes
- de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
- 1226647: Updated dependency `esbuild` to `^0.27.0`.
- f89a074: Updated dependency `@pmmmwh/react-refresh-webpack-plugin` to `^0.6.0`.
- 2b81751: Updated dependency `webpack` to `~5.103.0`.
- fafd9e1: Fixed internal usage of `yargs`.
- 2bae83a: Switched ECMAScript version to ES2023.
- 2bae83a: Bumped dev dependencies `@types/node`
- Updated dependencies
- @backstage/integration@1.18.3-next.1
- @backstage/config-loader@1.10.7-next.1
- @backstage/cli-common@0.1.16-next.2
- @backstage/catalog-model@1.7.6
- @backstage/cli-node@0.2.16-next.1
- @backstage/config@1.3.6
- @backstage/errors@1.2.7
- @backstage/eslint-plugin@0.2.0
- @backstage/release-manifests@0.0.13
- @backstage/types@1.2.2
## 0.34.6-next.1
### Patch Changes