chore(deps): update all non-major dependencies #586
+2,490
−1,765
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.16.1
->4.17.0
22.15.34
->22.16.4
0.25.5
->0.25.6
3.1.2
->3.2.0
10.12.4
->10.13.1
4.44.1
->4.45.1
1.1.0
->1.1.2
4.1.8
->4.1.11
0.5.0
->0.5.2
1.16.0
->1.16.1
Release Notes
antfu/eslint-config (@antfu/eslint-config)
v4.17.0
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v4.16.2
Compare Source
No significant changes
View changes on GitHub
evanw/esbuild (esbuild)
v0.25.6
Compare Source
Fix a memory leak when
cancel()
is used on a build context (#4231)Calling
rebuild()
followed bycancel()
in rapid succession could previously leak memory. The bundler uses a producer/consumer model internally, and the resource leak was caused by the consumer being termianted while there were still remaining unreceived results from a producer. To avoid the leak, the consumer now waits for all producers to finish before terminating.Support empty
:is()
and:where()
syntax in CSS (#4232)Previously using these selectors with esbuild would generate a warning. That warning has been removed in this release for these cases.
Improve tree-shaking of
try
statements in dead code (#4224)With this release, esbuild will now remove certain
try
statements if esbuild considers them to be within dead code (i.e. code that is known to not ever be evaluated). For example:Consider negated bigints to have no side effects
While esbuild currently considers
1
,-1
, and1n
to all have no side effects, it didn't previously consider-1n
to have no side effects. This is because esbuild does constant folding with numbers but not bigints. However, it meant that unused negative bigint constants were not tree-shaken. With this release, esbuild will now consider these expressions to also be side-effect free:Support a configurable delay in watch mode before rebuilding (#3476, #4178)
The
watch()
API now takes adelay
option that lets you add a delay (in milliseconds) before rebuilding when a change is detected in watch mode. If you use a tool that regenerates multiple source files very slowly, this should make it more likely that esbuild's watch mode won't generate a broken intermediate build before the successful final build. This option is also available via the CLI using the--watch-delay=
flag.This should also help avoid confusion about the
watch()
API's options argument. It was previously empty to allow for future API expansion, which caused some people to think that the documentation was missing. It's no longer empty now that thewatch()
API has an option.Allow mixed array for
entryPoints
API option (#4223)The TypeScript type definitions now allow you to pass a mixed array of both string literals and object literals to the
entryPoints
API option, such as['foo.js', { out: 'lib', in: 'bar.js' }]
. This was always possible to do in JavaScript but the TypeScript type definitions were previously too restrictive.Update Go from 1.23.8 to 1.23.10 (#4204, #4207)
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-4673 and CVE-2025-22874) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.
Experimental support for esbuild on OpenHarmony (#4212)
With this release, esbuild now publishes the
@esbuild/openharmony-arm64
npm package for OpenHarmony. It contains a WebAssembly binary instead of a native binary because Go doesn't currently support OpenHarmony. Node does support it, however, so in theory esbuild should now work on OpenHarmony through WebAssembly.This change was contributed by @hqzing.
unjs/get-port-please (get-port-please)
v3.2.0
Compare Source
compare changes
🚀 Enhancements
🩹 Fixes
169.254.0.0/16
range to not allowed hostnames (#101)🏡 Chore
✅ Tests
console.log
implementation in error tests (#104)🤖 CI
❤️ Contributors
pnpm/pnpm (pnpm)
v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file from any config dependency named@pnpm/plugin-*
orpnpm-plugin-*
#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.rollup/rollup (rollup)
v4.45.1
Compare Source
2025-07-15
Bug Fixes
Pull Requests
v4.45.0
Compare Source
2025-07-12
Features
Bug Fixes
this
(#6001)Pull Requests
v4.44.2
Compare Source
2025-07-04
Bug Fixes
@__PURE__
annotations afternew
keyword (#5998)Pull Requests
@__PURE__
when nested after new in constructor invocations (@TrickyPi)ZTL-UwU/shadcn-docs-nuxt (shadcn-docs-nuxt)
v1.1.2
Compare Source
🚨 Breaking Changes
View changes on GitHub
v1.1.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
tailwindlabs/tailwindcss (tailwindcss)
v4.1.11
Compare Source
Fixed
emit(…)
(#18330)--watch=always
in the CLI's usage (#18337)@tailwindcss/vite
(#18384)v4.1.10
Compare Source
Fixed
w-[calc(100%-var(--offset))]
(#18289)v4.1.9
Compare Source
Fixed
/[0.16]
→/16
) (#18184)mb-[-32rem]
→-mb-128
) (#18212)blur
inwire:model.blur
(#18216)unjs/unifont (unifont)
v0.5.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.5.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
unjs/unstorage (unstorage)
v1.16.1
Compare Source
compare changes
🔥 Performance
getItems
andsetItems
(#641)getItems
(#642)🩹 Fixes
prefixStorage
type compatibility (#630)200
for delete response for better compatibility (#636)user-agent
header (#644)💅 Refactors
@netlify/blobs
v9 and v10 as peer dependency (#640)📖 Documentation
GitHub
casing (#632)📦 Build
🏡 Chore
✅ Tests
❤️ Contributors
Configuration
📅 Schedule: Branch creation - "on Monday" (UTC), 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.
👻 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.