Skip to content

chore(deps): lock file maintenance npm packages#164

Merged
Brooooooklyn merged 1 commit intomainfrom
renovate/npm-packages
Jun 9, 2025
Merged

chore(deps): lock file maintenance npm packages#164
Brooooooklyn merged 1 commit intomainfrom
renovate/npm-packages

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 8, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@napi-rs/wasm-runtime (source) devDependencies patch 0.2.10 -> 0.2.11 age adoption passing confidence
@types/express (source) devDependencies patch 5.0.2 -> 5.0.3 age adoption passing confidence
ava (source) devDependencies minor 6.3.0 -> 6.4.0 age adoption passing confidence
oxlint (source) devDependencies minor ^0.17.0 -> ^0.18.0 age adoption passing confidence
pnpm (source) packageManager minor 10.11.0 -> 10.12.1 age adoption passing confidence
rolldown (source) devDependencies patch 1.0.0-beta.12 -> 1.0.0-beta.13 age adoption passing confidence

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


Release Notes

napi-rs/napi-rs (@​napi-rs/wasm-runtime)

v0.2.11

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/napi-rs/napi-rs/compare/[@​napi-rs/cli](https://redirect.github.com/napi-rs/cli)[@​3](https://redirect.github.com/3).0.0-alpha.87...[@​napi-rs/wasm-runtime](https://redirect.github.com/napi-rs/wasm-runtime)[@​0](https://redirect.github.com/0).2.11

avajs/ava (ava)

v6.4.0

Compare Source

What's Changed

Interactive watch mode filters

@​mmulet did fantastic work to spearhead interactive watch mode filters. You can now filter test files by glob patterns, and tests by matching their titles. It's just like you already could from the CLI itself, but now without exiting AVA 🚀 https://github.com/avajs/ava/pull/3372

As part of this work we've removed the "sticky" .only() behavior https://github.com/avajs/ava/pull/3381

Examples

We've been remiss in merging https://github.com/avajs/ava/pull/3335 which updates the examples to use AVA 6. It's done now, examples are up to date and it's all due to @​tommy-mitchell 👏

New Contributors

Full Changelog: avajs/ava@v6.3.0...v6.4.0

oxc-project/oxc (oxlint)

v0.18.0: oxlint v0.18.0

Compare Source

[0.18.0] - 2025-06-06

  • bd9dd88 linter: [BREAKING] Add more info to json reporter (#​11524) (camc314)
Features
  • 825d40c linter: Fix casing in unicorn/no-useless-promise-resolve-reject (#​11528) (camc314)
  • 2faee3d linter: Fix grammer in react/exhaustive-deps (#​11527) (camc314)
Bug Fixes
  • 1a71d7c linter: Misplaced backtick in unicorn/no-array-for-each diagnostic (#​11529) (camc314)
  • 7430b14 linter: Grammer in jest/valid-expect diagnostic (#​11522) (camc314)
  • b92ac41 linter: Grammer in eslint/no-redeclare diagnostic (#​11521) (camc314)
  • 17883e3 linter: Improve eslint/no-unsafe-negation diagnostic (#​11520) (camc314)
  • 8c89937 linter: Improve eslint/no-shadow-restricted-names diagnostic (#​11519) (camc314)
  • 3f0d889 linter: Add missing article to oxc/bad-array-method-on-arguments diagnostic (#​11518) (camc314)
  • cf0c24c linter: Improve message in react/prefer-es6-class diagnostic (#​11516) (camc314)
  • 91855df linter: Fix message in react/rules-of-hooks diagnostic (#​11515) (camc314)
  • b272194 linter: Misplaced backtick in jest/no-conditional-expect diagnostic (#​11514) (camc314)
  • 3403303 linter: Misplaced backtick in unicorn/prefer-dom-node-dataset diagnostic (#​11513) (camc314)
  • d5ca872 linter: Misplaced backtick in eslint/radix diagnostic (#​11512) (camc314)
  • 2dcf8be linter: Improve diagnostic message when function name is referenced (#​11509) (camc314)
  • 0de0c9c linter: Improve diagnostic message for no-unsafe-declaration-merging (#​11508) (camc314)
  • 0946dac linter: Correctly inherit categories when plugins are enabled (#​11353) (Cameron)
  • 510c1c6 linter: Add missing allowArrowFunctions option for eslint/func-style (#​11455) (yefan)
  • c77787c linter: Improve eslint/no-loss-of-precision (#​11437) (magic-akari)
  • 11d4523 linter: False positive in react/exhaustive-deps (#​11438) (camc314)
  • 616b613 linter/switch-case-braces: Align the logic with unicorn (#​11405) (shulaoda)
Refactor
  • db0b099 language_server: Convert only once uri to path when creating ServerLinter (#​11503) (Sysix)
  • ccceb52 language_server: Simplify workspace/didChangeConfiguration call (#​11462) (Sysix)
  • 0fdc51e linter: Simplify OxlintRules::override_rules (#​11510) (camc314)
Testing
pnpm/pnpm (pnpm)

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via:

    pnpm config -g set enable-global-virtual-store true

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR: #​8190

  • The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #​9605.
  • Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed by pnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #​9598.
  • Revert #​9574 to fix a regression #​9596.

v10.11.1

Compare Source

Patch Changes
  • Fix an issue in which pnpm deploy --legacy creates unexpected directories when the root package.json has a workspace package as a peer dependency #​9550.
  • Dependencies specified via a URL that redirects will only be locked to the target if it is immutable, fixing a regression when installing from GitHub releases. (#​9531)
  • Installation should not exit with an error if strictPeerDependencies is true but all issues are ignored by peerDependencyRules #​9505.
  • Use pnpm_config_ env variables instead of npm_config_ #​9571.
  • Fix a regression (in v10.9.0) causing the --lockfile-only flag on pnpm update to produce a different pnpm-lock.yaml than an update without the flag.
  • Let pnpm deploy work in repos with overrides when inject-workspace-packages=true #​9283.
  • Fixed the problem of path loss caused by parsing URL address. Fixes a regression shipped in pnpm v10.11 via #​9502.
  • pnpm -r --silent run should not print out section #​9563.
rolldown/rolldown (rolldown)

v1.0.0-beta.13

Compare Source

🚀 Features
🐛 Bug Fixes
  • ci: disable generate_release_notes by @​Boshen
📚 Documentation
  • docs: add MAINTENANCE.md; remove rolldown.rs/contrib-guide/release by @​Boshen in #​4854
⚙️ Miscellaneous Tasks
  • add input description to prepare-release.yml by @​Boshen
  • fix prepare-release.yml by @​Boshen
  • CHANGELOG.md: ci(CHANGELOG.md): use git-cliff to generate changelogs by @​Boshen in #​4858

Configuration

📅 Schedule: Branch creation - "before 9am 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.

@Brooooooklyn Brooooooklyn merged commit c07ac73 into main Jun 9, 2025
56 checks passed
@Brooooooklyn Brooooooklyn deleted the renovate/npm-packages branch June 9, 2025 02:27
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.

1 participant