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): lock file maintenance npm packages #85

Merged
merged 1 commit into from
Mar 30, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 30, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@antfu/eslint-config devDependencies minor 4.10.1 -> 4.11.0 age adoption passing confidence
@types/estree (source) devDependencies patch 1.0.6 -> 1.0.7 age adoption passing confidence
@types/node (source) devDependencies patch 22.13.10 -> 22.13.14 age adoption passing confidence
eslint (source) devDependencies minor 9.22.0 -> 9.23.0 age adoption passing confidence
knip (source) devDependencies patch 5.46.0 -> 5.46.3 age adoption passing confidence
oxc-parser (source) peerDependencies minor ^0.39.0 || ^0.40.0 || ^0.41.0 || ^0.42.0 || ^0.43.0 || ^0.44.0 || ^0.45.0 || ^0.47.0 || ^0.48.0 || ^0.49.0 || ^0.51.0 || ^0.52.0 || ^0.56.0 || ^0.58.0 -> ^0.39.0 || ^0.40.0 || ^0.41.0 || ^0.42.0 || ^0.43.0 || ^0.44.0 || ^0.45.0 || ^0.47.0 || ^0.48.0 || ^0.49.0 || ^0.51.0 || ^0.52.0 || ^0.56.0 || ^0.58.0 || ^0.61.0 age adoption passing confidence
oxc-parser (source) devDependencies minor 0.58.1 -> 0.61.2 age adoption passing confidence
pnpm (source) packageManager minor 10.6.4 -> 10.7.0 age adoption passing confidence
simple-git-hooks devDependencies minor 2.11.1 -> 2.12.1 age adoption passing confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v4.11.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.10.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.23.0

Compare Source

webpro-nl/knip (knip)

v5.46.3

Compare Source

v5.46.2

Compare Source

v5.46.1

Compare Source

oxc-project/oxc (oxc-parser)

v0.61.2

Bug Fixes
  • 89cb368 ast/estree: Add decorators field to AssignmentPattern (#​9967) (therewillbecode)
  • 4980b73 ast/estree: Add missing estree fields to TSIndexSignature and TSIndexSignatureName (#​9968) (therewillbecode)
  • b9f80b9 ast/estree: Fix TSFunctionType and TSCallSignatureDeclaration (#​9959) (therewillbecode)
  • 0cdeedd ast/estree: Fix ArrayPattern (#​9956) (therewillbecode)
  • 6fcd342 ast/estree: Fix FormalParameter (#​9954) (therewillbecode)
  • 9d1035e ast/estree: Fix TS type def for TSThisParameter (#​9942) (overlookmotel)
  • 8228b74 ast/estree: Fix Function.this_param (#​9913) (hi-ogawa)
  • d69cc34 ast/estree: Fix BindingIdentifier (#​9822) (hi-ogawa)
  • 5631ebd ast/extree: Fix TSModuleDeclaration.global (#​9941) (overlookmotel)
Refactor

v0.61.0

  • c631291 parser: [BREAKING] Parse TSImportAttributes as ObjectExpression (#​9902) (Boshen)
Features
Bug Fixes
  • 28a2ed3 estree/ast: Fix IdentifierName and IdentifierReference (#​9863) (hi-ogawa)
Performance
  • 5f97f28 ast/estree: Speed up raw deser for JSXElement (#​9895) (overlookmotel)
Documentation
  • 590a258 napi/parser: Add stackblitz link for wasm build (Boshen)
Refactor
Testing

v0.60.0

Features
Performance
  • 2d63704 ast: Re-order VariableDeclarationKind variants (#​9853) (overlookmotel)
Refactor
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.

v10.6.5

Compare Source

toplenboren/simple-git-hooks (simple-git-hooks)

v2.12.1

Compare Source

What's Changed

Full Changelog: toplenboren/simple-git-hooks@2.11.1...2.12.1


Configuration

📅 Schedule: Branch creation - "before 8am on monday" in timezone Asia/Shanghai, 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 merged commit 4cc216c into main Mar 30, 2025
5 checks passed
@renovate renovate bot deleted the renovate/npm-packages branch March 30, 2025 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants