Skip to content

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

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 31, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tanstack/query-core (source) ^5.69.0 -> ^5.71.0 age adoption passing confidence
@types/semver (source) ^7.5.8 -> ^7.7.0 age adoption passing confidence
eslint-plugin-import-x ^4.9.1 -> ^4.9.4 age adoption passing confidence
eslint-plugin-n ^17.16.2 -> ^17.17.0 age adoption passing confidence
nx (source) ^20.6.2 -> ^20.6.4 age adoption passing confidence
pnpm (source) 10.6.5 -> 10.7.0 age adoption passing confidence
react (source) ^19.0.0 -> ^19.1.0 age adoption passing confidence
react-dom (source) ^19.0.0 -> ^19.1.0 age adoption passing confidence
type-fest ^4.37.0 -> ^4.38.0 age adoption passing confidence
typescript-eslint (source) ^8.27.0 -> ^8.28.0 age adoption passing confidence
vite (source) ^6.2.2 -> ^6.2.3 age adoption passing confidence

Release Notes

TanStack/query (@​tanstack/query-core)

v5.71.0

Compare Source

Version 5.71.0 - 3/30/25, 12:53 PM

Changes

Feat
Test
  • query-core: fix mutationFn to use Promise.resolve to match TypeScript requirements (#​8875) (1fa539a) by MINSEONG KIM
Ci
  • apply automated fixes (747eea8) by autofix-ci[bot]
Docs
  • react-community: fixed typescript typo (#​8879) (62b8720) by Clarence
  • queryClient: JSDoc hint for queryClient.getQueryData (#​8862) (e5ef275) by Tyler
Other

Packages

v5.70.0

Compare Source

Version 5.70.0 - 3/28/25, 3:06 PM

Changes

Feat

Packages

v5.69.2

Compare Source

Version 5.69.2 - 3/28/25, 8:20 AM

Changes

Fix
  • core: make sure that calling setOptions will always notifyListeners (#​8771) (1b54538) by Dominik Dorfmeister
Chore
  • deps: update dependency vite to v5.4.15 [security] (#​8856) (f45205f) by renovate[bot]
Docs

Packages

un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.9.4

Compare Source

Patch Changes

v4.9.3

Compare Source

Patch Changes
  • #​263 c0046a9 Thanks @​JounQin! - chore: migrate to rebranding unrs-resolver with new targets supported:

    • i686-pc-windows-msvc
    • armv7-unknown-linux-musleabihf
    • powerpc64le-unknown-linux-gnu
    • s390x-unknown-linux-gnu

v4.9.2

Compare Source

Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.17.0

Compare Source

🌟 Features
  • allow-modules: include virtual: in the modules pattern (#​425) (a109793)
  • node-builtin: Add support for import.meta properties (#​420) (76fc219)
🩹 Fixes
nrwl/nx (nx)

v20.6.4

Compare Source

20.6.4 (2025-03-25)
🩹 Fixes
  • misc: override customConditions when using an incompatible module resolution (#​30477)
❤️ Thank You

v20.6.3

Compare Source

20.6.3 (2025-03-25)
🚀 Features
  • bundling: add buildLibsFromSource option to @​nx/rollup:rollup executor (#​30417)
  • misc: set a development conditional export for buildable libraries when using the ts solution setup (#​30451)
  • misc: add --useProjectJson flag to CNW (#​30475)
  • module-federation: add ssr support to rspack crystal plugin (#​30437)
  • repo: replace explicit matrix with dynamic parsed from json (#​30120)
🩹 Fixes
  • core: legacy cache users should get artifacts when remote cache is hit (#​30442)
  • core: pass the project graph into the batch instead of recreating (#​30455)
  • core: fix local registry not being considered when using bun (#​30459)
  • devkit: formatFiles should check for root prettier config before using prettier (#​30426)
  • gradle: build nx graph for gradle projects regardless of build gradle file location (#​29783, #​29802)
  • nx-dev: sidebar should not always show angular-rs* links (#​30448)
  • react: only add release config for publishable librarires (#​30474)
  • react: update react router logic with selected bundler (#​30399)
❤️ Thank You
pnpm/pnpm (pnpm)

v10.7.0

Compare Source

Minor Changes
  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #​9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      foo@2.1.0: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to foo@2.1.0, patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING]
    The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      'foo@2.2.0-2.8.0': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #​9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes
  • Remove dependency paths from audit output to prevent out-of-memory errors #​9280.
facebook/react (react)

v19.1.0

Compare Source

facebook/react (react-dom)

v19.1.0

Compare Source

sindresorhus/type-fest (type-fest)

v4.38.0

Compare Source

  • AsyncReturnType: Add support for PromiseLike (#​1082) 72ccde9
  • DelimiterCase / SnakeCase / ScreamingSnakeCase / KebabCase: Fix instantiations containing punctuations (#​1080) 063e28d
  • DelimiterCase: Pass Options generic to all related types (#​1078) 1974944
  • CamelCasedPropertiesDeep: Make nested array objects respect the options (#​1077) c11c9ca

typescript-eslint/typescript-eslint (typescript-eslint)

v8.28.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/vite (vite)

v6.2.3

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - "* 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 31, 2025
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 31, 2025

⚠️ No Changeset found

Latest commit: e2c443b

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
Copy Markdown

nx-cloud Bot commented Mar 31, 2025

View your CI Pipeline Execution ↗ for commit e2c443b.

Command Status Duration Result
nx affected --targets=test:eslint,test:types,te... ✅ Succeeded 40s View ↗
nx run-many --target=build ✅ Succeeded 11s View ↗

☁️ Nx Cloud last updated this comment at 2025-03-31 03:33:55 UTC

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Mar 31, 2025

@tanstack/config

npm i https://pkg.pr.new/@tanstack/config@235

@tanstack/eslint-config

npm i https://pkg.pr.new/@tanstack/eslint-config@235

@tanstack/publish-config

npm i https://pkg.pr.new/@tanstack/publish-config@235

@tanstack/typedoc-config

npm i https://pkg.pr.new/@tanstack/typedoc-config@235

@tanstack/vite-config

npm i https://pkg.pr.new/@tanstack/vite-config@235

commit: e2c443b

@renovate renovate Bot merged commit 20fd5c9 into main Mar 31, 2025
4 checks passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch March 31, 2025 06:31
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