Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 25, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@antfu/eslint-config ^6.2.0 -> ^6.4.1 age confidence pnpm.catalog.default minor
@shikijs/vitepress-twoslash (source) ^3.18.0 -> ^3.19.0 age confidence pnpm.catalog.docs minor
@typescript/native-preview (source) 7.0.0-dev.20251202.1 -> 7.0.0-dev.20251204.1 age confidence pnpm.catalog.default patch
actions/checkout v6.0.0 -> v6.0.1 age confidence action patch
actions/setup-node v6.0.0 -> v6.1.0 age confidence action minor
esbuild ^0.27.0 -> ^0.27.1 age confidence pnpm.catalog.default patch
eslint-plugin-format ^1.0.2 -> ^1.1.0 age confidence pnpm.catalog.default minor
rolldown (source) ^1.0.0-beta.52 -> ^1.0.0-beta.53 age confidence pnpm.catalog.peer patch
tsdown (source) ^0.17.0-beta.5 -> ^0.17.0 age confidence pnpm.catalog.default patch
unloader ^0.8.0 -> ^0.8.1 age confidence pnpm.catalog.peer patch

Release Notes

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

v6.4.1

Compare Source

No significant changes

    View changes on GitHub

v6.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
shikijs/shiki (@​shikijs/vitepress-twoslash)

v3.19.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20251204.1

Compare Source

v7.0.0-dev.20251203.1

Compare Source

actions/checkout (actions/checkout)

v6.0.1

Compare Source

actions/setup-node (actions/setup-node)

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

Full Changelog: actions/setup-node@v6...v6.1.0

evanw/esbuild (esbuild)

v0.27.1

Compare Source

  • Fix bundler bug with var nested inside if (#​4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#​4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}
  • Inline IIFEs containing a single expression (#​4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    
    // New output (with --minify)
    const foo=()=>{console.log(x())};
  • The minifier now strips empty finally clauses (#​4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

    // Original code
    function foo(callback) {
      if (DEBUG) stack.push(callback.name);
      try {
        callback();
      } finally {
        if (DEBUG) stack.pop();
      }
    }
    
    // Old output (with --minify --define:DEBUG=false)
    function foo(a){try{a()}finally{}}
    
    // New output (with --minify --define:DEBUG=false)
    function foo(a){a()}
  • Allow tree-shaking of the Symbol constructor

    With this release, calling Symbol is now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:

    // Original code
    const a = Symbol('foo')
    const b = Symbol(bar)
    
    // Old output (with --tree-shaking=true)
    const a = Symbol("foo");
    const b = Symbol(bar);
    
    // New output (with --tree-shaking=true)
    const b = Symbol(bar);
antfu/eslint-plugin-format (eslint-plugin-format)

v1.1.0

Compare Source

   🚀 Features
    View changes on GitHub
rolldown/rolldown (rolldown)

v1.0.0-beta.53

Compare Source

💥 BREAKING CHANGES
🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
  • rolldown_plugin_vite_css_post: lazily load cssScopeTo from JS module options (#​7253) by @​shulaoda
  • rolldown_plugin_vite_css_post: avoid unnecessary string clones in resolve_asset_urls_in_css (#​7250) by @​shulaoda
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors
rolldown/tsdown (tsdown)

v0.17.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.17.0-beta.6

Compare Source

   🚀 Features
    View changes on GitHub
sxzz/unloader (unloader)

v0.8.1

Compare Source

   🐞 Bug Fixes
  • deps: Update all non-major dependencies  -  in #​16 (74318)
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Nov 25, 2025

Open in StackBlitz

npm i https://pkg.pr.new/unplugin@567

commit: e544df4

@pkg-pr-new
Copy link

pkg-pr-new bot commented Nov 25, 2025

Open in StackBlitz

npm i https://pkg.pr.new/unplugin@567

commit: 32fcc37

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 32fcc37 to f187dd1 Compare November 25, 2025 19:09
@renovate renovate bot changed the title chore(deps): update pnpm.catalog.docs vue to ^3.5.25 chore(deps): update all non-major dependencies Nov 25, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 7cf7e81 to 36c24ab Compare December 2, 2025 21:13
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update actions/checkout action to v6.0.1 Dec 2, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 36c24ab to c79b55a Compare December 3, 2025 04:55
@renovate renovate bot changed the title chore(deps): update actions/checkout action to v6.0.1 chore(deps): update all non-major dependencies Dec 3, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 64e401c to 9fc3b38 Compare December 4, 2025 11:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9fc3b38 to e544df4 Compare December 4, 2025 16:15
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