Skip to content

ci: release#7916

Merged
ematipico merged 1 commit intomainfrom
changeset-release/main
Nov 3, 2025
Merged

ci: release#7916
ematipico merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Oct 29, 2025

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.3.3

Patch Changes

  • #7907 57bd662 Thanks @ematipico! - Fixed #7839. Now the Biome parser correctly parses the Astro frontmatter even when a triple fence is inside quotes.

  • #7934 a35c496 Thanks @alissonlauffer! - Fixed #7919: The HTML parser now correctly handles Unicode BOM (Byte Order Mark) characters at the beginning of HTML files, ensuring proper parsing and tokenization.

  • #7869 c80361d Thanks @matanshavit! - Fixed #7864: Biome now preserves component tag name casing in Svelte, Astro, and Vue files.

  • #7926 69cecec Thanks @matanshavit! - Added the rule noParametersOnlyUsedInRecursion.

    This rule detects function parameters that are exclusively used in recursive calls and can be removed to simplify the function signature since they are effectively unused.

    function factorial(n, acc) {
      if (n === 0) return 1;
      return factorial(n - 1, acc); // acc is only used here
    }

    Fixes #6484.

  • #7774 2509b91 Thanks @dibashthapa! - Fixed #7657: Added the new rule no-unknown-property from ESLint

  • #7918 7165d06 Thanks @dyc3! - Fixed #7913: The CSS parser, with tailwindDirectives enabled, will now correctly handle @slot.

  • #7959 ffae203 Thanks @siketyan! - Fixed the Biome Language Server so it no longer returns an internal error when the formatter is disabled in the configuration.

@biomejs/backend-jsonrpc@2.0.24

@biomejs/cli-darwin-arm64@2.3.3

@biomejs/cli-darwin-x64@2.3.3

@biomejs/cli-linux-arm64@2.3.3

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

@biomejs/cli-linux-x64@2.3.3

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

@biomejs/cli-win32-arm64@2.3.3

@biomejs/cli-win32-x64@2.3.3

@biomejs/wasm-bundler@2.3.3

@biomejs/wasm-nodejs@2.3.3

@biomejs/wasm-web@2.3.3

@github-actions github-actions bot force-pushed the changeset-release/main branch 13 times, most recently from 480c6bd to da605a3 Compare November 3, 2025 07:39
@github-actions github-actions bot force-pushed the changeset-release/main branch from da605a3 to 3cb07f9 Compare November 3, 2025 09:13
@ematipico ematipico merged commit fd282fc into main Nov 3, 2025
1 check passed
@ematipico ematipico deleted the changeset-release/main branch November 3, 2025 09:19
l0ngvh pushed a commit to l0ngvh/biome that referenced this pull request Dec 21, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment