Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@antfu/eslint-config 6.2.0 -> 6.5.1 age confidence pnpm.catalog.dev minor
@types/node (source) 24.10.1 -> 24.10.2 age confidence pnpm.catalog.dev 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.peer patch
esbuild 0.27.0 -> 0.27.1 age confidence devDependencies patch
knip (source) 5.71.0 -> 5.72.0 age confidence pnpm.catalog.dev minor
pnpm (source) 10.24.0 -> 10.25.0 age confidence packageManager minor
vue-tsc (source) 3.1.5 -> 3.1.8 age confidence pnpm.catalog.dev patch

Release Notes

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

v6.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v6.4.2

Compare Source

   🐞 Bug Fixes
  • pnpm: Move pnpm-workspace.yaml sorting config from yaml to pnpm  -  by @​antfu (fc2b1)
    View changes on GitHub

v6.4.1

Compare Source

No significant changes

    View changes on GitHub

v6.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
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);
webpro-nl/knip (knip)

v5.72.0

Compare Source

  • Resolve setupFiles and globalSetup from config file dir (resolve #​1317) (ff8c33d)
  • Add SASS/SCSS compiler (resolve #​1292) (333ace3)
  • Update compilers docs (2a5be2d)
  • Move & update dependencies (9fb19b3)
  • Add .vscode/extensions.json (77433bc)
  • Keep tracing exports/members through pseudo re-exports + conditions (resolve #​1371) (fb3cc39)
  • Defer work for a minor perf optimization (e0a4649)
  • Remove obsolete .prettierignore (9cd40e1)
  • Add docs re. coding agents + AGENTS.md (262dacf)
  • Add some docs/hints to code (8237a30)
  • Ignore void lint issue in explorer helper type (33d7497)
  • Ignore dependencies used by IDE extensions (fb98813)
  • Update rsbuild plugin to check preEntry (#​1373) (b542cb7) - thanks @​MichielHegemans!
  • Support cli args for config file in vite plugin (ab01e82)
  • Refactor traceRefs out and improve export tracer (62d574e)
  • Improve & add importAliases to refs tracker (f90eed6)
  • Make non-pkg specifiers relative in SCSS compiler (c77ea44)
  • Allow integration test patch (733bc92)
  • Add knip config patch to eslint integration test (ff69794)
  • Work that tracer ✨ (d79c1f6)
  • Allow multiple --performance-fn (5be3cdc)
  • Add extensionAlias (ebf3ff3)
  • Sort files for trace output & add diff test helper (4c22ec3)
  • Bump oxc-resolver to 11.15.0 (ff4d089)
  • Add tsconfig: auto and use resolveFileSync method (b2f213d)
  • Use containingFile (not dir) (ed0cdac)
  • Add missing tsconfig.json files (141d5c8)
  • Add test for tsconfig rootDirs (close #​873) (eeb4174)
  • Keep using sync resolver outside ts module scope (a3fd7dd)
  • Add index to mem table (96edd57)
  • Update export tracer screenshots (0188371)
  • Add SVGR plugin (3b564dd)
  • Update command to create plugin in help text (6385b25)
  • Format (dee9795)
  • Add support for viteConfigPath in storybook plugin (ec9d6cc)
  • Add impl walk-through & new plugin instructions (4f0c8b1)
  • Minor refactor formatTrace (143755e)
pnpm/pnpm (pnpm)

v10.25.0

Compare Source

vuejs/language-tools (vue-tsc)

v3.1.8

Compare Source

v3.1.7

Compare Source

v3.1.6

Compare Source

Features
  • feat(vscode): add settings to enable per-block formatting (#​5784) - Thanks to @​serkodev!
  • feat(language-service): enhanced component auto import (#​5790)
  • feat(component-meta): add component name and description fields (#​5797)
  • feat(typescript-plugin): add support for template "Add Import" quick fix (#​5799) - Thanks to @​serkodev!
  • feat(typescript-plugin): mapping JSDoc informations from <script setup> (#​5805)
  • feat(vscode): support tsdk path for Eclipse Theia (#​5806) - Thanks to @​serkodev!
Bug Fixes
  • fix(language-service): ignore intrinsic elements when detect tag name casing (#​5771)
  • fix(language-core): createParsedCommandLineByJson parsed incorrect options since v3.1.5 (#​5768 (comment))
  • fix(vscode): make vue.server.path compatible with Windows (#​5772)
  • fix(vscode): analyze interpolation highlight ranges based on AST (#​5777)
  • fix(vscode): sync latest vscode html language configuration (#​5740)
  • fix(language-core): enhance getVIfNode to support v-else-if directives (#​5765) - Thanks to @​serkodev!
  • fix(language-core): generate {} instead of its string value for style="..." (#​5781) - Thanks to @​KazariEX!
  • fix(language-core): v-bind="$attrs" loses navigation when inferTemplateDollarAttrs is disabled (#​5783)
  • fix(language-service): skip const props = completion in StringLiteral (#​5786)
  • fix(language-core): unable to get completion for the second scoped class name
  • fix(language-service): format components with HTML void-element names (#​5788) - Thanks to @​serkodev!
  • fix(language-service): properly handle promise when resolving CSS links (#​5785)
  • fix(language-core): infer $el type for generic components using inferComponentDollarEl (#​5794)
  • fix(language-core): ensure <script> content generates before <script setup> (#​5795)
  • fix(language-core): remove bypassDefineComponent hack for better JS support (#​4876) (#​5379)
  • fix(language-core): Prettify<T> caused generic props gets inferred as unknown (#​5667) - Thanks to @​so1ve!
  • fix(vscode): handle leading < as operator in SFC scripts (#​5801) - Thanks to @​serkodev!
  • fix(vscode): patch isTypeScriptDocument in VSCode for typescript.preferences.autoImportSpecifierExcludeRegexes config support (#​5364)
  • fix(language-core): ensure type consistency for optional boolean props (#​5803)
  • fix(language-core): add compatibility for vapor attr (#​5496)
  • fix(language-core): AST fault tolerance for key binding on template (#​5807)
Performance
  • perf(language-core): reuse ts asts for :class - Thanks to @​KazariEX!
Other Changes
  • Revert "refactor(typescript-plugin): remove go to definition trick for auto imported components (#​5733)"
  • docs(typescript-plugin): update Neovim configuration link (#​5775) - Thanks to @​AlexVagrant!
  • refactor(language-core): normalize template AST (#​5782)
  • refactor(language-core): split style codegen (#​5787)
  • refactor(language-core): remove debugger from virtual code for tsslint compatibility
  • refactor(language-core): remove legacy navigation support in ref="xxx"
  • refactor(language-core): reduce codegen options (#​5804)
  • refactor(component-meta): deprecated rawType and __internal__.tsLs (#​5808)
  • chore: update volar to 2.4.26

Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 Dec 8, 2025

Open in StackBlitz

npm i https://pkg.pr.new/vue-sfc-transformer@148

commit: da3c29b

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 6950956 to 443c208 Compare December 9, 2025 04:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 443c208 to a20e073 Compare December 9, 2025 18:27
@renovate
Copy link
Contributor Author

renovate bot commented Dec 9, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@Teages Teages merged commit 7b4cd45 into main Dec 9, 2025
4 checks passed
@Teages Teages deleted the renovate/all-minor-patch branch December 9, 2025 18:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants