chore(deps): lock file maintenance npm packages#111
Merged
Brooooooklyn merged 1 commit intomainfrom Apr 23, 2025
Merged
Conversation
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:
3.0.0-alpha.77->3.0.0-alpha.780.2.8->0.2.911.0.13->11.1.011.0.13->11.1.0^0.63.0->^0.65.0^0.63.0->^0.65.01.11.18->1.11.2119.1.0->19.1.219.1.1->19.1.21.4.1->1.4.30.25.2->0.25.31.0.0-beta.7->1.0.0-beta.80.16.6->0.16.710.8.1->10.9.0🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
napi-rs/napi-rs (@napi-rs/cli)
v3.0.0-alpha.78Compare Source
napi-rs/napi-rs (@napi-rs/wasm-runtime)
v0.2.9Compare Source
nestjs/nest (@nestjs/core)
v11.1.0Compare Source
v11.0.21Compare Source
v11.0.20Compare Source
v11.0.19Compare Source
v11.0.18Compare Source
What's Changed
Full Changelog: nestjs/nest@v11.0.17...v11.0.18
v11.0.17Compare Source
v11.0.16Compare Source
v11.0.15Compare Source
v11.0.15 (2025-04-10)
Bug fixes
platform-fastifyCommitters: 1
v11.0.14Compare Source
nestjs/nest (@nestjs/platform-express)
v11.1.0Compare Source
v11.0.21Compare Source
v11.0.20Compare Source
What's Changed
evalby @Borewit in https://github.com/nestjs/nest/pull/14974New Contributors
Full Changelog: nestjs/nest@v11.0.19...v11.0.20
v11.0.19Compare Source
v11.0.18Compare Source
What's Changed
Full Changelog: nestjs/nest@v11.0.17...v11.0.18
v11.0.17Compare Source
v11.0.16Compare Source
v11.0.15Compare Source
v11.0.15 (2025-04-10)
Bug fixes
platform-fastifyCommitters: 1
v11.0.14Compare Source
swc-project/swc (@swc/core)
v1.11.21Compare Source
Bug Fixes
(es/helpers) Sync tslib
_ts_generatorimplementation (#10366) (d3fb992)(es/proposal) Fix scope of declarations for
explicit-resource-management(#10362) (eb7f7e9)(ts/fast-strip) Increase Wasm stack size (#10359) (6d444a5)
Miscellaneous Tasks
Performance
(es/parser) Reduce string comparison (#10355) (21789c4)
(es/parser) Add initial capacitity for some vectors (#10361) (7b7b50e)
(es/parser) Reduce clone of token contexts (#10364) (3ab47b2)
(es/parser) Use
bitflagsto reduce parser context size (#10367) (a2d3596)(es/parser) Replace byte arguments with generics (#10370) (68f7667)
(es/parser) Use
arrayvecand unsafepushto optimize escaped string parsing (#10369) (e12ae1c)v1.11.20Compare Source
Bug Fixes
(error_reporters) Removing unused code to fix clippy check (#10338) (5970f93)
(es/minifier) Preserve block with block scoped declaration (#10335) (a4ac3b7)
(es/parser) Allow abstract method named
accessor(#10327) (3f71776)(es/preset-env) Consider
browserslistconfig ifenv.targetis not configured (#8921) (a2dc372)(es/resolver) Handle using declarations (#10354) (dad815c)
fix(es/compat): Remove one promise tick in yield* (tc39/ecma262#2819) (#10317)
Related issue:
Features
(errors) Integrate
miettefor enhanced diagnostic reporting (#10241) (156c3b1)(es/codegen) Support
sourceMap.urloption ofterser(#10346) (566bc7c)(plugin/runner) Support
pluginEnvVars(#10318) (795fedc)Miscellaneous Tasks
(es/helpers) Update peer dependency version for
@swc/helpersto>=0.5.17(#10321) (ddbf3e1)(ide) Disable RA diagnostics (#10324) (fcf280f)
Performance
(es/ast) Reduce redundant string comparison for
Atoms (#10323) (3ce9d81)(es/jsx) Cache FileName for JSX pass (#9951) (#10322) (9852940)
(es/parser) Remove redundant
is_asciicalls (#10334) (e66b4d6)(es/parser) Remove ascii check for no-ascii (#10350) (4279b96)
Testing
20in exec tests (#10348) (eee73ce)toyobayashi/emnapi (emnapi)
v1.4.3Compare Source
What's Changed
Full Changelog: toyobayashi/emnapi@v1.4.2...v1.4.3
v1.4.2Compare Source
What's Changed
Full Changelog: toyobayashi/emnapi@v1.4.1...v1.4.2
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.
rolldown/rolldown (rolldown)
v1.0.0-beta.8Compare Source
Bug Fixes
this.meta.watchModeistruein watch mode (#3969) (7ddcaea), closes #3960source_type(#4214) (bfe3e9e), closes #4203preserve-legalshould correspond toComments::PreserveLegal(#4137) (cef50bd), closes #4118assetFileNameshash length exceeds22(#4019) (86710df), closes #4016shorthandtoNaN(#4197) (7d55cda), closes #4196 #4123Features
withFilterutil function (#4087) (c89829d)usingsyntax sugar (#4202) (59e9a96)--inputoption (#4201) (6f18af6), closes #4175ROLLUP_WATCHandROLLDOWN_WATCHenvironment variables (#3967) (bc1eba7), closes #3961DebugTracerfor improved tracing management (#4182) (b8a64bb)plugin_indexhook-related events (#4148) (6a35d00)resolve_idhook (#4180) (0735e9a)buildIdtoSessionId(#4184) (f67f29f)llms.txtandllms-full.txt(#3979) (ef1de29)ResolveIdExtraOptions(#4050) (25f3c61)@rolldown/browser(#4112) (a0a7d95), closes #4012RenderedModuletype (#3963) (311f70c)envandassumptions(#4211) (73f1910), closes #3968assumptionsoption intransform_options(#4209) (932b46f), closes #3968targetoption intransform_options(#4210) (e00c4ca), closes #3968Performance Improvements
OutputChunkandOutputAsset(#4063) (f32a14f)concat_string!instead offormat!(#4030) (825c877)arrayinstead ofphf_set(#4079) (d30dcc5)into_ownedinstead ofto_stringto avoid unnecessary allocation (#4149) (5b4032a)phf_setfor large datasets (#4216) (c2596d3), closes #4079hook_usagemeta (#4187) (37e71eb)oxc-project/oxc (oxlint)
v0.16.7: oxlint v0.16.7Compare Source
[0.16.7] - 2025-04-21
Features
bb8a078language_server: Use linter runtime / support import plugin (#10268) (Sysix)c94e6b8linter: Alloweqeqeqto always be dangerously fixable (#10499) (camchenry)Bug Fixes
df488d4language_server: Workspace edits as one batch whensource.fixAll.oxcis the context (#10428) (Sysix)2fc083clinter: Incorrect fix for prefer start ends with (#10525) (camc314)020d8f8linter: Fix auto-fix issue for eslint/no-else-return (#10494) (yefan)f0c1efflinter: False positve in no-unused-vars (#10470) (camc314)d690060linter: Fix the auto-fix issue of the eslint/no-plusplus rule (#10469) (yefan)72d5074linter: False positive ineslint/no-redeclare(#10402) (shulaoda)c1f5623linter: Add check for plugin_name when applying LintFilterKind::Rule (#10339) (Ulrich Stark)4e1f536linter: Config path resolution when path contains '..' syntax (#10367) (Florian Bopp)58ab8ffparser: Adjust class start position when decorators are involved (#10438) (Boshen)Performance
21f3175langage_server: PrebuildIsolatedLintHandler(#10406) (Sysix)62178c2linter: Replacephf_setwitharrayforDOM_PROPERTIES_NAMES(#10501) (shulaoda)9280707linter: Replacephf_setwitharrayforDOM_ATTRIBUTES_TO_CAMEL(#10500) (shulaoda)0a4f9d9linter: Replacephf_setwitharrayforATTRIBUTE_TAGS_MAP(#10498) (shulaoda)09f7358linter: Replacephf_setwitharrayinjsdoc/check-tag-names(#10485) (shulaoda)da87390linter: Replace `phf_setConfiguration
📅 Schedule: Branch creation - "before 3am on tuesday" in timezone Asia/Shanghai, 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.