fix(deps): update patch updates - #360
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
2 times, most recently
from
July 29, 2026 05:11
ee52720 to
942c76a
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
4 times, most recently
from
August 1, 2026 10:41
9930e77 to
004efb2
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
12 times, most recently
from
August 7, 2026 13:29
95aef9d to
4337ef0
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
6 times, most recently
from
August 12, 2026 10:08
4bb6378 to
159d33f
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
7 times, most recently
from
August 25, 2026 09:26
0c2dc79 to
6a78132
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
12 times, most recently
from
September 1, 2026 20:12
452113e to
6ac41b8
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
5 times, most recently
from
September 7, 2026 13:52
a638dcc to
e8db7ba
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
3 times, most recently
from
September 8, 2026 13:16
cab1dec to
c8fe6c1
Compare
renovate
Bot
force-pushed
the
renovate/patch-updates
branch
from
September 9, 2026 07:05
c8fe6c1 to
d786a93
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:
1.3.10→1.3.124.1.10→4.1.117.0.0-rc13→7.0.0-rc140.28.1→0.28.24.13.0→4.13.70.5.3→0.5.47.0.6→7.0.80.14.3→0.14.46.2.4→6.2.123.9.16→3.9.220.35.3→0.35.41.3.7→1.3.278.10.0→8.10.24.1.10→4.1.118.21.1→8.21.3Release Notes
homebridge/ciao (@homebridge/ciao)
v1.3.12Compare Source
Changes
v1.3.11Compare Source
Changes
vitest-dev/vitest (@vitest/coverage-v8)
v4.1.11Compare Source
🐞 Bug Fixes
View changes on GitHub
WhiskeySockets/Baileys (@whiskeysockets/baileys)
v7.0.0-rc14Compare Source
evanw/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.
honojs/hono (hono)
v4.13.7Compare Source
v4.13.6Compare Source
v4.13.5Compare Source
v4.13.4Compare Source
v4.13.3Compare Source
What's Changed
Full Changelog: honojs/hono@v4.13.2...v4.13.3
v4.13.2Compare Source
What's Changed
Full Changelog: honojs/hono@v4.13.1...v4.13.2
v4.13.1Compare Source
rhinobase/hono-rate-limiter (hono-rate-limiter)
v0.5.4Compare Source
Bug Fixes 🐛
Documentation 📚
Internal Changes 🔧
kaelzhang/node-ignore (ignore)
v7.0.8Compare Source
PATCH Brings pattern matching closer to
git:gitdoes:\*matches a literal*rather than acting as a wildcard,\?matches a literal?, and\d,\b,\/and the like are the plain characters instead of regular-expression escapes.git.An upgrade is recommended for all dependents.
v7.0.7Compare Source
panva/jose (jose)
v6.2.12Compare Source
Documentation
Refactor
Performance
v6.2.11Compare Source
v6.2.10Compare Source
Fixes
Documentation
Refactor
v6.2.9Compare Source
Fixes
v6.2.8Compare Source
Fixes
Refactor
v6.2.7Compare Source
Fixes
Refactor
v6.2.6Compare Source
Fixes
v6.2.5Compare Source
Fixes
Documentation
Refactor
nodemailer/mailparser (mailparser)
v3.9.22Compare Source
Bug Fixes
v3.9.21Compare Source
Bug Fixes
v3.9.20Compare Source
Bug Fixes
v3.9.19Compare Source
Bug Fixes
v3.9.18Compare Source
Bug Fixes
v3.9.17Compare Source
Bug Fixes
lovell/sharp (sharp)
v0.35.4Compare Source
:::note[Dependency versions]
https://github.com/lovell/sharp-libvips/releases/tag/v1.3.3
:::
Bound resize dimensions to coordinate limit.
Bound composite left and top to coordinate limit.
#4564
@metsw24-max
Round palette bit depth up for png and gif colours.
#4569
@metsw24-max
Ensure tiff.subifd input option is used.
#4572
@metsw24-max
Ensure
info.pagesis correct when limiting input page range.#4578
@metsw24-max
Improve support for input Streams finishing before output is requested.
#4584
@Jaybhade
sinclairzx81/typebox (typebox)
v1.3.27Compare Source
v1.3.26Compare Source
v1.3.25Compare Source
v1.3.24Compare Source
v1.3.23Compare Source
v1.3.22Compare Source
v1.3.21Compare Source
v1.3.20Compare Source
v1.3.19Compare Source
v1.3.18Compare Source
v1.3.17Compare Source
v1.3.16Compare Source
v1.3.15Compare Source
v1.3.14Compare Source
v1.3.13Compare Source
v1.3.12Compare Source
v1.3.11Compare Source
v1.3.10Compare Source
v1.3.9Compare Source
v1.3.8Compare Source
nodejs/undici (undici)
v8.10.2Compare Source
High severity
BalancedPoolcould drop function-valued connection options while cloning its configuration, including custom TLS certificate validation callbacks. Undici now preservesconnectand legacytlsoptions when creating upstreams. Fixed by 8f5868fb.TypeErrorthat could terminate the process. Undici now rejects the handshake with protocol error 1002. Fixed by 66e12816.Medium severity
WebSocketStreamclose could create an unobserved rejected promise when its writable stream was locked, potentially terminating the process. Undici now propagates the failure through the retained writable stream controller. Fixed by 662d0ea6.Set-Cookie, disclosing one user's cookies to another caller. Undici now excludes these responses from shared caches, including existing entries and revalidation paths. Fixed by cb75bbb3.maxSize. Fixed by 7aac7f12.Low severity
POSTorDELETE. Undici now restricts cache reads and writes to safe methods while preserving invalidation by successful unsafe requests. Fixed by 2be07bf9.Content-Lengthwas present. Undici now enforcesmaxSizeagainst received bytes and aborts oversized responses. Fixed by 6d583124.Content-Rangeagainst the original response framing before resuming. Fixed by 0160a719.What's Changed
New Contributors
Full Changelog: <nodejs/undici@v8.10.1...v8.
Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Enabled.
♻ 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.