Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
renovate wants to merge1 commit intomain
base:main
Choose a base branch
Loading
fromrenovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovaterenovatebot commentedAug 4, 2025
edited
Loading

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeConfidence
@farmfe/cli2.0.0-nightly-20250411100807 ->2.0.0-nightly-20250827162746ageconfidence
@farmfe/core2.0.0-nightly-20250411141103 ->2.0.0-nightly-20250827162746ageconfidence
@rspack/cli (source)^1.6.6 ->^1.6.8ageconfidence
@rspack/core (source)^1.6.6 ->^1.6.8ageconfidence
@swc/core (source)^1.15.3 ->^1.15.7ageconfidence
@sxzz/eslint-config^7.4.1 ->^7.4.3ageconfidence
@sxzz/test-utils^0.5.13 ->^0.5.15ageconfidence
@types/node (source)^24.10.1 ->^24.10.4ageconfidence
@typescript/native-preview (source)7.0.0-dev.20251203.1 ->7.0.0-dev.20251220.1ageconfidence
@vitejs/plugin-vue (source)^6.0.2 ->^6.0.3ageconfidence
@vitest/ui (source)^4.0.15 ->^4.0.16ageconfidence
@vue/reactivity (source)^3.5.25 ->^3.5.26ageconfidence
esbuild^0.27.0 ->^0.27.2ageconfidence
eslint (source)^9.39.1 ->^9.39.2ageconfidence
pnpm (source)10.24.0 ->10.26.1ageconfidence
rolldown (source)1.0.0-beta.53 ->1.0.0-beta.55ageconfidence
rollup (source)^4.53.3 ->^4.54.0ageconfidence
sass^1.94.2 ->^1.97.1ageconfidence
tsdown (source)^0.17.0-beta.6 ->^0.18.1ageconfidence
unplugin-oxc^0.5.5 ->^0.5.6ageconfidence
vite (source)^8.0.0-beta.0 ->^8.0.0-beta.3ageconfidence
vite (source)^7.2.6 ->^7.3.0ageconfidence
vitest (source)^4.0.15 ->^4.0.16ageconfidence
vue (source)^3.6.0-alpha.2 ->^3.6.0-alpha.7ageconfidence
vue (source)^3.5.25 ->^3.5.26ageconfidence
webpack^5.103.0 ->^5.104.1ageconfidence

Release Notes

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

v2.0.0-nightly-20250827162746

Compare Source

web-infra-dev/rspack (@​rspack/cli)

v1.6.8

Compare Source

What's Changed

Bug Fixes 🐞

Full Changelog:web-infra-dev/rspack@v1.6.7...v1.6.8

v1.6.7

Compare Source

Highlights 💡

🎉 Support forimport.meta.filename,import.meta.dirname, andimport.meta.resolve

Rspack now supports theimport.meta.filename,import.meta.dirname, andimport.meta.resolve meta properties in ESM modules.
These properties provide a standardized way to access file and directory paths in ES modules, similar to the CommonJS__filename and__dirname variables:

// Get the absolute path of the current module fileconsole.log(import.meta.filename);// e.g., "/path/to/project/src/index.js"// Get the directory path of the current moduleconsole.log(import.meta.dirname);// e.g., "/path/to/project/src"// Resolve a module specifier to an absolute URLconstresolvedPath=import.meta.resolve('./utils.js');

Thanks to@​magic-akari for this contribution!

What's Changed

New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Other Changes

Full Changelog:web-infra-dev/rspack@v1.6.6...v1.6.7

swc-project/swc (@​swc/core)

v1.15.7

Compare Source

