fix(deps): update all non-major dependencies - #23217
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
August 10, 2026 11:16
8bb80d0 to
aad0d05
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
August 11, 2026 06:01
aad0d05 to
e9b3c98
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.4.1→^4.4.3^7.2.0→^7.3.0^1.2.3→^1.2.4^0.4.10→^0.4.12^1.8.0→^1.9.1^5.0.4→^5.0.5^3.5.40→^3.5.41^2.11.10→^2.11.13^4.28.7→^4.28.8^3.49.0→^3.50.0^0.28.1→^0.28.210.8.0→10.8.1^18.2.2→^18.3.0v4.37.4→v4.37.617.8.0→17.9.0^17.8.0→^17.9.0^0.61.0→^0.62.00.63.0^1.76.0→^1.77.01.78.0v6.0.9→v6.0.10^8.5.25→^8.5.26^4.7.4→^4.7.5^5.49.0→^5.49.2^4.23.1→^4.23.128.65.0→8.66.08.67.0^8.65.0→^8.66.08.67.0^8.2.0→^8.2.12.0.0-alpha.18→2.0.0-alpha.19^3.5.40→^3.5.41^3.5.40→^3.5.41^8.21.1→^8.21.3Release Notes
shikijs/shiki (@shikijs/vitepress-twoslash)
v4.4.3Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v4.4.2Compare Source
🐞 Bug Fixes
🏎 Performance
View changes on GitHub
sveltejs/vite-plugin-svelte (@sveltejs/vite-plugin-svelte)
v7.3.0Compare Source
Minor Changes
dynamicCompileOptions(#1386)Patch Changes
vitejs/devtools (@vitejs/devtools)
v0.4.12Compare Source
🚀 Features
View changes on GitHub
v0.4.11Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
vitejs/release-scripts (@vitejs/release-scripts)
v1.9.1Compare Source
v1.9.0Compare Source
vuejs/core (@vue/shared)
v3.5.41Compare Source
Bug Fixes
web-platform-dx/baseline-browser-mapping (baseline-browser-mapping)
v2.11.13Compare Source
v2.11.12Compare Source
v2.11.11Compare Source
browserslist/browserslist (browserslist)
v4.28.8Compare Source
including kaiosin baseline queries (by @Jaybhade).zloirock/core-js (core-js)
v3.50.0Compare Source
Iterator.zipIterator.zipKeyedes.namespace modules,/es/and/stable/namespace entriesIteratorchunking proposal:Iterator.prototype.chunksIterator.prototype.windowsTypeErrorinstead ofRangeErroron non-integer numberchunkSize/windowSize, following tc39/proposal-iterator-chunking/#30/actual/namespace entries, unconditional forced replacement changed to feature detectionIteratorincludes stage 3 proposal:Iterator.prototype.includesIteratorjoin stage 3 proposal:Iterator.prototype.joinPromise.allKeyedPromise.allSettledKeyedRangeErroron finite unsafe integerlimitinIterator.prototype.{ drop, take }, following tc39/ecma262/#3776PromiseResolvesemantics inPromise.try, following tc39/ecma262/#3883Iterator.prototype.flatMapbug case, #1538Object.prototype.__proto__instead of removing it, so the feature detection updatedJSON.stringifypolyfill with an array replacer - keys order now follows the replacer, inherited and non-enumerable properties are no longer ignored, #1539URL/URLSearchParamsparsing a little more correct (char sets, percent coding, etc)URL#toJSONwhenURL#toStringis reassigned after core-js is importedSymbol.forget-iterator/get-iterator-methodfixesString.prototype.{ match, search }polyfills conversion orderMAX_SAFE_INTEGERexcess check inArray.fromand{ Map, Object }.groupBypolyfillsMath.{ asinh, cbrt, log1p }polyfills with big and small valuesUint8Arraybase64 methodsescapeArray.prototype.fillonArrayBufferconstructor and%TypedArray%.prototype.fillpackage.jsonof some missed packages (just to satisfypublint)Iterator.prototype.{ drop, take }properly supported from:Promise.trymarked as not properly supported in all enginesIterator.prototype.{ chunks, windows }marked as shipped in FF154Iterator.prototype.includesmarked as shipped in FF154Iterator.prototype.includesmarked as shipped in Bun 1.4.0Iterator.prototype.joinmarked as shipped in FF154Array.prototype.includesWebKit bug marked as fixed in:queueMicrotaskBun bug marked as fixed in Bun 1.4.0evanw/esbuild (esbuild)
v0.28.2Compare Source
Fix tree shaking bug due to TypeScript import alias (#4507)
This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific
importassignment and looks something like this:Fix CSS minification bug involving
&(#4497)This release fixes a bug where esbuild's CSS minifier incorrectly removed a
&when it was unsafe to do so. Here is an example:This should match
<span class="a"><span class="b"><span class="b">yes</span></span></span>but not<span class="a"><span class="b">no</span></span>. The old output incorrectly matched both.Avoid overwriting input files without
--allow-overwrite(#4484)For example:
esbuild input.js --outfile=input.jstells esbuild to overwriteinput.jswith the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops.This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless
--allow-overwriteis explicitly present. This is done by not writing out any files when a build error is encountered.Fix incorrect code generated when using top-level await (#4498)
Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing
asyncon one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing anasyncmodule wrapper.Fix a minification bug with lowered logical assignment operators (#4508)
This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed:
Fix a potential deadlock when the JavaScript API is used incorrectly (#4503, #4506)
The JavaScript API runs the native esbuild executable as a long-lived child process and communicates with it over stdin/stdout/stderr. Each API request is asynchronous and the executable stays open as long as it has work to do, which is as long as either stdin is still open (meaning there may be more API requests) or there are currently requests being processed.
Previously esbuild's tracking of outstanding API requests missed decrementing a reference count in an edge case where esbuild's JavaScript API was used incorrectly and the API request returned an error. This could in some cases cause esbuild's native executable to exit with an error message about a deadlock. This release fixes the reference counting bug.
This fix was submitted by @ZuBB.
Handle target collisions (#4509)
It's possible to specify the same target engine multiple times, such as with
--target=chrome1,chrome99. This edge case wasn't anticipated and previously took the last version for the duplicated target engine instead of the minimum version (sochrome99in this case instead ofchrome1). With this release, esbuild will now pick the minimum version between all duplicated target engines.Force
.mp3files to use theaudio/mpegMIME type (#4485)MIME type detection for esbuild's data URLs uses Go's built-in MIME type detection, which is based on the MIME sniffing standard. This works correctly for MP3 files that start with the byte sequence
ID3, which is commonly the case. However, it's possible to construct valid MP3 files that do not start withID3, and that perhaps Go's built-in MIME type detection doesn't implement the "Signature for MP3 without ID3" part of the algorithm. This results in some.mp3files incorrectly using theapplication/octet-streamMIME type instead ofaudio/mpeg. With this release, esbuild will now always use theaudio/mpegMIME type for files ending in.mp3.Add a new TypeScript syntax warning
TypeScript 7 turned some previously-valid TypeScript syntax into a syntax error because it was confusing. TypeScript 6 accepts
1 + 2 as number * 3as valid syntax but confusingly converts it to(1 + 2) * 3instead of the more intuitive conversion to1 + (2 * 3). This syntax is now an error in TypeScript 7+. With this release, esbuild will now warn about the use of this syntax:See microsoft/TypeScript#63527 for more information.
Add support for formatting errors for Visual Studio (#4460)
Visual Studio has a specific style that it expects log messages to be in for them to show up in the UI when esbuild is run as a custom build step. The current log style that esbuild uses doesn't conform to this specific style.
With this release, esbuild has a new log style for Visual Studio (and other tools in the MSBuild ecosystem) that can be enabled with
--log-style=visualstudio. Here is an example log message in this style:This log style is also available via the JS and Go APIs, and can now be used with the existing
formatMessagesAPI.Fix a bug with CSS gamut mapping (#4488)
Due to a typo, the fallback colors generated for CSS colors outside of the sRGB gamut weren't correct. This release fixes the generated colors to use the intended algorithm.
This fix was submitted by @chatman-media.
eslint/eslint (eslint)
v10.8.1Compare Source
Bug Fixes
18eb0a7fix: prevent ASI hazard inno-unused-labelsautofix (#21173) (dongkyu lee)151ba3ffix: false positives ingetter-returnandaccessor-pairs(#21163) (Grit)6898df9fix: ignore meta-property names inid-denylist(#21166) (Pixel)4d7db66fix: ignore meta-property names inid-match(#21167) (Pixel)677214efix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)Documentation
7d0cbf8docs: Update README (GitHub Actions Bot)0a05812docs: add missing backticks tono-duplicate-imports.js(#21183) (Lee Daeun)678c90bdocs: Update README (GitHub Actions Bot)8a10424docs: Update README (GitHub Actions Bot)69bb948docs: Update README (GitHub Actions Bot)Chores
0a14800chore: update github/codeql-action action to v4.37.4 (#21196) (renovate[bot])05adcb1test: fix failing ecosystem test foreslint-plugin-unicorn(#21191) (Lazizbek Ergashev)5611035test: add error locations info tono-void(#21185) (Lee Daeun)ee47333ci: bump github/codeql-action from 4 to 4.37.3 (#21176) (dependabot[bot])f131c03chore: improve ecosystem test failure reporting (#20937) (crimsonjay0)1f6eddechore: update ecosystem plugins (#21182) (ESLint Bot)d3266fbchore: unpinwebpackdependency (#21172) (Francesco Trotta)65a6519chore: add allowScripts field to package.json (#21092) (GiHoon Noh)22e5256ci: addtriage:nolabel to Dependabot PRs (#21141) (lumir)55c9038ci: bump actions/labeler from 6 to 7 (#21159) (dependabot[bot])7280e78chore: update dependency prettier to v3.9.6 (#21162) (renovate[bot])eddbad6test: fix failing ecosystem test foreslint-plugin-unicorn(#21156) (Francesco Trotta)60a178dchore: update ecosystem plugins (#21150) (ESLint Bot)f9f61dctest: add error locations tono-unreachable(#21151) (JIYEON)d086293test: add error locations tono-undef(#21147) (JIYEON)cc01b67test: add error locations tono-useless-catch(#21144) (devoil)688e75echore: add missing backticks in JSDoc (#21143) (Bo Hyun Kim)7c1e175test: add error locations torequire-await(#21145) (Grit)588a26dtest: add error locations tono-extra-label(#21139) (dongkyu lee)059aa89test: add error locations tono-useless-concat(#21140) (dongkyu lee)5a452a8test: add error locations tono-const-assign(#21138) (dongkyu lee)eslint-community/eslint-plugin-n (eslint-plugin-n)
v18.3.0Compare Source
🌟 Features
prefer-import/assert-strictrule (#553) (d7afbed)🩹 Fixes
📚 Documentation
🧹 Chores
n(#556) (d499fc1)github/codeql-action (github/codeql-action)
v4.37.6Compare Source
.github/codeql-config.ymlto align it with the suggested path that is used elsewhere. #4070v4.37.5Compare Source
initAction instead of falling back to downloading the bundle before extracting it. #4061sindresorhus/globals (globals)
v17.9.0Compare Source
oxc-project/oxc (oxfmt)
v0.62.0Compare Source
🐛 Bug Fixes
e6e584boxfmt: Type jsdoc. enum options (#25008) (leaysgur)oxc-project/oxc (oxlint)
v1.77.0Compare Source
🐛 Bug Fixes
5c0fa61linter/eslint/no-warning-comments: Unify config structs and remove manual options docs (#25151) (Mikhail Baev)📚 Documentation
9dc7756linter/typescript/no-unnecessary-condition: Clarify options (#25110) (camc314)pnpm/action-setup (pnpm/action-setup)
v6.0.10Compare Source
postcss/postcss (postcss)
v8.5.26Compare Source
list.split()regression (by @lazerg).sveltejs/language-tools (svelte-check)
v4.7.5Compare Source
Patch Changes
fix: prevent silent error during start-up caused by unhandled promise (#3096)
Updated dependencies [
1df53d8]:terser/terser (terser)
v5.49.2Compare Source
importexpressionsv5.49.1Compare Source
new something(), which also has parenthesesimport()expression is parsed, it is no longer treated as a function call.privatenumber/tsx (tsx)
v4.23.12Compare Source
Bug Fixes
import.metawhen tokens are split by comments or newlines (#829) (ed9d330), closes #828This release is also available on:
v4.23.11Compare Source
v4.23.10Compare Source
Bug Fixes
This release is also available on:
v4.23.9Compare Source
Bug Fixes
This release is also available on:
v4.23.8Compare Source
Bug Fixes
This release is also available on:
v4.23.7Compare Source
Bug Fixes
Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.