Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 17, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
chalk dependencies minor 5.5.0 -> 5.6.0 age adoption passing confidence
@babel/core (source) devDependencies patch 7.28.0 -> 7.28.3 age adoption passing confidence
@types/node (source) devDependencies minor 24.2.1 -> 24.3.0 age adoption passing confidence
@babel/preset-env (source) devDependencies patch 7.28.0 -> 7.28.3 age adoption passing confidence
tsx (source) devDependencies patch 4.20.3 -> 4.20.4 age adoption passing confidence
vite (source) dependencies patch 7.1.1 -> 7.1.2 age adoption passing confidence
chalk devDependencies minor 5.5.0 -> 5.6.0 age adoption passing confidence
esbuild devDependencies patch 0.25.8 -> 0.25.9 age adoption passing confidence
oxlint (source) devDependencies minor 1.11.1 -> 1.12.0 age adoption passing confidence
vitepress-plugin-group-icons devDependencies patch 1.6.2 -> 1.6.3 age adoption passing confidence
vitepress-plugin-llms devDependencies patch 1.7.2 -> 1.7.3 age adoption passing confidence

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


Release Notes

chalk/chalk (chalk)

v5.6.0

Compare Source

  • Make WezTerm terminal use true color a8f5bf7

babel/babel (@​babel/core)

v7.28.3

Compare Source

👓 Spec Compliance
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env
🐛 Bug Fix
💅 Polish
  • babel-plugin-transform-regenerator, babel-plugin-transform-runtime
📝 Documentation
🏠 Internal
🔬 Output optimization
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions
privatenumber/tsx (tsx)

v4.20.4

Compare Source

vitejs/vite (vite)

v7.1.2

Compare Source

Bug Fixes
Miscellaneous Chores
evanw/esbuild (esbuild)

v0.25.9

Compare Source

  • Better support building projects that use Yarn on Windows (#​3131, #​3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#​4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    
    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
      return fn1();
    }());
    
    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
      return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#​4257, #​4258)

    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-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

oxc-project/oxc (oxlint)

v1.12.0: oxlint v1.12.0

Compare Source

[1.12.0] - 2025-08-17

Announcing Oxlint Type-Aware Preview