Bug Fixes
  • (es/minifier) Prevent unsafe sequence merging insuper() calls (#​11381) (eb02780)

  • (es/transformer) Fix variable declaration for nullish coalescing in else-if branches (#​11384) (6746002)

  • (es/transforms) Update_ts_rewrite_relative_import_extension helper code (#​11382) (1ec444e)

Features
Performance
Refactor

v1.15.6

Compare Source

v1.15.5

Compare Source

Bug Fixes

v1.15.4

Compare Source

Bug Fixes
  • (es/compat) Preserve return value for single-property object destructuring (#​11334) (847ad22)

  • (es/compat) Fix generator transform for compound assignments, for-in, and labeled break (#​11339) (9b6bedd)

  • (es/compat) Destructuring evaluation order (#​11337) (49d04c7)

  • (es/compat) Fix parameter default value evaluation order with object rest (#​11352) (2ebb261)

  • (es/fixer) Preserve parens around IFFE in binary expressions within sequences (#​11324) (a4c84ea)

  • (es/helpers) Avoid extra trap calls on excluded keys in object rest spread (#​11338) (4662caf)

  • (es/minifier) Fixdebug cargo feature (#​11325) (be86fad)

  • (es/minifier) Fix optimization pass formerge_imports (#​11331) (ca2f7ed)

  • (es/parser) Don't callbump_bytes in thecontinue_if ofbyte_search! (#​11328) (583619d)

  • (es/parser) Support type-only string literal in import specifiers (#​11333) (07762f1)

  • (es/parser) Handle TypeScript expressions in destructuring patterns (#​11353) (160ec34)

  • (es/transformer) Completereplace_this_in_expr implementation (#​11361) (58c4067)

  • (es/transformer) Fix pass order (#​11370) (373048a)

Features
Performance
sxzz/eslint-config (@​sxzz/eslint-config)

v7.4.3

Compare Source

No significant changes

    View changes on GitHub

v7.4.2

Compare Source

No significant changes

    View changes on GitHub
sxzz/test-utils (@​sxzz/test-utils)

v0.5.15

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.5.14

Compare Source

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

v7.0.0-dev.20251220.1

Compare Source

v7.0.0-dev.20251219.1

Compare Source

v7.0.0-dev.20251218.3

Compare Source

v7.0.0-dev.20251218.1

Compare Source

v7.0.0-dev.20251217.1

Compare Source

v7.0.0-dev.20251216.1

Compare Source

v7.0.0-dev.20251215.1

Compare Source

v7.0.0-dev.20251214.1

Compare Source

v7.0.0-dev.20251213.1

Compare Source

v7.0.0-dev.20251212.1

Compare Source

v7.0.0-dev.20251211.1

Compare Source

v7.0.0-dev.20251210.1

Compare Source

v7.0.0-dev.20251209.1

Compare Source

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

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.3

Features
Bug Fixes
Performance Improvements
Miscellaneous Chores
vitest-dev/vitest (@​vitest/ui)

v4.0.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (@​vue/reactivity)

v3.5.26

Compare Source

Bug Fixes
Performance Improvements
evanw/esbuild (esbuild)

v0.27.2

Compare Source

  • Allow import path specifiers starting with#/ (#​4361)

    Previously the specification forpackage.json disallowed import path specifiers starting with#/, but this restrictionhas recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/* to./src/* (previously you had to use another character such as#_* instead, which was more confusing). There is some more context innodejs/node#49182.

    This change was contributed by@​hybrist.

  • Automatically add the-webkit-mask prefix (#​4357,#​4358)

    This release automatically adds the-webkit- vendor prefix for themask CSS shorthand property:

    /* Original code */main {mask:url(x.png) center/5rem no-repeat}/* Old output (with --target=chrome110) */main {mask:url(x.png) center/5rem no-repeat;}/* New output (with --target=chrome110) */main {-webkit-mask:url(x.png) center/5rem no-repeat;mask:url(x.png) center/5rem no-repeat;}

    This change was contributed by@​BPJEnnova.

  • Additional minification ofswitch statements (#​4176,#​4359)

    This release contains additional minification patterns for reducingswitch statements. Here is an example:

    // Original codeswitch(x){case0:foo()breakcase1:default:bar()}// Old output (with --minify)switch(x){case0:foo();break;case1:default:bar()}// New output (with --minify)x===0?foo():bar();
  • Forbidusing declarations insideswitch clauses (#​4323)

    This is a rare change to remove something that was previously possible. TheExplicit Resource Management proposal introducedusing declarations. These were previously allowed insidecase anddefault clauses inswitch statements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. Seetc39/proposal-explicit-resource-management#215 andrbuckton/ecma262#14 for details.

    Here is an example of code that is no longer allowed:

    switch(mode){case'read':usingreadLock=db.read()returnreadAll(readLock)case'write':usingwriteLock=db.write()returnwriteAll(writeLock)}

    That code will now have to be modified to look like this instead (note the additional{ and} block statements around each case body):

    switch(mode){case'read':{usingreadLock=db.read()returnreadAll(readLock)}case'write':{usingwriteLock=db.write()returnwriteAll(writeLock)}}

    This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).

v0.27.1

Compare Source

  • Fix bundler bug withvar nested insideif (#​4348)

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

  • Fix minifier bug withfor insidetry inside label (#​4351)

    This fixes an old regression fromversion v0.21.4. Some code was introduced to move the label inside thetry statement to address a problem with transforming labeledfor await loops to avoid theawait (the transformation involves converting thefor await loop into afor loop and wrapping it in atry 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 tofor loops that esbuild itself generates internally as part of thefor await transform. Here is an example of some affected code:

    // Original coded:{  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 singlereturn statement. Now it should also work if the body contains a single expression statement instead:

    // Original codeconstfoo=()=>{constcb=()=>{console.log(x())}returncb()}// Old output (with --minify)constfoo=()=>(()=>{console.log(x())})();// New output (with --minify)constfoo=()=>{console.log(x())};
  • The minifier now strips emptyfinally clauses (#​4353)

    This improvement means thatfinally clauses containing dead code can potentially cause the associatedtry statement to be removed from the output entirely in minified builds:

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

    With this release, callingSymbol 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 codeconsta=Symbol('foo')constb=Symbol(bar)// Old output (with --tree-shaking=true)consta=Symbol("foo");constb=Symbol(bar);// New output (with --tree-shaking=true)constb=Symbol(bar);
eslint/eslint (eslint)

v9.39.2

Compare Source

pnpm/pnpm (pnpm)

v10.26.1

Compare Source

v10.26.0

Compare Source

v10.25.0

Compare Source

rolldown/rolldown (rolldown)

v1.0.0-beta.55

Compare Source

🚀 Features

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. Getconfig help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated byMend Renovate. View therepository job log.

@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz CodeflowRun & review this pull request inStackBlitz Codeflow.

@pkg-pr-new
Copy link

pkg-pr-newbot commentedAug 4, 2025
edited
Loading

Open in StackBlitz

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

commit:d7038a5

@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 4 times, most recently from7340f05 to1f546aeCompareAugust 5, 2025 06:37
@renovaterenovatebot changed the titlefix(deps): update all non-major dependencieschore(deps): update dependency @farmfe/core to v2.0.0-nightly-20250729025629Aug 5, 2025
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from1f546ae to77445f6CompareAugust 5, 2025 06:39
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently from8437f2f to7d3db18CompareAugust 5, 2025 10:23
@renovaterenovatebot changed the titlechore(deps): update dependency @farmfe/core to v2.0.0-nightly-20250729025629chore(deps): update all non-major dependenciesAug 5, 2025
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently fromd51daac to594d842CompareAugust 7, 2025 09:05
@renovaterenovatebot changed the titlechore(deps): update all non-major dependenciesfix(deps): update all non-major dependenciesAug 7, 2025
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from594d842 tod6b2f11CompareAugust 8, 2025 05:13
@socket-security
Copy link

socket-securitybot commentedAug 8, 2025
edited
Loading

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

DiffPackageSupply Chain
Security
VulnerabilityQualityMaintenanceLicense
Updated@​typescript/​native-preview@​7.0.0-dev.20251203.1 ⏵ 7.0.0-dev.20251220.110010071+1100100
Addedslash@​5.1.01001007280100
Updatedesbuild@​0.27.0 ⏵ 0.27.2911007394100
Updatedrolldown@​1.0.0-beta.53 ⏵ 1.0.0-beta.5595+110074+198100
Updated@​sxzz/​test-utils@​0.5.13 ⏵ 0.5.1576+110079+194+3100
Updated@​farmfe/​cli@​2.0.0-nightly-20250411100807 ⏵ 2.0.0-nightly-2025082716274677-210076-189100
Updated@​rspack/​cli@​1.6.6 ⏵ 1.6.8991007997+1100
Updated@​farmfe/​core@​2.0.0-nightly-20250411141103 ⏵ 2.0.0-nightly-2025082716274679-310079-198+2100
Addedsource-map-js@​1.2.110010010080100
Updated@​rspack/​core@​1.6.6 ⏵ 1.6.897+11008097+1100
Updated@​vue/​reactivity@​3.6.0-alpha.5 ⏵ 3.5.269810080+195+1100
Updated@​types/​node@​24.10.1 ⏵ 24.10.410010081+196100
Updated@​vitest/​ui@​4.0.15 ⏵ 4.0.16991008299100
Updated@​sxzz/​eslint-config@​7.4.1 ⏵ 7.4.382+110010096100
Updated@​swc/​core@​1.15.3 ⏵ 1.15.79210010096+1100
Updated@​vitejs/​plugin-vue@​6.0.2 ⏵ 6.0.3100+110010093+2100
Updatedeslint@​9.39.1 ⏵ 9.39.294-310010096-1100
Updatedsass@​1.94.2 ⏵ 1.97.110010010097+2100
Updatedrollup@​4.53.3 ⏵ 4.54.098+110010099+1100

View full report

@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 12 times, most recently from5264693 toebfd8b3CompareAugust 13, 2025 03:02
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 18 times, most recently from38afa87 toc3a466fCompareDecember 17, 2025 03:16
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 10 times, most recently fromb1c3422 to228ad5aCompareDecember 19, 2025 21:52
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from228ad5a tod7038a5CompareDecember 20, 2025 10:31
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp