Skip to content

ci: release - #11236

Merged
ematipico merged 1 commit into
mainfrom
changeset-release/main
Aug 11, 2026
Merged

ematipico merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 4, 2026 •

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@biomejs/biome@2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}
  • #11080 af16a0b Thanks @dyc3! - HTML style attribute values are now parsed as CSS. All Biome CSS lint rules are applied to the style attributes.

  • #11195 6a85588 Thanks @dyc3! - Fixed Svelte files failing to parse when an expression begins with an object literal.

    Now the following snippet is correctly parsed:

    <p>{{ a: true }}</p>
    <div class={{ active: isActive }}></div>
  • #11173 481d008 Thanks @Austin1serb! - Fixed #10242: JavaScript GritQL patterns with multiple metavariables now match snippets consistently in WebAssembly.

  • #11187 23c0369 Thanks @ematipico! - Added the nursery rule noInvalidPropertyInitValue, which reports an @property whose initial-value does not match its syntax descriptor. For example, the following declaration triggers the rule because red is not a <length>:

    @property --size {
      syntax: "<length>";
      inherits: false;
      initial-value: red;
    }
  • #11272 73896e6 Thanks @ematipico! - Improved the diagnostic emitted by noRootType.

  • #11240 bd0b68d Thanks @ematipico! - Fixed #11223: Improved the
    performance of noMisusedPromises
    when analyzing async class methods that call other methods through this.

  • #11172 4a0bc5c Thanks @saberoueslati! - Fixed #10806: noUselessFragments no longer causes Biome to panic when its unsafe fix removes a fragment used as a JSX attribute value.

  • #11227 4d603b0 Thanks @saberoueslati! - Fixed #11178: noUndeclaredVariables no longer reports Vue's built-in instance properties, such as $slots and $attrs, in template expressions or $event in inline event-handler expressions. The instance properties are still reported inside <script setup>, where they are not defined.

  • #11187 23c0369 Thanks @ematipico! - Fixed CSS parsing of registered custom properties: Biome now correctly validates the syntax descriptor of @property rules.

@biomejs/backend-jsonrpc@2.0.62

@biomejs/cli-darwin-arm64@2.5.8

@biomejs/cli-darwin-x64@2.5.8

@biomejs/cli-linux-arm64@2.5.8

@biomejs/cli-linux-arm64-musl@2.5.8

@biomejs/cli-linux-x64@2.5.8

@biomejs/cli-linux-x64-musl@2.5.8

@biomejs/cli-win32-arm64@2.5.8

@biomejs/cli-win32-x64@2.5.8

@biomejs/wasm-bundler@2.5.8

@biomejs/wasm-nodejs@2.5.8

@biomejs/wasm-web@2.5.8

@github-actions
github-actions Bot force-pushed the changeset-release/main branch 30 times, most recently from 50e14ce to a65e28b Compare August 10, 2026 05:32
@github-actions
github-actions Bot force-pushed the changeset-release/main branch 2 times, most recently from c31ee9e to 22ebc13 Compare August 10, 2026 07:19
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 22ebc13 to 9010e83 Compare August 11, 2026 07:02
@ematipico
ematipico merged commit 6b8f09c into main Aug 11, 2026
@ematipico
ematipico deleted the changeset-release/main branch August 11, 2026 08:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment