Skip to content

fix(deps): update all dependencies - #429

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all
Open

fix(deps): update all dependencies#429
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@biomejs/biome (source) ^2.5.0^2.5.13 age confidence devDependencies patch
@changesets/changelog-github (source) ^0.7.0^1.0.1 age confidence devDependencies major
@changesets/cli (source) ^2.31.0^3.0.2 age confidence devDependencies major
@effect/cli (source) ^0.75.2^0.77.1 age confidence dependencies minor
@effect/cluster (source) ^0.59.0^0.60.2 age confidence dependencies minor
@effect/experimental (source) ^0.60.0^0.61.1 age confidence dependencies minor
@effect/platform (source) ^0.96.1^0.97.2 age confidence dependencies minor
@effect/platform (source) ^0.96.1^0.97.2 age confidence devDependencies minor
@effect/platform-node (source) ^0.107.0^0.108.2 age confidence dependencies minor
@effect/platform-node (source) ^0.107.0^0.108.2 age confidence devDependencies minor
@effect/printer (source) ^0.49.0^0.51.0 age confidence dependencies minor
@effect/printer-ansi (source) ^0.49.0^0.51.0 age confidence dependencies minor
@effect/rpc (source) ^0.75.1^0.76.2 age confidence dependencies minor
@effect/sql (source) ^0.51.1^0.52.1 age confidence dependencies minor
@effect/typeclass (source) ^0.40.0^0.41.0 age confidence dependencies minor
@effect/vitest (source) ^0.29.0^0.30.0 age confidence devDependencies minor
@effect/workflow (source) ^0.18.2^0.19.1 age confidence dependencies minor
@eslint-community/eslint-plugin-eslint-comments ^4.7.2^4.8.0 age confidence devDependencies minor
@eslint/compat (source) 2.1.02.1.1 age confidence devDependencies patch
@eslint/eslintrc 3.3.53.3.7 age confidence devDependencies patch
@fedify/fedify (source) ^2.2.5^2.3.6 age confidence dependencies minor
@fedify/vocab (source) ^2.2.5^2.3.6 age confidence dependencies minor
@types/node (source) ^25.9.3^26.5.1 age confidence devDependencies major
@types/react (source) ^19.2.17^19.3.0 age confidence devDependencies minor
@types/react-dom (source) ^19.2.3^19.3.0 age confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) ^8.61.1^8.70.0 age confidence devDependencies minor
@typescript-eslint/parser (source) ^8.61.1^8.70.0 age confidence devDependencies minor
@vitejs/plugin-react (source) ^6.0.2^6.1.1 age confidence devDependencies minor
@vitest/coverage-v8 (source) ^4.1.9^5.0.0 age confidence devDependencies major
@vitest/eslint-plugin ^1.6.20^1.6.27 age confidence devDependencies patch
actions/checkout v6v7 age confidence action major
actions/setup-node v6v7 age confidence action major
biome (source) ^2.5.0^2.5.13 age confidence devDependencies patch
bun (source) 1.3.111.4.2 age confidence packageManager minor
effect (source) ^3.21.3^3.22.2 age confidence dependencies minor
effect (source) ^3.21.3^3.22.2 age confidence devDependencies minor
eslint (source) ^10.5.0^10.10.0 age confidence devDependencies minor
eslint-plugin-simple-import-sort ^13.0.0^14.0.0 age confidence devDependencies major
eslint-plugin-sonarjs (source) ^4.0.3^4.2.0 age confidence devDependencies minor
eslint-plugin-unicorn ^67.0.0^74.0.0 age confidence devDependencies major
fast-check (source) ^4.8.0^4.9.0 age confidence devDependencies minor
fast-check (source) 4.8.04.9.0 age confidence devDependencies minor
globals ^17.6.0^17.12.0 age confidence devDependencies minor
jscpd (source) ^5.0.10^5.2.0 age confidence devDependencies minor
react-reconciler (source) ^0.33.0^0.34.0 age confidence dependencies minor
typescript (source) ^6.0.3^7.0.2 age confidence devDependencies major
typescript-eslint (source) ^8.61.1^8.70.0 age confidence devDependencies minor
vite (source) ^8.0.16^8.3.0 age confidence devDependencies minor
vitest (source) ^4.1.9^5.0.0 age confidence devDependencies major
ws ^8.21.0^8.21.3 age confidence devDependencies patch
ws ^8.21.0^8.21.3 age confidence dependencies patch

cc @skulidropek


Release Notes

biomejs/biome (@​biomejs/biome)

v2.5.13

Compare Source

Patch Changes

v2.5.12

Compare Source

Patch Changes
  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute expressions rejecting TypeScript and JSX syntax that is accepted in text expressions.

    <Component icon={<Icon />} count={total as number} onSelect={(e: Event) => e} />
  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute names being split on : and . inside an expression, such as {x && <button x-on:keyup.enter={go} client:load.foo />}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed a bare > in the children of an Astro expression being treated as markup, such as {x && <div>a > b</div>}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed HTML comments inside an Astro expression failing to parse. They are now read as trivia, wherever they appear among the children.

    {x && <div><!-- first -->text<!-- last --></div>}
    {cond && <a></a><!-- c --><b></b>}
  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed is:raw children inside an Astro expression being read as JSX, such as {x && <div is:raw>{not js} < & text</div>}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed an apostrophe or quote in the text of a JSX element inside an Astro expression ending the expression early, such as {items.map((i) => <li>it's {i}</li>)}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed the children of a <script> or <style> inside an Astro expression being read as JSX. Their contents are text, so braces and comparisons no longer have to be escaped.

    {cond && <style>a { color: red }</style>}
    {cond && <script>let x = {a: 1};</script>}
  • #​11440 b88f1ea Thanks @​Princesseuh! - Added support for template literal attribute values inside an Astro expression, such as {x && <C data-x=`t${x}` />}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed unquoted attribute values being rejected inside an Astro expression, such as {x && <a class=foo maxlength=255 href=/about>go</a>}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed a template literal nested inside ${} breaking the rest of an Astro file, such as const href = `/blog${page === 0 ? '' : `/${page + 1}`}`;.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed a quote inside a regex character class breaking the rest of an Astro file, such as const unsafe = /[/"]/;.

  • #​11508 54f3a2e Thanks @​dyc3! - Added the nursery rule useFlatMathMinMax. Because Math.min() and Math.max() accept any number of arguments, the rule reports unnecessary nested calls to the same method:

    Math.max(Math.max(a, b), c);

    The fix flattens this expression to Math.max(a, b, c).

  • #​11585 c5c8315 Thanks @​Netail! - Fixed #​11475: noUnresolvedImports no longer reports Bun runtime built-in modules (bun, bun:bundle, bun:ffi, bun:jsc, bun:sqlite, bun:test).

  • #​11368 52a57b3 Thanks @​Austin1serb! - Fixed #​6830: Biome now reports a diagnostic for excessively deep syntax instead of overflowing the native stack while releasing the parsed tree.

  • #​11596 1fc42ed Thanks @​dyc3! - Added the nursery rule noThisOutsideOfClass. The rule reports this outside class members and TypeScript functions with an explicit this parameter.

    function Person(name) {
        this.name = name;
    }
  • #​11555 2516335 Thanks @​dyc3! - Fixed #​11529, where noFloatingPromises missed unhandled Promise chains when the imported function's module belonged to an import cycle. Cyclic modules now preserve types for exports that do not participate in recursive type dependencies.

  • #​11518 0fee70c Thanks @​HarperZ9! - Fixed #​11500: the formatter now prints the declare modifier before accessibility modifiers on class properties. private declare readonly name: string is now formatted as declare private readonly name: string, matching Prettier and TypeScript's canonical modifier order.

  • #​11580 1277af2 Thanks @​ematipico! - Fixed #​5091: Biome no longer moves comments next to the < of a generic, which causes invalid TypeScript syntax:

    - Generic<// a comment
    + Generic<
    +   // a comment
  • #​11577 42995d2 Thanks @​ematipico! - Fixed #​4592. Biome no longer crashes while parsing malformed delete expressions.

  • #​11590 67963b4 Thanks @​ematipico! - Fixed #​6427 so Grit plugins can use function = ... as a node argument.

  • #​11600 a689cb5 Thanks @​ematipico! - Fixed #​6644: noUnusedVariables now recognizes all interface declarations in a TypeScript declaration-merging group when the interface is referenced.

    The following snippet no longer triggers the rule.

    interface Things {
        foo: string;
    }
    
    interface Things {
        bar: string;
    }
    
    export type Key = keyof Things;
    
    interface Things {
        baz: string;
    }
  • #​11591 d4a0716 Thanks @​ematipico! - Fixed #​6615. noDuplicateProperties no longer reports declarations nested in block at-rules as duplicates of declarations in their parent block.

  • #​11492 f2a07aa Thanks @​santichausis! - Fixed #​11454: noMisplacedAssertion now recognises @fast-check/vitest's test.prop(...) (and .concurrent.prop, .skip.prop, etc.) as a test function, the same way it already recognises test.each. The JS formatter picks up the same recognition, so a curried test.prop(...)(...) call is now formatted with the regular breakable argument layout used for test.each/test.for, instead of the single-line-hugging layout used for plain it/test calls.

    For example, Biome no longer reports the assertion below as misplaced:

    import { fc, test } from "@fast-check/vitest";
    
    test.prop([fc.string()])("round-trips", (s) => {
      expect(s).toBe(s);
    });
  • #​11589 65742b3 Thanks @​ematipico! - Fixed #​4928: noUnusedVariables no longer reports a value declaration as unused when its merged namespace is referenced.

  • #​11559 472dbc2 Thanks @​levrik! - Fixed a false positive in noVueDuplicateKeys where a <script setup> variable initialized from props was reported as a duplicate of the prop it derives from. Biome now exempts any variable whose initializer references props, instead of only recognizing defineProps() and toRefs(props).

    For example, Biome no longer reports foo below as a duplicate key:

    <script setup>
    import { toRef } from 'vue';
    const props = defineProps(['foo']);
    const foo = toRef(props, 'foo');
    </script>
  • #​11594 6586ceb Thanks @​ematipico! - Fixed #​6640. Biome no longer crashes when linting malformed for...of statements.

  • #​11571 85b197d Thanks @​ematipico! - Fixed #​10838: useSortedAttributes no longer corrupts JSX attributes when nested JSX elements also require sorting.

  • #​11533 97e76c0 Thanks @​ematipico! - Fixed #​11520, where the Biome scanner would start analysing dependencies multiple times, leading to long and unresponsive sessions.

  • #​11564 18a0e1f Thanks @​Netail! - Fixed the diagnostic range of noInferrableTypes so it now highlights only the type instead of including the leading : colon, spaces and comments.

  • #​11540 124fdaa Thanks @​ematipico! - Fixed #11537: noShorthandPropertyOverrides now compares declarations only within the same block. The rule no longer reports @supports feature queries and correctly checks nested, @keyframes, and @page blocks.

  • #​11532 7ceb0ee Thanks @​dyc3! - Fixed #​11528: noFloatingPromises no longer reports statement-level await expressions that handle Promise values, including overloaded calls returning Promise aliases. Awaited values that resolve to arrays of Promises remain reported because their element Promises are not handled by await.

  • #​11474 3c6412e Thanks @​dyc3! - Fixed #​10241. Biome

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from skulidropek June 18, 2026 15:10
@renovate renovate Bot changed the title chore(deps): update all dependencies to v7 fix(deps): update all dependencies Jun 18, 2026
@renovate
renovate Bot force-pushed the renovate/all branch 10 times, most recently from 7937dec to 76a7492 Compare June 25, 2026 00:56
@renovate
renovate Bot force-pushed the renovate/all branch 7 times, most recently from 197dcfb to e08373a Compare July 2, 2026 07:14
@renovate
renovate Bot force-pushed the renovate/all branch 9 times, most recently from 8c6623f to a11a8bc Compare July 9, 2026 09:58
@renovate
renovate Bot force-pushed the renovate/all branch 8 times, most recently from 36b2c19 to d8a903e Compare July 27, 2026 11:09
@renovate
renovate Bot force-pushed the renovate/all branch 11 times, most recently from 663e107 to a7174d0 Compare August 3, 2026 19:09
@renovate
renovate Bot force-pushed the renovate/all branch 7 times, most recently from 7d8a0b1 to 4ef3f05 Compare August 10, 2026 17:52
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from 88c936e to 1898b71 Compare August 12, 2026 09:05
@coderabbitai

coderabbitai Bot commented Sep 10, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Advanced

Run ID: a39e1784-28a0-4c9b-97e3-a6d26fd205d6

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant