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): update all non-major dependencies #974

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 31, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular ^17.3.13 -> ^17.3.14 age adoption passing confidence
@angular/cli ^17.3.13 -> ^17.3.14 age adoption passing confidence
@tanstack/angular-query-experimental (source) 5.69.1 -> 5.71.0 age adoption passing confidence
@tanstack/react-query (source) ^5.69.0 -> ^5.71.0 age adoption passing confidence
@tanstack/svelte-query (source) ^5.69.0 -> ^5.71.0 age adoption passing confidence
@tanstack/vue-query (source) ^5.69.0 -> ^5.71.0 age adoption passing confidence
@types/react (source) ^18.3.19 -> ^18.3.20 age adoption passing confidence
knip (source) ^5.46.0 -> ^5.46.3 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
vite (source) ^5.4.14 -> ^5.4.15 age adoption passing confidence

Release Notes

angular/angular-cli (@​angular-devkit/build-angular)

v17.3.14

Compare Source

@​angular-devkit/build-angular
Commit Type Description
cb8f859f1 fix update vite to 5.4.15
TanStack/query (@​tanstack/angular-query-experimental)

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

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

v5.71.0

Compare Source

v5.70.0

Compare Source

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

Changes

Feat

Packages

v5.69.3

Compare Source

Version 5.69.3 - 3/28/25, 10:53 AM

Changes
Refactor
Test
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
webpro-nl/knip (knip)

v5.46.3

Compare Source

v5.46.2

Compare Source

v5.46.1

Compare Source

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
      [email protected]: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to [email protected], 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
      '[email protected]': 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.
vitejs/vite (vite)

v5.4.15

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

changeset-bot bot commented Mar 31, 2025

⚠️ No Changeset found

Latest commit: 28c552c

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

Copy link

nx-cloud bot commented Mar 31, 2025

View your CI Pipeline Execution ↗ for commit 28c552c.

Command Status Duration Result
nx affected --targets=test:sherif,test:knip,tes... ✅ Succeeded 2m 28s View ↗
nx run-many --target=build --exclude=examples/** ✅ Succeeded 18s View ↗

☁️ Nx Cloud last updated this comment at 2025-03-31 01:42:52 UTC

Copy link

pkg-pr-new bot commented Mar 31, 2025

Open in Stackblitz

More templates

@tanstack/angular-virtual

npm i https://pkg.pr.new/@tanstack/angular-virtual@974

@tanstack/lit-virtual

npm i https://pkg.pr.new/@tanstack/lit-virtual@974

@tanstack/react-virtual

npm i https://pkg.pr.new/@tanstack/react-virtual@974

@tanstack/solid-virtual

npm i https://pkg.pr.new/@tanstack/solid-virtual@974

@tanstack/svelte-virtual

npm i https://pkg.pr.new/@tanstack/svelte-virtual@974

@tanstack/vue-virtual

npm i https://pkg.pr.new/@tanstack/vue-virtual@974

@tanstack/virtual-core

npm i https://pkg.pr.new/@tanstack/virtual-core@974

commit: 28c552c

@renovate renovate bot merged commit b143776 into main Mar 31, 2025
4 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 31, 2025 05:37
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