Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 4, 2025

This PR contains the following updates:

Package Change Age Confidence
@farmfe/cli 2.0.0-nightly-20250411100807 -> 2.0.0-nightly-20250827162746 age confidence
@farmfe/core 2.0.0-nightly-20250411141103 -> 2.0.0-nightly-20250827162746 age confidence
@types/node (source) ^24.10.1 -> ^24.10.2 age confidence
@typescript/native-preview (source) 7.0.0-dev.20251203.1 -> 7.0.0-dev.20251208.1 age confidence
esbuild ^0.27.0 -> ^0.27.1 age confidence
pnpm (source) 10.24.0 -> 10.25.0 age confidence
sass ^1.94.2 -> ^1.95.0 age confidence
tsdown (source) ^0.17.0-beta.6 -> ^0.17.2 age confidence
vite (source) ^8.0.0-beta.0 -> ^8.0.0-beta.1 age confidence
vite (source) ^7.2.6 -> ^7.2.7 age confidence
vue (source) ^3.6.0-alpha.2 -> ^3.6.0-alpha.6 age confidence

Release Notes

farm-fe/farm (@​farmfe/cli)

v2.0.0-nightly-20250827162746

Compare Source

microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20251208.1

Compare Source

v7.0.0-dev.20251207.1

Compare Source

v7.0.0-dev.20251206.1

Compare Source

v7.0.0-dev.20251205.1

Compare Source

v7.0.0-dev.20251204.1

Compare Source

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);
pnpm/pnpm (pnpm)

v10.25.0

Compare Source

sass/dart-sass (sass)

v1.95.0

Compare Source

  • Add support for the CSS-style if() function. In addition to supporting the
    plain CSS syntax, this also supports a sass() query that takes a Sass
    expression that evaluates to true or false at preprocessing time depending
    on whether the Sass value is truthy. If there are no plain-CSS queries, the
    function will return the first value whose query returns true during
    preprocessing. For example, if(sass(false): 1; sass(true): 2; else: 3)
    returns 2.

  • The old Sass if() syntax is now deprecated. Users are encouraged to migrate
    to the new CSS syntax. if($condition, $if-true, $if-false) can be changed to
    if(sass($condition): $if-true; else: $if-false).

    See the Sass website for details.

  • Plain-CSS if() functions are now considered "special numbers", meaning that
    they can be used in place of arguments to CSS color functions.

  • Plain-CSS if() functions and attr() functions are now considered "special
    variable strings" (like var()), meaning they can now be used in place of
    multiple arguments or syntax fragments in various CSS functions.

v1.94.3

Compare Source

  • Fix the span reported for standalone % expressions followed by whitespace.
rolldown/tsdown (tsdown)

v0.17.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.0

Compare Source

   🚨 Breaking Changes

Notable features: https://bsky.app/profile/sxzz.dev/post/3m6xi7e7d5k2b

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vitejs/vite (vite)

v8.0.0-beta.1

Compare Source

Features
  • add a warning that is output when a plugin sets esbuild related options (#​21218) (200646b)
  • highly experimental full bundle mode (#​21235) (83d8c99)
  • print esbuild options when both esbuild and oxc options are set (#​21216) (08ae87b)
Bug Fixes
Miscellaneous Chores
vuejs/core (vue)

v3.6.0-alpha.6

Compare Source

For stable releases, please refer to CHANGELOG.md for details.
For pre-releases, please refer to CHANGELOG.md of the minor branch.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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.

@renovate renovate bot added the dependencies label Aug 4, 2025
@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Aug 4, 2025

Open in StackBlitz

npm i https://pkg.pr.new/unplugin-vue@188

commit: 0c8895d

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7340f05 to 1f546ae Compare August 5, 2025 06:37
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update dependency @farmfe/core to v2.0.0-nightly-20250729025629 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1f546ae to 77445f6 Compare August 5, 2025 06:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8437f2f to 7d3db18 Compare August 5, 2025 10:23
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v2.0.0-nightly-20250729025629 chore(deps): update all non-major dependencies Aug 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d51daac to 594d842 Compare August 7, 2025 09:05
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 7, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 594d842 to d6b2f11 Compare August 8, 2025 05:13
@socket-security
Copy link

socket-security bot commented Aug 8, 2025

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 5264693 to ebfd8b3 Compare August 13, 2025 03:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from ab35fd2 to 544532d Compare December 2, 2025 18:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 544532d to dcefbd7 Compare December 2, 2025 19:45
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Dec 2, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 44e3762 to 47743f3 Compare December 8, 2025 09:59
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5e04f74 to aa9cce4 Compare December 8, 2025 22:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa9cce4 to 0c8895d Compare December 9, 2025 02:58
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.

1 participant