Skip to content

chore(deps): update dependency @biomejs/biome to v2.5.14 - #145

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/biomejs-biome-2.x
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/biomejs-biome-2.x

Conversation

@renovate

@renovate renovate Bot commented Nov 30, 2025 •

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
@biomejs/biome (source) 2.3.7 → 2.5.14 age confidence
@biomejs/biome (source) 2.3.7 → 2.5.14 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.5.14

Compare Source

Patch Changes
  • #​9022 0d49e24 Thanks @​dyc3! - Added the nursery rule noReturnInFinally. This rule disallows return statements in Promise.prototype.finally() callbacks, including inside nested blocks and conditional branches. Returns in nested functions are ignored by the rule.

    // Invalid: return in finally callback
    Promise.resolve(1).finally(() => { return 2 })
    
    // Valid: no return in finally callback
    Promise.resolve(1).finally(() => { console.log(2) })

    Returning a value from a Promise.prototype.finally() callback does not replace the original promise's fulfillment value, which can be confusing. Returned promises and thenables are awaited, and their rejection rejects the resulting promise.

  • #​11754 71eaa0d Thanks @​griff-rees! - Added the nursery rule noSvelteAtDebugTags, which disallows Svelte's {@debug} tag.

    <!-- Invalid: leftover debugging tag -->
    {@debug user}

    The {@debug} tag is a debugging aid and should be removed once you no longer need it, as it should not remain in production code. The rule provides a safe fix that removes the tag.

  • #​11725 5eb5f09 Thanks @​m1handr! - Added the nursery rule useValidTestTitle, which enforces valid titles for unit test cases and suites.

  • #​11735 9bd70c7 Thanks @​ematipico! - Fixed #​8471: source.fixAll.biome ignored formatter.formatWithErrors. It now applies safe fixes without formatting files that have parse errors when the option is disabled.

  • #​11715 f05a3c3 Thanks @​ematipico! - Fixed #​7771: Grit plugins that use sequential no longer panic when Biome processes files.

  • #​11766 c2542c6 Thanks @​dyc3! - Fixed validation of readonly and accessor modifiers: combining them in either order now reports that they cannot be used together.

  • #​11461 22e9966 Thanks @​FoundDream! - Fixed #​11423: Multiline template interpolations now preserve the indentation of their closing brace when the source indentation is not a multiple of tabWidth.

     const value = `
          ${
            condition
              ? "yes"
              : "no"
    -}
    +     }
     `;
  • #​11766 c2542c6 Thanks @​dyc3! - Fixed #​11763: TypeScript class members using override accessor, such as override accessor value = 1, now parse correctly. The reversed order, accessor override, now reports that override must precede accessor.

  • #​11790 17d0ff0 Thanks @​ematipico! - Fixed #​10248: noUselessFragments now allows fragments with props in Astro files, such as <Fragment slot="name">{text}</Fragment> inside template expressions.

  • #​11777 7ee3a6c Thanks @​ematipico! - Fixed #​7573: added the requireExplicitCase option to useExhaustiveSwitchCases. When set to true, the rule reports missing cases even when the switch has a default clause, so you can keep a runtime fallback while checking that every value in the union has its own case. The option defaults to false.

  • #​11751 d37f24b Thanks @​ematipico! - Fixed #​8347: the fix from useConsistentArrowReturn now parenthesizes returned expressions that begin with object literals before removing the arrow function body braces, preventing invalid output for expressions such as object property access.

  • #​11784 46e8912 Thanks @​dyc3! - Fixed #​11782: noUndeclaredCustomProperties could hang while checking stylesheets imported by JavaScript modules with many shared dependencies.

  • #​11731 1534885 Thanks @​ematipico! - Fixed #​7984: The fix from useSimplifiedLogicExpression now preserves line breaks in multiline conditions with line comments, preventing the right-hand side condition from being commented out.

  • #​11735 9bd70c7 Thanks @​ematipico! - Fixed #​7304: the HTML formatter now preserves authored segment breaks between CJK characters, and next to CJK punctuation, instead of replacing them with spaces.

     <div lang="zh-Hant-TW">
    -  這個段落是那麼長, 在一行寫不行。
    +  這個段落是那麼長,
    +  在一行寫不行。
     </div>
  • #​11749 ff992a1 Thanks @​ematipico! - Fixed #​11747: formatting and checking large parenthesized object expressions no longer exhibit quadratic slowdowns.

  • #​11736 1dd1fc4 Thanks @​dyc3! - Fixed #​8177: code actions no longer modify the wrong part of Vue, Svelte, or Astro files when experimental full HTML support is disabled.

  • #​11743 3835945 Thanks @​santichausis! - Fixed #​10247: biome check --write/biome lint --write now correctly writes fixes for code inside an HTML attribute expression (for example a Svelte onclick={...} handler, or a mustache expression like {count}), instead of silently reporting the diagnostic as fixable and applying nothing.

    For example, running biome lint --write --unsafe for useBlockStatements (an unsafe fix) on this Svelte component used to leave the file unchanged:

    <button onclick={() => { if (open) close(); }}>Close</button>
  • #​11740 8ea8b4a Thanks @​dyc3! - Fixed #​11453: useConsistentTestIt now updates imports alongside calls, preserving the original export through an alias. The rule ignores locally declared functions and withholds fixes when the preferred name would conflict with another binding or global reference.

  • #​11355 27177ca Thanks @​dyc3! - Fixed the HTML formatter incorrectly applying native HTML element formatting to PascalCase component names such as <Ul> and <Body> in Vue, Svelte, and Astro files.

    -<Body>
    -  <div>content</div>
    -</Body>
    +<Body><div>content</div></Body>
  • #​11355 27177ca Thanks @​dyc3! - Fixed the HTML formatter incorrectly applying SVG block formatting to unknown elements whose names matched SVG element names.

    -<foreignobject>
    -  <div>content</div>
    -</foreignobject>
    +<foreignobject><div>content</div></foreignobject>
  • #​11741 fc69047 Thanks @​dyc3! - Fixed #​8893: useImportExtensions no longer suggests adding .ts to .jsx imports when a colocated .d.ts file provides type declarations.

  • #​11642 c87341c Thanks @​dyc3! - Added the nursery rule useConsistentFunctionStyle, which requires a consistent style for defining functions.

    By default, the rule reports the following declaration because it requires a function expression assigned to a variable:

    function greet() {
        return "Hello";
    }
  • #​11770 ddfd622 Thanks @​dyc3! - Fixed #​8980: suppression comments targeting the entire assist category are now respected, including biome-ignore-all assist when running check.

  • #​11792 7a4b895 Thanks @​dyc3! - Fixed dashed utility base names in the Tailwind parser, including border-bs, font-features, and scrollbar-thumb. Classes such as min-inline-[12rem] now preserve the complete base name and parse the arbitrary value separately.

  • #​11739 1fc17e3 Thanks @​Netail! - The rule useIncludes now also reports lastIndexOf() comparisons and some() calls with a strict-equality callback.

    arr.lastIndexOf(x) !== -1
    
    arr.some(item => item === x)
  • #​11735 9bd70c7 Thanks @​ematipico! - Fixed #​6888. GritQL plugins can now use contains on import-clause metavariables such as $clause in import $clause from "module" patterns.

  • #​11790 17d0ff0 Thanks @​ematipico! - Fixed #​11786: useAnchorContent now reports anchors without accessible content in HTML, Astro, Vue, and Svelte even when they have an aria-label, aria-labelledby, or title attribute, matching JSX behavior.

  • #​11651 a9c4aa0 Thanks @​saberoueslati! - Added the new nursery rule noVueUndeclaredDirectives, which reports custom Vue directives that are not declared by a <script setup> binding, the component's directives option, or the rule's globals option. Closes #​11478.

    <template>
      <!-- v-highlight is not declared anywhere -->
      <div v-highlight></div>
    </template>

    Aliased named imports in single-file components are now tracked under their local name, so noUndeclaredVariables recognizes vHighlight in import { highlight as vHighlight } from "./directives".

  • #​11715 f05a3c3 Thanks @​ematipico! - Fixed #​7795. The noJsxLiterals rule now ignores surrounding whitespace when matching literals against allowedStrings.

  • #​11780 99c7049 Thanks @​ematipico! - Fixed false positives in useExhaustiveSwitchCases when numeric cases use different spellings of the same value. For example, case 0x1 now covers the numeric literal type 1.

  • #​11720 c7c4e2b Thanks @​ematipico! - Fixed #​7880: noUselessStringConcat no longer reports literal concatenations split across multiple lines when a numeric literal ends the chain.

  • #​11355 27177ca Thanks @​dyc3! - Improved performance of the HTML formatter for documents that contain many HTML-native or SVG-native tags.

  • #​11720 c7c4e2b Thanks @​ematipico! - Fixed #​7949: useReadonlyClassProperties now reports static class properties that are never reassigned.

  • #​11751 d37f24b Thanks @​ematipico! - Fixed #​7644: useImportExtensions now resolves path aliases declared by referenced TypeScript project configurations.

  • #​11791 f88793c Thanks @​dyc3! - Fixed a false positive in useTailwindShorthandClasses for strings in conditional tests, such as cn(m === "w-2 h-2" ? "bg-red-800" : "bg-red-400").

  • #​11720 c7c4e2b Thanks @​ematipico! - Fixed #​7783: noNoninteractiveElementInteractions no longer reports event handlers on native <dialog> elements.

  • #​11733 7030068 Thanks @​dyc3! - Fixed #​11730: useExhaustiveSwitchCases reports missing cases when iterating over a class property with for...of.

  • #​11717 2107dae Thanks @​ternaus! - Fixed #​11716: the noUnknownAttribute rule now accepts fullscreen event handlers, the credentialless iframe property, and the SVG maskType property when the React dependency range allows React 19.3 or later. The credentialless and maskType properties are restricted to <iframe> and <mask> elements, respectively.

  • #​11737 b7e3559 Thanks @​dyc3! - Fixed #​11692: noFloatingPromises now detects unhandled promises returned through generic method signatures, including Playwright fixtures.

  • #​11780 99c7049 Thanks @​ematipico! - Fixed #​7747: useExhaustiveSwitchCases now reports missing cases for literal unions derived from const tuples with (typeof values)[number] and objects with keyof typeof object.

    Other type-aware rules, including noFloatingPromises and noUselessTypeConversion, also recognize supported indexed-access results.

  • #​11724 a9a5e9a Thanks @​dyc3! - Fixed redundant parentheses around binary and logical unary operands with leading line comments.

     !(
       // leading
    -  (a || b)
    +  a || b
     );
  • #​11715 f05a3c3 Thanks @​ematipico! - Fixed #​7722: noUnusedImports no longer reports type-only imports used in computed names of declared class properties.

  • #​11731 1534885 Thanks @​ematipico! - Fixed #​6390: Biome now offers suppression actions for noDynamicNamespaceImportAccess in editors.

  • #​11751 d37f24b Thanks @​ematipico! - Fixed #​7533: noDescendingSpecificity no longer compares selector specificity across separate cascade layer blocks.

  • #​11735 9bd70c7 Thanks @​ematipico! - Fixed #​6206: useUniqueElementIds no longer reports static IDs on elements in SVG contexts.

    <svg>
        <defs>
            <pattern id="dots" width="10" height="10" />
        </defs>
        <rect fill="url(#dots)" width="100%" height="100%" />
    </svg>
  • #​11715 f05a3c3 Thanks @​ematipico! - Fixed #​5447, so the GitHub reporter now associates annotations with the correct files when Biome runs from a nested directory.

  • #​11720 c7c4e2b Thanks @​ematipico! - Fixed #​7816: useHookAtTopLevel no longer reports methods named like hooks when called on another function's result, such as Reactotron.configure(...).useReactNative(...).

  • #​11355 27177ca Thanks @​dyc3! - Removed special HTML formatter handling for the obsolete <listing> element.

  • #​11731 1534885 Thanks @​ematipico! - Fixed an issue where Grit plugin code fixes weren't available as editor code actions.

  • #​11726 dea163f Thanks @​dyc3! - Fixed #​11722: the JavaScript formatter inserts a newline before the closing angle bracket when a leading comment forces type arguments onto multiple lines.

     type Foo = Record<
       // comment
       string,
    -  number>;
    +  number
    +>;
  • #​9758 02ea438 Thanks @​Netail! - Added the nursery rule noJsonUnsafeValues, which disallows JSON values that are unsafe to use between different tools or languages.

    Invalid:

    [
      2e308, // Number evaluating to Infinity
      -2e308, // Number evaluating to -Infinity
      "\ud83d", // String with lone surrogate
      1e-400, // Unsafe zero (too small, will evaluate to 0)
      9007199254740992, // Unsafe integer (outside safe integer range)
      2.2250738585072009e-308, // Subnormal number
    ]
  • #​11790 17d0ff0 Thanks @​ematipico! - Fixed #​8574: the JavaScript formatter sometimes added extra parentheses and moved comments when formatting multiline expressions after operators such as !. Comments now stay beside the values they describe, without an extra pair of parentheses.

     !(
    -  (
    -    cond1 || // force this to be multi line
    -    cond3
    -  ) // comment
    +  cond1 || // force this to be multi line
    +  cond3 // comment
     );
  • #​11715 f05a3c3 Thanks @​ematipico! - Fixed #​7711: biome lint --suppress no longer fails with conflicting rule fixes when multiple diagnostics target a declaration preceded by a multiline comment.

  • #​11700 0e9fe53 Thanks @​dyc3! - Added the nursery rule noObsoleteTags, which reports obsolete HTML elements in HTML and JSX, such as <font color="red">Text</font>.

  • #​11735 9bd70c7 Thanks @​ematipico! - Fixed #​7363: Biome GritQL plugins now match TypeScript interface snippets such as interface $name { $body }.

  • #​11729 f047985 Thanks @​m1handr! - Added support for suite() as an alias of describe() across test analysis rules and formatter. Rules now recognize suite, fsuite, xsuite, and test.suite blocks. The formatter recognises them as test declarations.

  • #​11778 4b7aa1f Thanks @​ematipico! - Fixed #​7727: GritQL snippets such as import $what from $where now match namespace imports, including type-only imports. Explicit import type $what from $where patterns also match type-only named and namespace imports.

  • #​11715 f05a3c3 Thanks @​ematipico! - Fixed #​7603: useSingleJsDocAsterisk no longer reports asterisks that are part of JSDoc comment content, such as italic text, as extra line markers.

  • #​11706 e19512a Thanks @​dyc3! - Fixed #​11704: files re-included by negation patterns in a nested .gitignore are processed when vcs.useIgnoreFile is enabled, even when the ignore file contains *.

  • #​11718 76a302a Thanks @​dyc3! - Fixed #​8573: own-line comments before binary operators stay above the operator when javascript.formatter.operatorLinebreak is "before".

     foo
    -  || // comment
    -  bar;
    +  // comment
    +  || bar;
  • #​9797 64fd314 Thanks @​Netail! - Added the nursery rule useConsistentObjectKeys, which requires JSON object keys to follow a consistent Unicode representation.

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](https://redirect.github.com/N

❗ Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday (* 0-4,22-23 * * 1-5)
    • Only on Sunday and Saturday (* * * * 0,6)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@codecov

codecov Bot commented Nov 30, 2025 •

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.12%. Comparing base (7f7f6aa) to head (5956d8f).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #145   +/-   ##
=======================================
  Coverage   98.12%   98.12%           
=======================================
  Files          15       15           
  Lines         586      586           
=======================================
  Hits          575      575           
  Misses         11       11           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions

github-actions Bot commented Nov 30, 2025 •

Copy link
Copy Markdown
Contributor

Renovate PR Review Results

⚖️ Safety Assessment: ✅ Safe

🔍 Release Content Analysis

  • Patch releases only: The update spans 4 patch versions (2.3.8 → 2.3.11), containing only bug fixes and new nursery rules
  • No breaking changes: All changes are additive or bug fixes, maintaining full backward compatibility
  • Security improvements: Enhanced noUndeclaredEnvVars rule with broader environment variable detection (Bun.env, Deno.env, bracket notation)
  • New nursery rules: Multiple new Vue.js, GraphQL, and general linting rules added to nursery (opt-in only)
  • Performance improvements: Reduced memory usage and system calls, improved rule performance
  • Bug fixes: Resolved false positives, parser improvements, formatter fixes

🎯 Impact Scope Investigation

  • Configuration impact: Only schema URL update from 2.3.7 to 2.3.11 - no configuration changes needed
  • Current rule usage: Project uses recommended: true with minimal overrides (noTemplateCurlyInString: off)
  • Biome ignore patterns: Single instance using biome-ignore-all lint/complexity/noBannedTypes in /lib/package/on.ts:1 remains compatible
  • Development workflow: Uses Biome for linting, formatting via lint-staged and VS Code integration - no changes needed
  • No nursery rules: Project doesn't use any nursery rules, so new additions don't affect current workflow

💡 Recommended Actions

  • Immediate merge: Safe to merge immediately - all changes are backward compatible
  • No manual migration required: Configuration and code remain fully functional
  • Optional review: Consider adopting new Vue.js rules if project expands to Vue development
  • Monitor performance: Expect potential performance improvements in large codebases

Generated by koki-develop/claude-renovate-review

@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 0c431e8 to 17cb070 Compare December 17, 2025 18:13
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.8 chore(deps): update dependency @biomejs/biome to v2.3.9 Dec 17, 2025
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 17cb070 to 1008c98 Compare December 19, 2025 15:42
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.9 chore(deps): update dependency @biomejs/biome to v2.3.10 Dec 19, 2025
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 1008c98 to b8877ba Compare January 5, 2026 17:53
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.10 chore(deps): update dependency @biomejs/biome to v2.3.11 Jan 5, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from b8877ba to b3cdcc8 Compare January 25, 2026 16:47
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.11 chore(deps): update dependency @biomejs/biome to v2.3.12 Jan 25, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from b3cdcc8 to 613d086 Compare January 28, 2026 16:52
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.12 chore(deps): update dependency @biomejs/biome to v2.3.13 Jan 28, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 613d086 to 63bdc1e Compare February 5, 2026 18:13
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.13 chore(deps): update dependency @biomejs/biome to v2.3.14 Feb 5, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 63bdc1e to 452c7a3 Compare February 14, 2026 13:27
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.14 chore(deps): update dependency @biomejs/biome to v2.3.15 Feb 14, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 452c7a3 to 39f5836 Compare February 18, 2026 18:52
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.3.15 chore(deps): update dependency @biomejs/biome to v2.4.0 Feb 18, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 39f5836 to b2a351c Compare February 19, 2026 16:58
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.0 chore(deps): update dependency @biomejs/biome to v2.4.1 Feb 19, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from b2a351c to 32ec7c9 Compare February 20, 2026 01:01
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.1 chore(deps): update dependency @biomejs/biome to v2.4.2 Feb 20, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 32ec7c9 to eac811d Compare February 22, 2026 21:37
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.2 chore(deps): update dependency @biomejs/biome to v2.4.3 Feb 22, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from eac811d to c8c1061 Compare February 23, 2026 22:12
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.3 chore(deps): update dependency @biomejs/biome to v2.4.4 Feb 23, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from c8c1061 to b266d96 Compare March 5, 2026 19:35
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.4 chore(deps): update dependency @biomejs/biome to v2.4.5 Mar 5, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from b266d96 to 2cf96fb Compare March 8, 2026 17:17
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.5 chore(deps): update dependency @biomejs/biome to v2.4.6 Mar 8, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 631ab64 to 4c48c2f Compare April 30, 2026 19:17
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.12 chore(deps): update dependency @biomejs/biome to v2.4.13 Apr 30, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 4c48c2f to 4ae39f5 Compare May 9, 2026 15:45
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.13 chore(deps): update dependency @biomejs/biome to v2.4.14 May 9, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 4ae39f5 to fc772b4 Compare May 16, 2026 20:36
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.14 chore(deps): update dependency @biomejs/biome to v2.4.15 May 16, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from fc772b4 to a88a122 Compare June 3, 2026 18:40
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.15 chore(deps): update dependency @biomejs/biome to v2.4.16 Jun 3, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from a88a122 to dcbce23 Compare June 19, 2026 14:36
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.4.16 chore(deps): update dependency @biomejs/biome to v2.5.0 Jun 19, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from dcbce23 to 35a4c72 Compare June 30, 2026 10:40
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.0 chore(deps): update dependency @biomejs/biome to v2.5.1 Jun 30, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 35a4c72 to b7f7645 Compare July 8, 2026 15:12
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.1 chore(deps): update dependency @biomejs/biome to v2.5.2 Jul 8, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from b7f7645 to 7e37f97 Compare July 15, 2026 12:58
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.2 chore(deps): update dependency @biomejs/biome to v2.5.3 Jul 15, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 7e37f97 to f49893c Compare July 22, 2026 06:07
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.3 chore(deps): update dependency @biomejs/biome to v2.5.4 Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from f49893c to f9e7965 Compare July 28, 2026 09:37
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.4 chore(deps): update dependency @biomejs/biome to v2.5.5 Jul 28, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from f9e7965 to 3299de1 Compare August 4, 2026 13:57
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.5 chore(deps): update dependency @biomejs/biome to v2.5.6 Aug 4, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 3299de1 to 08126e9 Compare August 12, 2026 01:50
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.6 chore(deps): update dependency @biomejs/biome to v2.5.7 Aug 12, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 08126e9 to 07b6065 Compare August 18, 2026 11:00
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.7 chore(deps): update dependency @biomejs/biome to v2.5.8 Aug 18, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 07b6065 to 4c1c0f0 Compare August 24, 2026 23:30
@renovate renovate Bot changed the title chore(deps): update dependency @biomejs/biome to v2.5.8 chore(deps): update dependency @biomejs/biome to v2.5.9 Aug 24, 2026
@renovate
renovate Bot force-pushed the renovate/biomejs-biome-2.x branch from 4c1c0f0 to 933b404 Compare August 30, 2026 08:10
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.

0 participants