Skip to content

fix(deps): update all non-major dependencies #188

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 4, 2025

This PR contains the following updates:

Package Change Age Confidence
@farmfe/core 2.0.0-nightly-20250411141103 -> 2.0.0-nightly-20250729025629 age confidence
@jridgewell/gen-mapping (source) ^0.3.12 -> ^0.3.13 age confidence
@jridgewell/trace-mapping (source) ^0.3.29 -> ^0.3.30 age confidence
@types/node (source) ^24.2.0 -> ^24.2.1 age confidence
bumpp ^10.2.2 -> ^10.2.3 age confidence
esbuild ^0.25.8 -> ^0.25.9 age confidence
eslint (source) ^9.32.0 -> ^9.33.0 age confidence
rolldown (source) 1.0.0-beta.31 -> 1.0.0-beta.32 age confidence
sass ^1.89.2 -> ^1.90.0 age confidence
tsdown ^0.13.3 -> ^0.14.1 age confidence
unplugin-oxc ^0.4.8 -> ^0.5.0 age confidence
vite (source) ^7.0.6 -> ^7.1.2 age confidence
webpack ^5.101.0 -> ^5.101.1 age confidence

Release Notes

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

v2.0.0-nightly-20250729025629

Compare Source

jridgewell/sourcemaps (@​jridgewell/gen-mapping)

v0.3.13

Compare Source

Full Changelog: jridgewell/sourcemaps@gen-mapping/0.3.12...gen-mapping/0.3.13

jridgewell/sourcemaps (@​jridgewell/trace-mapping)

v0.3.30

Compare Source

Full Changelog: jridgewell/sourcemaps@trace-mapping/0.3.29...trace-mapping/0.3.30

antfu-collective/bumpp (bumpp)

v10.2.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
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.

eslint/eslint (eslint)

v9.33.0

Compare Source

sass/dart-sass (sass)

v1.90.0

Compare Source

  • Allow a @forwarded module to be loaded with a configuration when that module
    has already been loaded with a different configuration and the module
    doesn't define any variables that would have been configured anyway.
rolldown/tsdown (tsdown)

v0.14.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.14.0

Compare Source

   🚨 Breaking Changes
  • Disable expandDirectories for matching fast-glob's behavior  -  by @​sxzz (8171b)
    View changes on GitHub

v0.13.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.13.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • Suppress mixed export warnings if cjsDefault is enabled  -  by @​sxzz (3ffa9)
    View changes on GitHub
unplugin/unplugin-oxc (unplugin-oxc)

v0.5.0

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v0.4.9

Compare Source

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

v7.1.2

Compare Source

Bug Fixes
Miscellaneous Chores

v7.1.1

Compare Source

Bug Fixes
Miscellaneous Chores

v7.1.0

Compare Source

Features
  • support files with more than 1000 lines by generateCodeFrame (#​20508) (e7d0b2a)
Bug Fixes
Tests
webpack/webpack (webpack)

v5.101.1

Compare Source

Fixes
  • Filter deleted assets in processAdditionalAssets hook
  • HMR failure in defer module
  • Emit assets even if invalidation occurs again
  • Export types for serialization and deserialization in plugins and export the ModuleFactory class
  • Fixed the failure export of internal function for ES module chunk format
  • Fixed GetChunkFilename failure caused by dependOn entry
  • Fixed the import of missing dependency chunks
  • Fixed when entry chunk depends on the runtime chunk hash
  • Fixed module.exports bundle to ESM library
  • Adjusted the time of adding a group depending on the fragment of execution time
  • Fixed circle dependencies when require RawModule and condition of isDeferred
  • Tree-shakable module library should align preconditions of allowInlineStartup

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
Copy link

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

Copy link

pkg-pr-new bot commented Aug 4, 2025

Open in StackBlitz

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

commit: 75148a7

@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
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 from ebfd8b3 to 75148a7 Compare August 13, 2025 15:41
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.

0 participants