fix(deps): update all non-major dependencies #465
Merged
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:
^9.24.0->^9.25.1^1.51.1->^1.52.0^1.11.21->^1.11.22^22.14.1->^22.15.219.0.0-beta-ebf51a3-20250411->19.1.0-rc.1^0.25.2->^0.25.3^9.24.0->^9.25.1^4.10.3->^4.11.0^1.51.1->^1.52.010.8.1->10.9.019.0.0-beta-ebf51a3-20250411->19.1.0-rc.1^7.5.0->^7.5.2^2.12.1->^2.13.0^8.30.1->^8.31.0^6.3.0-beta.6->^6.3.5^6.2.6->^6.3.3^3.1.1->^3.1.2Release Notes
eslint/eslint (@eslint/js)
v9.25.1Compare Source
v9.25.0Compare Source
microsoft/playwright (@playwright/test)
v1.52.0Compare Source
swc-project/swc (@swc/core)
v1.11.22Compare Source
Bug Fixes
(es/parser) Parse
export default from;withexportDefaultFrom: trueoption (#10373) (a270cb0)(es/proposal) Fix exported class for
explicit-resource-management(#10393) (6b5dbc6)(swc_core) Fix downstream doc builds (#10401) (df511ba)
Upgrade browserslist-rs version (#10389) (f802892)
Features
(bindings/core) Enhance existing parse function to accept both string and buffer types(#10371) (c9a2afc)
(css/prefixer) Fix default implementation (#10351) (34f4e41)
Miscellaneous Tasks
(bindings/node) Add
README.md(#10402) (a0e89f0)(es/parser) Remove useless check (#10386) (d1770ac)
(es/utils) Mark Symbol members as literal (#10400) (3935b60)
Performance
(common) Use
nextinstead ofnth(#10403) (12c2807)(es/minifier) Use bigflags to reduce context size of analyzer (#10380) (773d19c)
(es/minifier) Use
bitflagsto reduce context size ofInfectionCollector(#10387) (126d432)(es/minifier) Use
bitflagsto reduce compress context size (#10381) (99495bd)(es/parser) Move
found_module_itemtoParser(#10388) (fd52c5c)Refactor
(es/compat) Simplify
async_to_generator(#10341) (e9eeba1)(es/lexer) Split lexer (#10377) (3ef2bd1)
Testing
facebook/react (babel-plugin-react-compiler)
v19.1.0-rc.1Compare Source
evanw/esbuild (esbuild)
v0.25.3Compare Source
Fix lowered
asyncarrow functions beforesuper()(#4141, #4142)This change makes it possible to call an
asyncarrow function in a constructor before callingsuper()when targeting environments withoutasyncsupport, as long as the function body doesn't referencethis. Here's an example (notice the change fromthistonull):Some background: Arrow functions with the
asynckeyword are transformed into generator functions for older language targets such as--target=es2016. Since arrow functions capturethis, the generated code forwardsthisinto the body of the generator function. However, JavaScript class syntax forbids usingthisin 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 forwardthisif 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=trueis used instead of--watch. Previously using--watch=truecaused esbuild to continue to use more and more memory for every rebuild, but--watch=trueshould now behave like--watchand 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=truestyle 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
hostwith 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/hostsfile fromlocal.example.comto127.0.0.1and 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=safari1took 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_FILEappears 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.1Compare Source
v9.25.0Compare Source
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)
v4.11.0Compare Source
Minor Changes
11ebfbdThanks @JounQin! - refactor: migrate deprecateddoctrinetocomment-parserv4.10.6Compare Source
Patch Changes
d54302fThanks @JounQin! - chore: bumpunrs-resolverto v1.6.0v4.10.5Compare Source
Patch Changes
db1824bThanks @JounQin! - fix: support run with worker evalv4.10.4Compare Source
Patch Changes
#299
bf50a4dThanks @renovate! - chore(deps): bump@typescript-eslint/utilsto v8.30#297
9769f3cThanks @JounQin! - fix: support run withnode --evalpnpm/pnpm (pnpm)
v10.9.0Compare 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:{ "dependencies": { "@​foo/bar": "jsr:^0.1.2" } }When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:
{ "dependencies": { "@​foo/bar": "npm:@​jsr/foo__bar@^0.1.2" } }Related issue: #8941.
Note: The
@jsrscope defaults to https://npm.jsr.io/ if the@jsr:registrysetting 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:dangerouslyAllowAllBuildshas the same effect but also allows to be set globally via:It can also be set when running a command:
Patch Changes
verifyDepsBeforeRunwhennodeLinkerishoistedand there is a workspace package without dependencies andnode_modulesdirectory #9424.verifyDepsBeforeRunsupport fornodeLinker: pnp. CombiningverifyDepsBeforeRunandnodeLinker: pnpwill now print a warning.facebook/react (react-compiler-runtime)
v19.1.0-rc.1Compare Source
remix-run/react-router (react-router-dom)
v7.5.2Compare Source
Patch Changes
react-router@7.5.2v7.5.1Compare Source
Patch Changes
react-router@7.5.1toplenboren/simple-git-hooks (simple-git-hooks)
v2.13.0Compare Source
Minor Changes
#121
d9d7823Thanks @chouchouji! - feat: only remove some hooks that are not inpreserveUnusedoption#125
8486a22Thanks @nathanwhit! - feat: supportdeno'snode_modulesstructure#127
8bb9818Thanks @yyz945947732! - feat: optimize the migration experience fromhuskytypescript-eslint/typescript-eslint (typescript-eslint)
v8.31.0Compare Source
🩹 Fixes
config()around global ignores (#11065)❤️ Thank You
You can read about our versioning strategy and releases on our website.
vitejs/rolldown-vite (vite)
v6.3.5Compare Source
ssrTransformre-export deps and test stacktrace with first line (#19629) (9399cda), closes #19629v6.3.4Compare Source
transformPlugin(#136) (e5fa092), closes #136v6.3.3Compare Source
v6.3.2Compare Source
v6.3.1Compare Source
css.lightningcssoption in css minification process (#19879) (b5055e0), closes #19879v6.3.0Compare Source
withFilterfrom rolldown (#122) (f2d0354), closes #122Promise.allSettledin preload function (#19805) (35c7f35), closes #19805transformcalls (#19878) (a152b7c), closes #19878hot.invalidatein circular deps (#19870) (d4ee5e8), closes #19870v6.3.0-beta.8Compare Source
v6.3.0-beta.7Compare Source
rolldownVersion(#109) (698cbea), closes #109vitejs/vite (vite)
v6.3.3Compare Source
ssrTransformre-export deps and test stacktrace with first line (#19629) (9399cda), closes #19629v6.3.2Compare Source
css.lightningcssoption in css minification process (#19879) (b5055e0), closes #19879v6.3.1Compare Source
Promise.allSettledin preload function (#19805) (35c7f35), closes #19805transformcalls (#19878) (a152b7c), closes #19878v6.3.0Compare Source
hot.invalidatein circular deps (#19870) (d4ee5e8), closes #19870vitest-dev/vitest (vitest)
v3.1.2Compare Source
🚀 Features
🐞 Bug Fixes
chaivariable invitest/globals(fix: #7474) - by @Jay-Karia in https://github.com/vitest-dev/vitest/issues/7771 and https://github.com/vitest-dev/vitest/issues/7474 (d9297)test.excludewhen same object passed incoverage.exclude- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7774 (c3751)envionmentOptions- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7795 (67430)Configuration
📅 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: 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.