fix(deps): update all non-major dependencies #65
+875
−836
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:
^0.5.4
->^0.5.5
^22.13.14
->^22.15.2
^1.4.2
->^1.4.3
^0.25.2
->^0.25.3
^9.23.0
->^9.25.1
10.7.0
->10.9.0
^4.38.0
->^4.40.0
^0.6.10
->^0.9.8
^5.8.2
->^5.8.3
^2.2.2
->^2.3.2
^0.3.2
->^0.3.6
^0.5.1
->^0.5.2
^6.2.4
->^6.3.3
^3.1.1
->^3.1.2
^5.98.0
->^5.99.7
Release Notes
sxzz/test-utils (@sxzz/test-utils)
v0.5.5
Compare Source
🚀 Features
View changes on GitHub
sxzz/ast-kit (ast-kit)
v1.4.3
Compare Source
🐞 Bug Fixes
View changes on GitHub
evanw/esbuild (esbuild)
v0.25.3
Compare Source
Fix lowered
async
arrow functions beforesuper()
(#4141, #4142)This change makes it possible to call an
async
arrow function in a constructor before callingsuper()
when targeting environments withoutasync
support, as long as the function body doesn't referencethis
. Here's an example (notice the change fromthis
tonull
):Some background: Arrow functions with the
async
keyword are transformed into generator functions for older language targets such as--target=es2016
. Since arrow functions capturethis
, the generated code forwardsthis
into the body of the generator function. However, JavaScript class syntax forbids usingthis
in a constructor before callingsuper()
, and this forwarding was problematic since previously happened even when the function body doesn't usethis
. Starting with this release, esbuild will now only forwardthis
if it's used within the function body.This fix was contributed by @magic-akari.
Fix memory leak with
--watch=true
(#4131, #4132)This release fixes a memory leak with esbuild when
--watch=true
is used instead of--watch
. Previously using--watch=true
caused esbuild to continue to use more and more memory for every rebuild, but--watch=true
should now behave like--watch
and not leak memory.This bug happened because esbuild disables the garbage collector when it's not run as a long-lived process for extra speed, but esbuild's checks for which arguments cause esbuild to be a long-lived process weren't updated for the new
--watch=true
style of boolean command-line flags. This has been an issue since this boolean flag syntax was added in version 0.14.24 in 2022. These checks are unfortunately separate from the regular argument parser because of how esbuild's internals are organized (the command-line interface is exposed as a separate Go API so you can build your own custom esbuild CLI).This fix was contributed by @mxschmitt.
More concise output for repeated legal comments (#4139)
Some libraries have many files and also use the same legal comment text in all files. Previously esbuild would copy each legal comment to the output file. Starting with this release, legal comments duplicated across separate files will now be grouped in the output file by unique comment content.
Allow a custom host with the development server (#4110)
With this release, you can now use a custom non-IP
host
with esbuild's local development server (either with--serve=
for the CLI or with theserve()
call for the API). This was previously possible, but was intentionally broken in version 0.25.0 to fix a security issue. This change adds the functionality back except that it's now opt-in and only for a single domain name that you provide.For example, if you add a mapping in your
/etc/hosts
file fromlocal.example.com
to127.0.0.1
and then useesbuild --serve=local.example.com:8000
, you will now be able to visit http://local.example.com:8000/ in your browser and successfully connect to esbuild's development server (doing that would previously have been blocked by the browser). This should also work with HTTPS if it's enabled (see esbuild's documentation for how to do that).Add a limit to CSS nesting expansion (#4114)
With this release, esbuild will now fail with an error if there is too much CSS nesting expansion. This can happen when nested CSS is converted to CSS without nesting for older browsers as expanding CSS nesting is inherently exponential due to the resulting combinatorial explosion. The expansion limit is currently hard-coded and cannot be changed, but is extremely unlikely to trigger for real code. It exists to prevent esbuild from using too much time and/or memory. Here's an example:
Previously, transforming this file with
--target=safari1
took 5 seconds and generated 40mb of CSS. Trying to do that will now generate the following error instead:Fix path resolution edge case (#4144)
This fixes an edge case where esbuild's path resolution algorithm could deviate from node's path resolution algorithm. It involves a confusing situation where a directory shares the same file name as a file (but without the file extension). See the linked issue for specific details. This appears to be a case where esbuild is correctly following node's published resolution algorithm but where node itself is doing something different. Specifically the step
LOAD_AS_FILE
appears to be skipped when the input ends with..
. This release changes esbuild's behavior for this edge case to match node's behavior.Update Go from 1.23.7 to 1.23.8 (#4133, #4134)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses, such as for CVE-2025-22871.
As a reminder, esbuild's development server is intended for development, not for production, so I do not consider most networking-related vulnerabilities in Go to be vulnerabilities in esbuild. Please do not use esbuild's development server in production.
eslint/eslint (eslint)
v9.25.1
Compare Source
v9.25.0
Compare Source
v9.24.0
Compare Source
pnpm/pnpm (pnpm)
v10.9.0
Compare Source
Minor Changes
Added support for installing JSR packages. You can now install JSR packages using the following syntax:
or with a version range:
For example, running:
will add the following entry to your
package.json
:When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:
Related issue: #8941.
Note: The
@jsr
scope defaults to https://npm.jsr.io/ if the@jsr:registry
setting is not defined.Added a new setting,
dangerouslyAllowAllBuilds
, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this topnpm-workspace.yaml
:dangerouslyAllowAllBuilds
has the same effect but also allows to be set globally via:It can also be set when running a command:
Patch Changes
verifyDepsBeforeRun
whennodeLinker
ishoisted
and there is a workspace package without dependencies andnode_modules
directory #9424.verifyDepsBeforeRun
support fornodeLinker: pnp
. CombiningverifyDepsBeforeRun
andnodeLinker: pnp
will now print a warning.v10.8.1
Compare Source
Patch Changes
package.json
,onlyBuiltDependencies
will be written topnpm-workspace.yaml
file #9404.v10.8.0
Compare Source
Minor Changes
Experimental. A new hook is supported for updating configuration settings. The hook can be provided via
.pnpmfile.cjs
. For example:Now you can use the
pnpm add
command with the--config
flag to install new configurational dependencies #9377.Patch Changes
!/
inpnpm-workspace.yaml
. This fixes a regression introduced by #9169.pnpm audit --fix
should update the overrides inpnpm-workspace.yaml
.pnpm link
should update overrides inpnpm-workspace.yaml
, not inpackage.json
#9365.v10.7.1
: pnpm 10.7.1Compare Source
Patch Changes
pnpm config set
should convert the settings to their correct type before adding them topnpm-workspace.yaml
#9355.pnpm config get
should read auth related settings via npm CLI #9345.~/
in a path in.npmrc
with the home directory #9217.Platinum Sponsors
Gold Sponsors
rollup/rollup (rollup)
v4.40.0
Compare Source
2025-04-12
Features
eval
warnings on first render and only when the call is not tree-shaken (#5892)Bug Fixes
Pull Requests
treeshake: false
breaking destructured namespace imports (@Skn0tt)v4.39.0
Compare Source
2025-04-02
Features
Bug Fixes
id
property as optional in the filter for theresolveId
hook (#5896)Pull Requests
rolldown/tsdown (tsdown)
v0.9.8
Compare Source
🚀 Features
View changes on GitHub
v0.9.7
Compare Source
🚀 Features
--debug
option - by @btea and @sxzz in https://github.com/rolldown/tsdown/issues/147 (1e6f2)env
option - by @fu050409 in https://github.com/rolldown/tsdown/issues/152 (e7edf)🐞 Bug Fixes
🏎 Performance
module.enableCompileCache()
- by @btea in https://github.com/rolldown/tsdown/issues/153 (a60d9)View changes on GitHub
v0.9.6
Compare Source
🐞 Bug Fixes
format
&target
- by @sxzz (06700)brotli
by default for performance - by @sxzz (4b95e)View changes on GitHub
v0.9.5
Compare Source
🚀 Features
View changes on GitHub
v0.9.4
Compare Source
🚀 Features
external
cli option - by @sxzz (87cf4)View changes on GitHub
v0.9.3
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.9.2
Compare Source
🐞 Bug Fixes
cwd
for entry glob - by @sxzz (20d68)View changes on GitHub
v0.9.1
Compare Source
🚀 Features
🐞 Bug Fixes
PackageType
- by @sxzz (abbbd)View changes on GitHub
v0.9.0
Compare Source
🚨 Breaking Changes
dts.isolatedDeclaration
todts.isolatedDeclarations
- by @sxzz (afc8e)🚀 Features
outExtensions
option - by @sxzz (97154)🐞 Bug Fixes
View changes on GitHub
v0.8.1
Compare Source
🚀 Features
rolldown-plugin-dts
for input alias support - by @sxzz (20c9a)tsconfig
option - by @sxzz (64eef)🐞 Bug Fixes
tsup-node
during migration - by @KazariEX in https://github.com/rolldown/tsdown/issues/99 (9060e)View changes on GitHub
v0.8.0
Compare Source
🚀 Features
onSuccess
- by @sxzz (52a7e)rolldown-plugin-dts
for bunding dts - by @sxzz (70a76)View changes on GitHub
v0.7.5
Compare Source
No significant changes
View changes on GitHub
v0.7.4
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.7.3
Compare Source
No significant changes
View changes on GitHub
v0.7.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.7.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.7.0
Compare Source
🚨 Breaking Changes
rolldown-plugin-dts
for bunding dts - by @sxzz (70a76)🐞 Bug Fixes
🏎 Performance
pkg-types
in runtime - by @sxzz (c6389)View changes on GitHub
microsoft/TypeScript (typescript)
v5.8.3
Compare Source
unjs/unplugin (unplugin)
v2.3.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
unplugin/unplugin-oxc (unplugin-oxc)
v0.3.6
Compare Source
🚀 Features
View changes on GitHub
v0.3.5
Compare Source
🚀 Features
View changes on GitHub
v0.3.4
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.3.3
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
unplugin/unplugin-replace (unplugin-replace)
v0.5.2
Compare Source
🐞 Bug Fixes
🏎 Performance
View changes on GitHub
vitejs/vite (vite)
v6.3.3
Compare Source
ssrTransform
re-export deps and test stacktrace with first line (#19629) (9399cda), closes #19629v6.3.2
Compare Source
css.lightningcss
option in css minification process (#19879) (b5055e0), closes #19879v6.3.1
Compare Source
Promise.allSettled
in preload function (#19805) (35c7f35), closes #19805transform
calls (#19878) (a152b7c), closes #19878v6.3.0
Compare Source
hot.invalidate
in circular deps (#19870) (d4ee5e8), closes #19870Configuration
📅 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: Enabled.
♻ 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.