Skip to content

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

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

Merged
merged 1 commit into from
Jul 13, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@types/node (source) devDependencies patch 24.0.10 -> 24.0.13 age adoption passing confidence
esbuild devDependencies patch 0.25.5 -> 0.25.6 age adoption passing confidence
oxc-minify (source) devDependencies minor ^0.75.0 -> ^0.77.0 age adoption passing confidence
oxlint (source) devDependencies minor 1.5.0 -> 1.6.0 age adoption passing confidence
pnpm (source) packageManager minor 10.12.4 -> 10.13.1 age adoption passing confidence
vitepress (source) devDependencies patch v2.0.0-alpha.7 -> 2.0.0-alpha.8 age adoption passing confidence

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


Release Notes

evanw/esbuild (esbuild)

v0.25.6

Compare Source

  • Fix a memory leak when cancel() is used on a build context (#​4231)

    Calling rebuild() followed by cancel() in rapid succession could previously leak memory. The bundler uses a producer/consumer model internally, and the resource leak was caused by the consumer being termianted while there were still remaining unreceived results from a producer. To avoid the leak, the consumer now waits for all producers to finish before terminating.

  • Support empty :is() and :where() syntax in CSS (#​4232)

    Previously using these selectors with esbuild would generate a warning. That warning has been removed in this release for these cases.

  • Improve tree-shaking of try statements in dead code (#​4224)

    With this release, esbuild will now remove certain try statements if esbuild considers them to be within dead code (i.e. code that is known to not ever be evaluated). For example:

    // Original code
    return 'foo'
    try { return 'bar' } catch {}
    
    // Old output (with --minify)
    return"foo";try{return"bar"}catch{}
    
    // New output (with --minify)
    return"foo";
  • Consider negated bigints to have no side effects

    While esbuild currently considers 1, -1, and 1n to all have no side effects, it didn't previously consider -1n to have no side effects. This is because esbuild does constant folding with numbers but not bigints. However, it meant that unused negative bigint constants were not tree-shaken. With this release, esbuild will now consider these expressions to also be side-effect free:

    // Original code
    let a = 1, b = -1, c = 1n, d = -1n
    
    // Old output (with --bundle --minify)
    (()=>{var n=-1n;})();
    
    // New output (with --bundle --minify)
    (()=>{})();
  • Support a configurable delay in watch mode before rebuilding (#​3476, #​4178)

    The watch() API now takes a delay option that lets you add a delay (in milliseconds) before rebuilding when a change is detected in watch mode. If you use a tool that regenerates multiple source files very slowly, this should make it more likely that esbuild's watch mode won't generate a broken intermediate build before the successful final build. This option is also available via the CLI using the --watch-delay= flag.

    This should also help avoid confusion about the watch() API's options argument. It was previously empty to allow for future API expansion, which caused some people to think that the documentation was missing. It's no longer empty now that the watch() API has an option.

  • Allow mixed array for entryPoints API option (#​4223)

    The TypeScript type definitions now allow you to pass a mixed array of both string literals and object literals to the entryPoints API option, such as ['foo.js', { out: 'lib', in: 'bar.js' }]. This was always possible to do in JavaScript but the TypeScript type definitions were previously too restrictive.

  • Update Go from 1.23.8 to 1.23.10 (#​4204, #​4207)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4673 and CVE-2025-22874) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

  • Experimental support for esbuild on OpenHarmony (#​4212)

    With this release, esbuild now publishes the @esbuild/openharmony-arm64 npm package for OpenHarmony. It contains a WebAssembly binary instead of a native binary because Go doesn't currently support OpenHarmony. Node does support it, however, so in theory esbuild should now work on OpenHarmony through WebAssembly.

    This change was contributed by @​hqzing.

oxc-project/oxc (oxc-minify)

v0.77.0

🚜 Refactor

v0.76.0

🚀 Features
oxc-project/oxc (oxlint)

v1.6.0: oxlint v1.6.0

Compare Source

[1.6.0] - 2025-07-07

🐛 Bug Fixes
  • 3f0e03e linter: Fix inconsistent behavior in no-duplicate-imports rule (#​12051) (yefan)
  • 6dbacea linter/no-barrel-file: No diagnostic tag when some modules arent resolved (#​12049) (camc314)
  • dd6b1ee linter/extensions: False positives with non configured extensions (#​11872) (camc314)
  • 5851d2c oxlint: Always follow symlinks; remove cli flag --symlinks (#​12048) (Boshen)
  • eb1c596 linter/consistent-index-object-style: Fix default impl for rule config (#​12031) (camc314)
🚜 Refactor
📚 Documentation
  • 85ec382 linter: Add good/bad example for nextjs/no-page-custom-font (#​12092) (Sysix)
  • 9240342 linter: Add docs for nextjs/no-script-component-in-head (#​12091) (Sysix)
  • 0878414 linter: Add good/bad example for nextjs/no-head-import-in-document (#​12061) (Sysix)
  • 222bc73 linter: Add bad/good example for nextjs/no-head-element (#​12059) (Sysix)
  • a7e9f50 linter: Add good/bad example for nextjs/no-title-in-document-head (#​12065) (Sysix)
  • 51c6818 linter: Add good/bad example for nextjs/no-document-import-in-pages (#​12064) (Sysix)
  • c7b38f9 consistent-indexed-object-style: Clarify docs (#​12019) (Luca Ban)
⚡ Performance
  • 04e2de5 linter: Avoid iteration when checking import is AllButDefault or SideEffect in eslint/no-duplicate-imports (#​12093) (Sysix)
  • e2a7d6a linter: Check filepath before running nextjs/no-head-element (#​12062) (Sysix)
  • 00a9fd9 linter: Check for filename before running nextjs/no-head-import-in-document rule (#​12060) (Sysix)
  • 62a3ce0 linter: Replace unicode-segmentation crate with icu_segmenter (#​12063) (Sysix)
pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #​9702.

  • pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #​9694.
  • Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #​9628.
  • Sort keys in pnpm-workspace.yaml with deep #​9701.
  • The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #​9338.
  • Replaced shell-quote with shlex for quoting command arguments #​9381.
vuejs/vitepress (vitepress)

v2.0.0-alpha.8

Compare Source

Bug Fixes
  • adjust glob logic to always resolve glob relative to base (5d41785), closes #​4822
  • build: ignore escaped : when splitting selector in postcssIsolateStyles (#​4830) (a629b03)
  • font preload not being generated in rolldown-vite (ed387e8)
  • theme: remove extra slash when concatenating base with sidebar links (c8fc80e)

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.

@renovate renovate bot enabled auto-merge (squash) July 13, 2025 16:28
Copy link

netlify bot commented Jul 13, 2025

Deploy Preview for oxc-project ready!

Name Link
🔨 Latest commit 36f6621
🔍 Latest deploy log https://app.netlify.com/projects/oxc-project/deploys/6873de939b9773000833836c
😎 Deploy Preview https://deploy-preview-420--oxc-project.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot merged commit 1f8db1d into main Jul 13, 2025
9 checks passed
@renovate renovate bot deleted the renovate/npm-packages branch July 13, 2025 16:29
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