fix(deps): update js dependencies#1978
Merged
bhearsum merged 1 commit intoJun 1, 2026
Merged
Conversation
7b0cc06 to
2164777
Compare
bhearsum
approved these changes
Jun 1, 2026
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:
7.29.5→7.29.77.28.5→7.29.72.4.14→2.4.169.0.0→9.0.19.0.0→9.0.19.0.4→9.3.04.1.0→4.3.030.3.0→30.4.230.3.0→30.4.15.106.2→5.107.27.0.2→7.0.3Release Notes
babel/babel (@babel/preset-env)
v7.29.7Compare Source
v7.29.7 (2026-05-25)
Re-release all packages with npm provenance attestations
biomejs/biome (@biomejs/biome)
v2.4.16Compare Source
Patch Changes
#10329
ef764d5Thanks @Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.#10363
50aa415Thanks @dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.Input:
Output:
#10465
0c718daThanks @dfedoryshchev! - Fixed diagnostics emitted by thenoUntrustedLicensesrule.#10358
05c2617Thanks @dyc3! - Fixed #10356:biome rage --linternow displays rules enabled through linter domains in the enabled rules list.#10300
950247cThanks @dyc3! - Fixed #10265: Svelte function bindings such asbind:value={get, set}are now parsed more precisely, sonoCommaOperatorwon't emit false positives for that syntax anymore.#9786
e71f584Thanks @MeGaNeKoS! - Fixed #8480:useDestructuringnow providesvariableDeclaratorandassignmentExpressionoptions to control which contexts enforce destructuring, matching ESLint'sprefer-destructuringconfiguration. Both default to{array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.#10425
1948b72Thanks @sjh9714! - Fixed #10244: TheuseOptionalChainrule now detects negated guard inequality chains like!foo || foo.bar !== "x".#10442
001f94fThanks @ematipico! - Fixed #10411:noMisusedPromisesno longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.#10318
9b1577fThanks @dyc3! - Added support forformatter.trailingCommasin overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.#10319
2e37709Thanks @dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:#10365
0a58eb0Thanks @Netail! - Fixed #10361:noUnusedFunctionParametersnow mentions the parameter name in the diagnostic.#10439
df6b867Thanks @denbezrukov! - Fixed CSS and SCSS formatting for comments around declaration colons so comments between property names, colons, and values stay at the same boundary as Prettier..selector { - color: /* red, */ - blue; + color: /* red, */ blue; }#10344
b30208cThanks @siketyan! - Fixed#10123: Corrected thenoReactNativeDeepImportssource rule to point to the proper upstream rule, so users can migrate from the original rule correctly.#10328
b59133fThanks @dyc3! - Fixed #10309: Biome no longer adds newlines to Astro frontmatter when linter or assist--writemode is enabled.v2.4.15Compare Source
Patch Changes
#9394
ba3480eThanks @dyc3! - Added the nursery ruleuseTestHooksInOrderin thetestdomain. The rule enforces that Jest/Vitest lifecycle hooks (beforeAll,beforeEach,afterEach,afterAll) are declared in the order they execute, making test setup and teardown easier to reason about.#10254
e0a54ccThanks @dyc3! - Added a new nursery ruleuseVueNextTickPromise, which enforces Promise syntax when using VuenextTick.For example, the following snippet triggers the rule:
#10219
64aee45Thanks @dyc3! - Added a new nursery rulenoVueVOnNumberValues, that disallows deprecated number modifiers on Vuev-ondirectives.For example, the following snippet triggers the rule:
#10195
7b8d4e1Thanks @dyc3! - Added the new nursery ruleuseVueValidVFor, which validates Vuev-fordirectives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.#10238
1110256Thanks @dyc3! - Added the recommended nursery rulenoVueImportCompilerMacros, which disallows importing Vue compiler macros such asdefinePropsfromvuebecause they are automatically available.#10201
1a08f89Thanks @realknove! - Fixed #10193:style/useReadonlyClassPropertiesno longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.#9574
3bd2b6aThanks @Conaclos! - Fixed #9530. The diagnostics oforganizeImportsare now more detailed and more precise. They are also better at localizing where the issue is.#10205
a704a6cThanks @Conaclos! - Fixed #10185. `organizeImports now errors when it encounters an unknown predefined group.The following configuration is now reported as invalid because
:INEXISTENT:is an unknown predefined group.{ "assist": { "actions": { "source": { "organizeImports": { "options": { "groups": [":INEXISTENT:"] } } } } } }#10052
b565bedThanks @minseong0324! - ImprovednoMisleadingReturnType: it now flags union annotations whose extra variants are never returned, and suggests the narrower type (e.g.string | null→string).These functions are now reported because
nullandnumberare included in the return annotations but never returned:#10213
ac30057Thanks @dyc3! - Fixed #9450: HTML and Vue element formatting now preserves child line breaks when an element contains another element child on its own line, instead of collapsing the child element onto the same line.#10275
9ee6c03Thanks @solithcy! - Fixed #10274: Svelte templates with missing expressions no longer parsed asHtmlBogusElement#10143
56798a7Thanks @minseong0324! -noMisleadingReturnTypenow detects misleading return type annotations when object literal properties are initialized withas const.This function is now reported because the return annotation widens a property initialized with
as const:#10143
56798a7Thanks @minseong0324! -noUselessTypeConversionnow detects redundant conversions on object literal properties initialized withas const.This conversion is now reported because
message.valueis inferred as a string literal:#9807
0ae5840Thanks @dyc3! - Added the new nursery ruleuseThisInClassMethods, based on ESLint'sclass-methods-use-this.The rule now reports instance methods, getters, setters, and function-valued instance fields that do not use
this, andbiome migrate eslintpreserves the supportedignoreMethods,ignoreOverrideMethods, andignoreClassesWithImplementsoptions.Invalid:
#10258
e7b18f7Thanks @ematipico! - Improved linter performance by narrowing the query nodes for several lint rules, reducing how often they are evaluated.#10273
04e22a1Thanks @dyc3! - Fixed #10271: The HTML parser now correctly parsesofas text content when in text contexts.#9838
83f7385Thanks @dyc3! - Added the nursery rulenoBaseToString, which reports stringification sites that fall back to Object's default"[object Object]"formatting. The rule also supports theignoredTypeNamesoption.#10143
56798a7Thanks @minseong0324! -useExhaustiveSwitchCasesnow checks switch statements over object literal properties initialized withas const.This switch is now reported because
status.kindis inferred as the string literal"ready"but no case handles it:#10143
56798a7Thanks @minseong0324! -useStringStartsEndsWithnow detects string index comparisons on object literal properties initialized withas const.This comparison is now reported because
message.valueis inferred as a string literal:mui/material-ui (@mui/icons-material)
v9.0.1Compare Source
May 6, 2026
A big thanks to the 25 contributors who made this release possible.
@mui/material@9.0.1startIconalignment (#48332) @mj12alberttypeattribute (#48146) @mj12albertaria-checked=mixedwhen indeterminate (#48147) @mj12albertuseFormControlStatehook (#48344) @mj12albertnotchedprop leaking into DOM (#48281) @mj12albertrolewithslotProps.input(#48469) @mj12alberth4variant when usingresponsiveFontSizes()(#48314) @mj12albert@mui/system@9.0.1@mui/codemod@9.0.1v9.0.0/system-propscodemod (#48315) @siriwatknp@mui/utils@9.0.1resolvePropsreceiving empty string className (#48289) @SAY-5excludeKeysfromextractEventHandlers(#48481) @ZeeshanTamboliDocs
useInfiniteQuery(#48356) @mj12albert@mui/base(#48278) @mj12albert/experimentsfrom crawlers (#48297) @ZeeshanTambolidisableTocpages (#48260) @LukasTyReact.useId()for demo IDs (#48300) @JanpotCore
eslint-import-resolver-webpackpackage (#48207) @ZeeshanTamboliAll contributors of this release in alphabetical order: @ayushshukla1807, @brijeshb42, @chudesno, @franco-dias, @hasdfa, @imazizbohra, @Janpot, @JCQuintas, @joserodolfofreitas, @LukasTy, @mapache-salvaje, @mj12albert, @mnajdova, @Mr-Quin, @nitzan-treg, @oliviertassinari, @pavan-sh, @sai6855, @sandeshdamkondwar, @SAY-5, @silviuaavram, @siriwatknp, @starboyvarun, @tomups, @ZeeshanTamboli
mui/mui-x (@mui/x-date-pickers)
v9.3.0Compare Source
May 21, 2026
We'd like to extend a big thank you to the 16 contributors who made this release possible. Here are some highlights ✨:
EventTimelinePremium(#22308)Special thanks go out to these community members for their valuable contributions:
@Anexus5919, @jvskriubakken, @oscar-b, @rin, @viktormelin
The following team members contributed to this release:
@aemartos, @alexfauquette, @arminmeh, @Janpot, @JCQuintas, @LukasTy, @mj12albert, @oliviertassinari, @rita-codes, @romgrk, @sai6855
Data Grid
@mui/x-data-grid@9.3.0GridVirtualScroller" (#22467) @oliviertassinari@mui/x-data-grid-pro@9.3.0Same changes as in
@mui/x-data-grid@9.3.0.@mui/x-data-grid-premium@9.3.0Same changes as in
@mui/x-data-grid-pro@9.3.0.Date and Time Pickers
@mui/x-date-pickers@9.3.0PickersTextFieldstandard and filled variants (#22189) @LukasTyslotProps.sectionContentinPickersInputBase(#22324) @rin@mui/x-date-pickers-pro@9.3.0Same changes as in
@mui/x-date-pickers@9.3.0, plus:Charts
@mui/x-charts@9.3.0data-seriesto elements of radar chart (#22523) @alexfauquetteseriesConfigdeduplication for lines and bars (#22257) @sai6855evaluateCurveYfunction (#22407) @sai6855@mui/x-charts-pro@9.3.0Same changes as in
@mui/x-charts@9.3.0.@mui/x-charts-premium@9.3.0Same changes as in
@mui/x-charts-pro@9.3.0, plus:closePathoption to the radial line series (#22517) @alexfauquetteTree View
@mui/x-tree-view-pro@9.3.0Internal changes.
Scheduler
@mui/x-scheduler@9.0.0-alpha.7@mui/x-scheduler-premium@9.0.0-alpha.7Same changes as in
@mui/x-scheduler@9.0.0-alpha.7, plus:EventTimelinePremium(#22308) @rita-codesdataSource.updateEvents(#22462) @rita-codesDocs
Newlabel on bar charts docs (#22473) @oliviertassinariREADMEwith licensing/licensing.md in scheduler (#22468) @oliviertassinariCore
mui/no-presentation-rolelint rule (#22360) @JanpotpropTypesunion order deterministic (#22521) @JCQuintasMiscellaneous
controlledmode performance (#22123) @romgrktree-dataparams inuseDemoDatacache key (#22456) @Janpottest_typesjob (#22442) @Janpottest_regressions(#22459) @Janpotv9.2.0Compare Source
May 13, 2026
We'd like to extend a big thank you to the 9 contributors who made this release possible. Here are some highlights ✨:
Special thanks go out to these community members for their valuable contributions:
@Anexus5919, @mustafajw07
The following team members contributed to this release:
@aemartos, @alexfauquette, @bernardobelchior, @JCQuintas, @oliviertassinari, @sai6855, @siriwatknp
Data Grid
@mui/x-data-grid@9.2.0GridVirtualScroller(#22347) @sai6855Configuration
📅 Schedule: (in timezone UTC)
* 2 1,15 * *)🚦 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.