🚀 Features
  • 09b597f linter: Handle help message from tsgolint (#​13143) (Boshen)
  • aecacae linter: Support ignorePatterns for nested configs (#​12210) (Sysix)
  • c661bac linter: Add eslint/prefer-template rule (#​13117) (yefan)
  • 920e06f linter: Implement fixer for jsx_curly_brace_presence (#​13005) (RoelGo)
  • 1c79d02 linter: Add react/jsx-fragments rule (#​12988) (Peter Cardenas)
  • a799982 linter/consistent-type-specifier-style: Add fixer for top-level style config (#​13023) (Li Wei)
  • 61112a3 linter: Add 36 new TypeScript ESLint rules with comprehensive test fixtures (#​12893) (Copilot)
  • 4ce252c linter: Add dangerous suggestion for jsx-a11y/tabindex-no-positive (#​12963) (Sysix)
🐛 Bug Fixes
  • 66a350e oxlint: Should type linting files after ignore (#​13149) (Boshen)
  • 81b0162 linter: Preserve json key order for oxlint --init (#​13121) (Boshen)
  • f97791a linter/no-this-alias: Update NoThisAliasConfig default config (#​13095) (camc314)
  • 43b1c5a linter: Do not count type-aware rules, when not enabled (#​13062) (Sysix)
  • 618ee87 linter/array-callback-return: Fix handling of default case in switch statements for array-callback-return rule (#​13081) (Li Wei)
  • c211d32 linter: Fix whitespace handling in disable directives (#​13083) (Li Wei)
  • a0ccada tsgolint: Handle non-zero exit status from tsgolint process (#​13087) (camc314)
  • b0558a4 linter: Prevent unsound use of Allocator across threads (#​13032) (overlookmotel)
  • 2d287d0 linter/no-unused-private-class-members: False positive with private member in compound assignments (#​13053) (yefan)
🚜 Refactor
  • 700b412 linter: Add impl for TsGoLintDiagnostic into Message (#​13144) (Sysix)
  • 437a63d linter: message_to_message_with_position helper function (#​13140) (Sysix)
  • 8459a12 linter: Pass paths to TsGoLintState.lint method (#​13131) (Sysix)
  • 0dd7908 linter: Fix dead code warnings when compiling napi/oxlint2 (#​13132) (overlookmotel)
  • f0a517f linter: Pass cwd instead of LintServiceOptions into TsGoLintState (#​13127) (Sysix)
  • b638371 language_server: Do not check twice for supported extension (#​13130) (Sysix)
  • 34ae2f0 linter: Move tsgolint.rs to oxc_linter crate (#​13126) (Sysix)
  • 9f924f6 linter: Always explicitly initialize Rayon thread pool (#​13122) (overlookmotel)
  • 6c5b8be linter: Create AllocatorPool in Runtime::new (#​13106) (overlookmotel)
  • cc2a85b linter: Remove CliRunResult from TsGoLintState (#​13119) (Sysix)
  • 23e5642 linter: Move TsGoLintInput creation into own function (#​13118) (Sysix)
  • 0453ee3 linter: Rename var for consistency (#​13074) (overlookmotel)
  • 5783df2 linter: Dereference Allocator from AllocatorGuard (#​13073) (overlookmotel)
  • 1d77d92 linter: Avoid unnecessary var initialization (#​13072) (overlookmotel)
  • 1c15288 linter: Extract duplicated is_jsx_fragment function to shared utils (#​13093) (Copilot)
  • 0b61338 linter/jsx-curly-brace-presence: Iter over chars rather than using regex (#​13094) (Copilot)
  • 74fb6c9 linter: Reduce repeated code (#​13070) (overlookmotel)
⚡ Performance
  • 3bfb235 linter: Implement streaming diagnostics for tsgolint instead of waiting for output to finish (#​13098) (copilot-swe-agent)

v1.11.2: oxlint v1.11.2

Compare Source

[1.11.2] - 2025-08-12

🐛 Bug Fixes
  • c461a86 oxlint: Fix type-aware linting crash when Vue files are present (#​13007) (Copilot)
  • 42de3d1 linter: Update warn_correctness to correctly warn when using vitest plugin (#​12991) (camc314)
  • 1b0136e linter/exhaustive-deps: Use codegen in fixer rather than manual string manipulation (#​12987) (camc314)
  • 2936545 linter/tsgolint: Report an error if tsgolint executable failed to spawn (#​12984) (camc314)
  • 166f5cc linter: Fix no-fallthrough rule, when the default condition is not last (#​12927) (Li Wei)
  • d7e1ddb linter/config: Ensure that overrides correctly replace base rules (#​12941) (camc314)
  • a13b3ee oxlint: Run tsgolint.CMD under windows (#​12932) (Sysix)
🚜 Refactor
  • 69303de oxlint: Pass DiagnosticService as a parameter for TsGoLintState.lint() (#​13004) (Sysix)
🧪 Testing
  • fb8cbbf oxlint: Enable tsgolint test with config parameter for windows (#​13001) (Alexander S.)
  • d59f3bb oxlint: Match x.ys when replacing var (#​12990) (camc314)
  • 6b054b6 linter/expect-expect: Add test case for calling expect as return arg (#​12983) (camc314)
  • d7cca12 linter: Add test for extended configs and overrides for tsgolint (#​12924) (camchenry)
yuyinws/vitepress-plugin-group-icons (vitepress-plugin-group-icons)

v1.6.3

Compare Source

   🚀 Features
    View changes on GitHub
okineadev/vitepress-plugin-llms (vitepress-plugin-llms)

v1.7.3

Compare Source

   🐞 Bug Fixes

Previously, if the home page of the site was a documentation page (as in #​70), then when trying to copy the page, https://example.com.md would load, which is incorrect behavior.

This issue has been fixed and now if you want to copy the home page, it will correctly load https://example.com/index.md

Also fixed a bug where invisible notes for LLMs had invalid links to Markdown versions of pages (#​71), for example: Are you an LLM? You can read better optimized documentation at /guide/index.md for this page in Markdown format

Although the actual page is /guide.md

    View changes on GitHub

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 August 17, 2025 18:20
Copy link

socket-security bot commented Aug 17, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedesbuild@​0.25.8 ⏵ 0.25.9911007194 +3100
Updated@​babel/​preset-env@​7.28.0 ⏵ 7.28.3961007596 +5100
Updated@​babel/​core@​7.28.0 ⏵ 7.28.3981007896100
Updated@​types/​react@​19.1.9 ⏵ 19.1.1010010078 +194 +4100
Updated@​types/​node@​24.2.1 ⏵ 24.3.0100 +110080 +196 +1100
Updatedoxlint@​1.11.1 ⏵ 1.12.0911008496 +1100
Updated@​napi-rs/​cli@​3.1.3 ⏵ 3.1.59010084 +197 +1100
Updatedchalk@​5.5.0 ⏵ 5.6.0100 +1100100 +190 +5100

View full report

Copy link

netlify bot commented Aug 17, 2025

Deploy Preview for rolldown-rs ready!

Name Link
🔨 Latest commit b0e3100
🔍 Latest deploy log https://app.netlify.com/projects/rolldown-rs/deploys/68a2336643285a000802bf61
😎 Deploy Preview https://deploy-preview-5762--rolldown-rs.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 force-pushed the renovate/npm-packages branch from bb8beca to d1e0b83 Compare August 17, 2025 18:32
@renovate renovate bot force-pushed the renovate/npm-packages branch from d1e0b83 to b0e3100 Compare August 17, 2025 19:54
@renovate renovate bot added this pull request to the merge queue Aug 17, 2025
Merged via the queue into main with commit 4f1c2cb Aug 17, 2025
34 checks passed
@renovate renovate bot deleted the renovate/npm-packages branch August 17, 2025 20:09
This was referenced Aug 18, 2025
hyf0 pushed a commit that referenced this pull request Aug 18, 2025
## [1.0.0-beta.33] - 2025-08-18

### 💥 BREAKING CHANGES

- only call `closeBundle` hook when bundling actually happens (#5715) by
@shulaoda

### 🚀 Features

- rolldown_plugin_vite_css_post: align transform logic except minify
(#5768) by @shulaoda
- rolldown_plugin_vite_css_post: align html inline css logic (#5767) by
@shulaoda
- support merge cjs ns in module group level (#5760) by @IWANABETHATGUY
- rolldown_plugin_vite_css_post: filter transform id (#5766) by
@shulaoda
- rolldown: oxc v0.82.2 (#5754) by @Boshen
- rollup-test: log error when `pringStatus` (#5744) by @situ2001
- rolldown_plugin_vite_css_post: initialize (#5743) by @shulaoda
- rolldown_plugin_vite_css: align `transform` hook logic (#5736) by
@shulaoda
- rolldown_plugin_vite_css: align partial transform hook logic (#5733)
by @shulaoda
- add original wrap_kind (#5729) by @IWANABETHATGUY
- concatenateWrappedModule (#5724) by @IWANABETHATGUY
- rolldown: oxc v0.82.1 (#5717) by @Boshen
- improve error message for `unresolved_import` when platform is
`neutral` (#5700) by @IWANABETHATGUY

### 🐛 Bug Fixes

- rolldown_plugin_transform: merge tsconfig jsx options even when
`oxc.jsx.runtime` is set (#5771) by @hi-ogawa
- jsx preserve break component which is default export (#5764) by
@shulaoda
- rolldown_plugin_asset: should directly stringify raw content (#5749)
by @situ2001
- resolve symbol deconfliction order for cross-chunk imports by
@IWANABETHATGUY
- rolldown_error: improve resolve diagnostic message (#5740) by
@shulaoda
- vitest ci failed (#5741) by @IWANABETHATGUY
- rolldown: options `context` should be available in renderStart (#5672)
by @situ2001
- ensure lazy module eval order when import variable from other chunk
(#5727) by @IWANABETHATGUY
- wasm build panic on stackblitz (#5723) by @shulaoda
- plugin/vite-resolve: try non-prefixed id before prefixed id (#5711) by
@sapphi-red
- devtool: shouldn't filter out spans for devtool use case (#5713) by
@hyf0
- plugin/vite-resolve: fallback on more resolution errors that happened
when trying with prefix (#5710) by @sapphi-red
- plugin/vite-resolve: don't consider ids with `npm:` prefix as a
built-in module (#5709) by @sapphi-red

### 🚜 Refactor

- rolldown_plugin_json: use common plugin utils (#5769) by @shulaoda
- hmr: remove unnecessary code of handling runtime module (#5752) by
@hyf0
- hmr: enhance HMR update logic and improve clarity (#5748) by @hyf0
- improve `ScopeHoistingFinalizerContext` (#5739) by @shulaoda
- move `finalize_normal_module` into `ScopeHoistingFinalizerContext`
(#5738) by @shulaoda
- private fields `wrap_kind` and `original_wrap_kind` and keep them sync
(#5730) by @IWANABETHATGUY

### 📚 Documentation

- rolldown_plugin_data_uri: update README (#5746) by @situ2001
- install guide for minor platforms (#5716) by @sapphi-red
- update description for platform `neutral` (#5701) by @IWANABETHATGUY

### ⚡ Performance

- hmr: only refetch changed modules (#5753) by @hyf0
- rolldown_plugin_reporter: gzip size computation (#5734) by
@IWANABETHATGUY
- hmr: reuse previous ast for non-changed modules (#5725) by @hyf0
- rolldown_ecmascript: do not run semantic twice for `dce-only` (#5707)
by @Boshen

### 🧪 Testing

- rolldown: should await for `toMatchFileSnapshot` (#5759) by @situ2001
- hmr: improve test of `import.meta.hot.invalidate` (#5747) by @hyf0

### ⚙️ Miscellaneous Tasks

- deps: lock file maintenance (#5765) by @renovate[bot]
- deps: lock file maintenance rust crates (#5763) by @renovate[bot]
- deps: lock file maintenance npm packages (#5762) by @renovate[bot]
- deps: update github-actions (#5755) by @renovate[bot]
- deps: update dependency tinybench to v5 (#5756) by @renovate[bot]
- deps: update github-actions (major) (#5757) by @renovate[bot]
- deps: update crate-ci/typos action to v1.35.4 (#5714) by
@renovate[bot]
- prepare-release: regenerate `binding.js` after version bump (#5704) by
@shulaoda
- deps: update dependency tsdown to v0.14.1 (#5705) by @renovate[bot]
- rollup-tests: skip occasionally failing test case (#5703) by @shulaoda
- update binding.js (#5702) by @shulaoda

Co-authored-by: sapphi-red <[email protected]>
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