Skip to content

chore(deps): update all non-major dependencies#347

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
Mar 9, 2026
Merged

chore(deps): update all non-major dependencies#347
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 9, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
@changesets/cli (source) ^2.29.8^2.30.0 age confidence pnpm.catalog.default minor
@commitlint/parse (source) ^20.4.1^20.4.3 age confidence pnpm.catalog.default patch
@stylistic/eslint-plugin (source) ^5.9.0^5.10.0 age confidence pnpm.catalog.default minor
actions/setup-node v6.2.0v6.3.0 age confidence action minor
eslint (source) ^10.0.2^10.0.3 age confidence pnpm.catalog.default patch
nx (source) 22.5.322.5.4 age confidence pnpm.catalog.default patch
pnpm (source) 10.30.310.31.0 age confidence packageManager minor
tsdown (source) ^0.20.3^0.21.0 age confidence pnpm.catalog.default minor

Release Notes

changesets/changesets (@​changesets/cli)

v2.30.0

Compare Source

conventional-changelog/commitlint (@​commitlint/parse)

v20.4.3

Compare Source

Bug Fixes
eslint-stylistic/eslint-stylistic (@​stylistic/eslint-plugin)

v5.10.0

Compare Source

Features
  • list-style: allow 'off' in overrides (#​1144) (c43bd4b)
  • padding-line-between-statements: introduce lineMode for selector matcher (#​1143) (1ebd6d8)
Build Related
Performance
actions/setup-node (actions/setup-node)

v6.3.0

Compare Source

What's Changed

Enhancements:

When using node-version-file: package.json, setup-node now prefers devEngines.runtime over engines.node.

Dependency updates:
Bug fixes:

New Contributors

Full Changelog: actions/setup-node@v6...v6.3.0

eslint/eslint (eslint)

v10.0.3

Compare Source

nrwl/nx (nx)

v22.5.4

Compare Source

22.5.4 (2026-03-04)

🚀 Features
  • core: add .nx/polygraph to gitignore in migration and caia (#​34659)
🩹 Fixes
  • angular-rspack: use relative path for postcss-cli-resources output (#​34681, #​34092)
  • core: support canonical SSH URLs when extracting GitHub user/repo slug during nx release (#​31684, #​31682)
  • core: update sourceRespository description of nx import (#​34606)
  • core: update minimatch to 10.2.4 (#​34660)
  • core: skip writing deps cache if already up-to-date (#​34582)
  • core: resolve false positive loop detection when running with Bun (#​34640, #​0, #​1, #​2, #​3, #​4, #​5, #​6, #​33997)
  • core: fall back to invoking PM in detection (#​34691)
  • core: restore CNW user flow to match v22.1.3 (#​34671)
  • gradle: tee batch runner output to stderr for terminal display (#​34630)
  • maven: synchronize batch runner invoke() to prevent concurrent access (#​34600)
  • misc: boost CLI command reference search ranking (#​34625)
  • misc: fix broken nx.dev redirects and remove legacy redirect-rules files (#​34673)
  • misc: use pathToFileURL for cross-platform path handling in postcss-cli-resources (#​34676, #​33052)
  • misc: exclude .netlify paths from Framer proxy edge function (1ce5e91f5e)
  • repo: reset package.json files after local release (#​34648)
  • repo: remove redundant inputs override for build-base target (#​34649)
  • vitest: respect reporters from target options in vitest executor (#​34663, #​34495)
❤️ Thank You
pnpm/pnpm (pnpm)

v10.31.0

Compare Source

rolldown/tsdown (tsdown)

v0.21.0

Compare Source

v0.21.0 - Notable Changes

Breaking Changes
Dependency options renamed to deps namespace

The dependency-related options have been moved under a new deps namespace with clearer names:

  • external -> deps.neverBundle
  • noExternal -> deps.alwaysBundle
  • inlineOnly -> deps.onlyAllowBundle
  • skipNodeModulesBundle -> deps.skipNodeModulesBundle

Before:

export default defineConfig({
  external: ['vue'],
  noExternal: ['lodash'],
})

After:

export default defineConfig({
  deps: {
    neverBundle: ['vue'],
    alwaysBundle: ['lodash'],
  },
})

The old options still work but are deprecated and will emit warnings.

failOnWarn default changed from 'ci-only' to false

If you relied on the previous behavior where warnings would fail the build in CI environments, you now need to explicitly set failOnWarn: true or failOnWarn: 'ci-only' in your config.

Node.js < 22.18.0 deprecated

tsdown now emits a deprecation warning when running on Node.js versions below 22.18.0. Plan to upgrade your Node.js version accordingly.

New Features
Experimental Node.js SEA executable bundling (exe)

tsdown can now bundle your TypeScript project into a standalone executable using Node.js Single Executable Applications (SEA). A new @tsdown/exe package provides cross-platform executable building support. See the exe documentation for details.

export default defineConfig({
  exe: true, // or { useCodeCache: true, useSnapshot: true }
})
Full CSS pipeline with @tsdown/css

CSS handling has been reimplemented as a native Rolldown plugin and extracted into the @tsdown/css package, providing a complete CSS pipeline with Lightning CSS and PostCSS support via the css.transformer option. See the CSS documentation for details.

inlinedDependencies field in package.json

When using the exports feature, tsdown now auto-generates an inlinedDependencies field in your package.json, listing dependencies that are bundled into the output.

Object option for customExports

customExports now supports an object format for more fine-grained control over the generated exports field.

Migration Guide
  1. Update dependency options: Rename external -> deps.neverBundle, noExternal -> deps.alwaysBundle, etc.
  2. Check failOnWarn: If you need warnings to fail the build in CI, explicitly set failOnWarn: 'ci-only' or failOnWarn: true.
  3. Upgrade Node.js: Ensure you're running Node.js >= 22.18.0 to avoid deprecation warnings.
Links

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 9, 2026
@changeset-bot
Copy link

changeset-bot bot commented Mar 9, 2026

⚠️ No Changeset found

Latest commit: 554a1e8

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@nx-cloud
Copy link

nx-cloud bot commented Mar 9, 2026

View your CI Pipeline Execution ↗ for commit 554a1e8

Command Status Duration Result
nx affected --targets=test:sherif,test:docs,tes... ✅ Succeeded 24s View ↗
nx run-many --target=build ✅ Succeeded 8s View ↗

☁️ Nx Cloud last updated this comment at 2026-03-09 01:49:21 UTC

@pkg-pr-new
Copy link

pkg-pr-new bot commented Mar 9, 2026

npm i https://pkg.pr.new/@tanstack/eslint-config@347
npm i https://pkg.pr.new/@tanstack/publish-config@347
npm i https://pkg.pr.new/@tanstack/typedoc-config@347
npm i https://pkg.pr.new/@tanstack/vite-config@347

commit: 7e7e9ae

@renovate renovate bot merged commit c759665 into main Mar 9, 2026
4 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 9, 2026 05:30
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants