chore(deps): update all non-major dependencies - #3086
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
❌ Deploy Preview for dtsx failed. Why did it fail? →
|
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
5 times, most recently
from
April 8, 2026 16:32
61ed6ee to
b87e7e3
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
5 times, most recently
from
April 16, 2026 03:11
6dd80d5 to
63953e4
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
5 times, most recently
from
April 27, 2026 12:41
b58cfd0 to
b584df4
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
2 times, most recently
from
April 28, 2026 00:52
12129d3 to
b66c751
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
8 times, most recently
from
May 4, 2026 05:15
9c5c761 to
4cdecef
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
4 times, most recently
from
May 24, 2026 22:24
d1e713e to
ff6ff5e
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
7 times, most recently
from
May 29, 2026 22:35
db2205c to
e83a201
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
2 times, most recently
from
June 8, 2026 15:13
622dd38 to
082e722
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
6 times, most recently
from
June 15, 2026 16:02
00830a2 to
638e100
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
2 times, most recently
from
June 25, 2026 11:02
69cf686 to
b63aac9
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
6 times, most recently
from
June 29, 2026 22:27
a3ae49a to
c8adeec
Compare
github-actions
Bot
force-pushed
the
buddy-bot/update-non-major-updates
branch
2 times, most recently
from
July 4, 2026 22:59
6815806 to
29bec83
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:
Package Updates Summary
📦 npm Dependencies
14 packages will be updated
0.1.4->0.2.141.3.13->1.4.00.9.19->0.10.50.27.7->0.28.20.121.0->0.147.00.121.0->0.147.05.106.2->5.110.10.2.6->0.2.170.2.7->0.2.130.1.5->0.1.80.2.1->0.2.110.3.1->0.3.30.15.11->0.15.190.1.28->0.1.65Release Notes
stacksjs/bunpress (@stacksjs/bunpress)
0.1.4 -> 0.2.14
v0.2.14Compare Source
Released by github-actions[bot] on 8/25/2026
v0.2.13Compare Source
Released by github-actions[bot] on 8/19/2026
v0.2.12Compare Source
Released by github-actions[bot] on 8/19/2026
DefinitelyTyped/DefinitelyTyped (@types/bun)
1.3.13 -> 1.4.0
Compare Source
TypeScript definitions for bun
📖 View Release Notes
🔗 View Changelog
Release Notes
Changelog
stacksjs/buddy-bot (buddy-bot)
0.9.19 -> 0.10.5
v0.10.5Compare Source
Compare changes
⚡ Performance Improvements
🔧 Chores
Contributors
Released by github-actions[bot] on 8/19/2026
v0.9.27Compare Source
Released by github-actions[bot] on 8/8/2026
v0.9.26Compare Source
Released by github-actions[bot] on 8/8/2026
evanw/esbuild (esbuild)
0.27.7 -> 0.28.2
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 no...[View full release notes]
Released by github-actions[bot] on 8/8/2026
v0.28.1Compare Source
Disallow
\in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a
\backslash character. It happened due to the use of Go'spath.Clean()function, which only handles Unix-style/characters. HTTP requests with paths containing\are no longer allowed.Thanks to [dellalibera](https://github.com/dellalibera) for reporting this issue.
Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)
The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if ...
[View full release notes]
Released by github-actions[bot] on 6/11/2026
v0.28.0Compare Source
Add support for
with { type: 'text' }imports (#4435)The import text proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by Deno and Bun. So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing
textloader. Here's an example:Add integrity checks to fallback download path (
#4343)Installing esbuild via npm is somewhat complicated with several different edge cases (see esbuild's documentation for details). If the re...
[View full release notes]
Released by github-actions[bot] on 4/2/2026
oxc-project/oxc (oxc-parser)
0.121.0 -> 0.147.0
crates_v0.147.0Compare Source
🚀 Features
#25403) (Armano)🐛 Bug Fixes
#26047) (camc314)FormalParameterRestspans (#26021) (camc314)iftoforin sloppy mode when containing function declaration (#25638) (sapphi-red)#25998) (Boshen)PrivateIdentifiers which have changed (#25958) (overlookmotel)#25947) (camc314)iftoforwhen the body contains a function declaration (#25637) (sapphi-red)#before private identifier in TS signature key (#25938) (overlookmotel)+when the other operand has side effects (#25645) (Kotaro Chikuba)⚡ Pe...
[View full release notes]
Released by github-actions[bot] on 8/24/2026
apps_v1.80.0Compare Source
Table of Contents
Oxlint v1.80.0
🚀 Features
#26012) (Mikhail Baev)🐛 Bug Fixes
#26044) (camc314)#25996) (Rahul Mishra)FormalParameterRestspans (#26021) (camc314)#26020) (Cameron)#25998) (Boshen)vueimports via shared import helpers (#25903) (Connor Shea)reactimports by symbol (#25901) (Connor Shea)#25905) (Connor Shea)[View full release notes]
Released by github-actions[bot] on 8/24/2026
crates_v0.146.0Compare Source
🚀 Features
#25755) (Armano)🐛 Bug Fixes
#25871) (camc314)#25909) (Dunqing)#25889) (camc314)#25872) (camc314)⚡ Performance
sourceTextonly once (#25887) (overlookmotel)#25891) (Armano)growMappingBuffer(#25886) (overlookmotel)#25885) (overlookmotel)locationpassed torecordSourceMappingalways a number (#25884) (overlookmotel)[View full release notes]
Released by github-actions[bot] on 8/19/2026
oxc-project/oxc (oxc-transform)
0.121.0 -> 0.147.0
crates_v0.147.0Compare Source
🚀 Features
#25403) (Armano)🐛 Bug Fixes
#26047) (camc314)FormalParameterRestspans (#26021) (camc314)iftoforin sloppy mode when containing function declaration (#25638) (sapphi-red)#25998) (Boshen)PrivateIdentifiers which have changed (#25958) (overlookmotel)#25947) (camc314)iftoforwhen the body contains a function declaration (#25637) (sapphi-red)#before private identifier in TS signature key (#25938) (overlookmotel)+when the other operand has side effects (#25645) (Kotaro Chikuba)⚡ Pe...
[View full release notes]
Released by github-actions[bot] on 8/24/2026
apps_v1.80.0Compare Source
Table of Contents
Oxlint v1.80.0
🚀 Features
#26012) (Mikhail Baev)🐛 Bug Fixes
#26044) (camc314)#25996) (Rahul Mishra)FormalParameterRestspans (#26021) (camc314)#26020) (Cameron)#25998) (Boshen)vueimports via shared import helpers (#25903) (Connor Shea)reactimports by symbol (#25901) (Connor Shea)#25905) (Connor Shea)[View full release notes]
Released by github-actions[bot] on 8/24/2026
crates_v0.146.0Compare Source
🚀 Features
#25755) (Armano)🐛 Bug Fixes
#25871) (camc314)#25909) (Dunqing)#25889) (camc314)#25872) (camc314)⚡ Performance
sourceTextonly once (#25887) (overlookmotel)#25891) (Armano)growMappingBuffer(#25886) (overlookmotel)#25885) (overlookmotel)locationpassed torecordSourceMappingalways a number (#25884) (overlookmotel)[View full release notes]
Released by github-actions[bot] on 8/19/2026
webpack/webpack (webpack)
5.106.2 -> 5.110.1
v5.110.1Compare Source
Patch Changes
Fix a capture-group-less
snapshot.managedPathsRegExp; speed up cache writes. (by [alexander-akait](https://github.com/alexander-akait) in#21843)Throw
SyntaxError, orWebAssembly.CompileError, from an unparsable module. (by [alexander-akait](https://github.com/alexander-akait) in#21847)Accept the
optimization.minimize: trueshorthand set by a plugin inapply(). (by [AgentEnder](https://github.com/AgentEnder) in#21845)Released by github-actions[bot] on 8/27/2026
v5.110.0Compare Source
Minor Changes
Wrap concatenated modules in lazy
__webpack_require__.cwaccessors and inlinerequire(), keeping a wrapped body's names and side effects intact. (by [hai-x](https://github.com/hai-x) in#21519)Add performance hints reporting what a build costs: duplicate packages and modules, circular dependencies, broad contexts, large modules and chunks, hotspots,
eval, missing PURE annotations, polyfills, redundant dynamic imports, OS-dependent rules, cache effectiveness, how chunks load, what splitting refused, why an optimization was skipped, and rules, defines, externals, aliases and barrel reexports nothing uses. An oversized asset names its largest modules, and an entrypoint carrying the runtime recommendsoptimization.runtimeChunk. Enable every check not set individually withperformance.all, report hints in stats only withperformance.hints: "stats", and get them in a stable order that leaves the bui...[View full release notes]
Released by github-actions[bot] on 8/27/2026
v5.109.2Compare Source
Patch Changes
Resolve aliases pointing at a package directory whose name ends with
.jsagain. (by [alexander-akait](https://github.com/alexander-akait) in#21542)Name CSS sources in source maps by their resource path, without the
cssprefix. (by [bjohansebas](https://github.com/bjohansebas) in#21536)Delete no longer referenced files from the filesystem cache directory after storing the cache, age them by recorded time so restored caches are cleaned too, and collect every fully expired pack in one store instead of one per build. (by [bjohansebas](https://github.com/bjohansebas) in
#21528)Report
"universal"as the loader context target for the universal target. (by [alexander-akait](https://github.com/alexander-akait) in [#21540](`w...[View full release notes]
Released by github-actions[bot] on 7/28/2026
stacksjs/bumpx (@stacksjs/bumpx)
0.2.6 -> 0.2.17
v0.2.17Compare Source
Released by github-actions[bot] on 8/19/2026
v0.2.9Compare Source
Released by github-actions[bot] on 7/22/2026
v0.2.8Compare Source
Released by github-actions[bot] on 7/22/2026
stacksjs/clapp (@stacksjs/clapp)
0.2.7 -> 0.2.13
v0.2.13Compare Source
Released by github-actions[bot] on 8/13/2026
v0.2.9Compare Source
Released by github-actions[bot] on 5/11/2026
v0.2.8Compare Source
Released by github-actions[bot] on 5/6/2026
stacksjs/gitlint (@stacksjs/gitlint)
0.1.5 -> 0.1.8
v0.1.8Compare Source
Released by github-actions[bot] on 8/19/2026
v0.1.7Compare Source
Released by github-actions[bot] on 7/22/2026
v0.x.xCompare Source
Released by github-actions[bot] on 5/8/2026
stacksjs/logsmith (@stacksjs/logsmith)
0.2.1 -> 0.2.11
v0.2.11Compare Source
Released by github-actions[bot] on 7/28/2026
v0.2.10Compare Source
Released by github-actions[bot] on 7/28/2026
v0.2.9Compare Source
Released by github-actions[bot] on 7/26/2026
stacksjs/bun-git-hooks (bun-git-hooks)
0.3.1 -> 0.3.3
v0.3.3Compare Source
Released by github-actions[bot] on 8/19/2026
v0.3.2Compare Source
Released by github-actions[bot] on 5/14/2026
stacksjs/bunfig (bunfig)
0.15.11 -> 0.15.19
v0.15.19Compare Source
Released by github-actions[bot] on 8/19/2026
v0.15.18Compare Source
Released by github-actions[bot] on 8/19/2026
v0.15.17Compare Source
Released by github-actions[bot] on 7/31/2026
pickier/pickier (pickier)
0.1.28 -> 0.1.65
v0.1.65Compare Source
Released by github-actions[bot] on 8/23/2026
v0.1.64Compare Source
Released by github-actions[bot] on 8/23/2026
v0.1.63Compare Source
Released by github-actions[bot] on 8/23/2026
📊 Package Statistics
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Buddy 🤖