diff --git a/.changeset/bumpy-months-draw.md b/.changeset/bumpy-months-draw.md deleted file mode 100644 index b3f14c630cb3..000000000000 --- a/.changeset/bumpy-months-draw.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7390](https://github.com/biomejs/biome/issues/7390), where Biome couldn't apply the correct configuration passed via `--config-path`. - -If you have multiple **root** configuration files, running any command with `--config-path` will now apply the chosen configuration file. diff --git a/.changeset/calm-shrimps-study.md b/.changeset/calm-shrimps-study.md deleted file mode 100644 index ccd073d89c3e..000000000000 --- a/.changeset/calm-shrimps-study.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@biomejs/biome': patch ---- - -Added the new rule [`noLeakedRender`](https://biomejs.dev/linter/rules/no-leaked-render). This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries. - -For example, the following code triggers the rule because the component would render `0`: - -```jsx -const Component = () => { - const count = 0; - return
{count && Count: {count}}
; -} -``` diff --git a/.changeset/clean-swans-act.md b/.changeset/clean-swans-act.md deleted file mode 100644 index cb51de9a7e91..000000000000 --- a/.changeset/clean-swans-act.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the nursery rule [`noDuplicatedSpreadProps`](https://biomejs.dev/linter/rules/no-duplicated-spread-props/). Disallow JSX prop spreading the same identifier multiple times. - -**Invalid:** - -```jsx -
-``` diff --git a/.changeset/cold-webs-vanish.md b/.changeset/cold-webs-vanish.md deleted file mode 100644 index d4b12cc4cb24..000000000000 --- a/.changeset/cold-webs-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed a bug where logs were discarded (the kind from `--log-level=info` etc.). This is a regression introduced after an internal refactor that wasn't adequately tested. diff --git a/.changeset/forty-falcons-pick.md b/.changeset/forty-falcons-pick.md deleted file mode 100644 index bbe4b03bd586..000000000000 --- a/.changeset/forty-falcons-pick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8222](https://github.com/biomejs/biome/issues/8222): The HTML parser, with Vue directives enabled, can now parse `v-slot` shorthand syntax, e.g. `