module-builder icon indicating copy to clipboard operation
module-builder copied to clipboard

chore(deps): update all non-major dependencies

Open renovate[bot] opened this issue 9 months ago • 1 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^22.13.10 -> ^22.13.14 age adoption passing confidence
eslint (source) ^9.22.0 -> ^9.23.0 age adoption passing confidence
knip (source) ^5.46.0 -> ^5.46.2 age adoption passing confidence
pnpm (source) 10.6.5 -> 10.7.0 age adoption passing confidence
tinyexec ^1.0.0 -> ^1.0.1 age adoption passing confidence

Release Notes

eslint/eslint (eslint)

v9.23.0

Compare Source

webpro-nl/knip (knip)

v5.46.2

Compare Source

v5.46.1

Compare Source

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.
tinylibs/tinyexec (tinyexec)

v1.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/tinylibs/tinyexec/compare/1.0.0...1.0.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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[bot] avatar Mar 21 '25 14:03 renovate[bot]

@pi0 Would be nice to have these chore fixed and merged and a new release :)

thomashohn avatar Mar 27 '25 14:03 thomashohn

@thomashohn the new release is not pending on a renovate PR. you can see our roadmap here: https://github.com/nuxt/module-builder/issues/449

danielroe avatar Mar 28 '25 20:03 danielroe