diff --git a/.changeset/all-tips-hang.md b/.changeset/all-tips-hang.md deleted file mode 100644 index d2b4ec07d284..000000000000 --- a/.changeset/all-tips-hang.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@biomejs/biome": patch ---- - - -Added support Svelte syntax `{@html}`. Biome now is able to parse and format the Svelte syntax [`{@html}`](https://svelte.dev/docs/svelte/@html): - -```diff --{@html 'div'} -+{@html 'div'} -``` -The contents of the expressions inside the `{@html }` aren't formatted yet. diff --git a/.changeset/brave-tires-tap.md b/.changeset/brave-tires-tap.md deleted file mode 100644 index 37e40627b400..000000000000 --- a/.changeset/brave-tires-tap.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed a bug where the Biome Language Server would enable its project file watcher even when no project rules were enabled. - -Now the watching of nested configuration files and nested ignore files is delegated to the editor, if their LSP spec supports it. diff --git a/.changeset/brown-poets-sit.md b/.changeset/brown-poets-sit.md deleted file mode 100644 index eb8b34f37cfd..000000000000 --- a/.changeset/brown-poets-sit.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added support Svelte syntax `{@render}`. Biome now is able to parse and format the Svelte syntax [`{@render}`](https://svelte.dev/docs/svelte/@render): - -```diff --{@render sum(1, 2) } -+{@render sum(1, 2)} -``` - -The contents of the expressions inside the `{@render }` aren't formatted yet. diff --git a/.changeset/curvy-nails-bake.md b/.changeset/curvy-nails-bake.md deleted file mode 100644 index 458b9f41b93b..000000000000 --- a/.changeset/curvy-nails-bake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Updated documentation and diagnostic for `lint/complexity/noBannedTypes`. The rule should have a more detailed description and diagnostic error message. diff --git a/.changeset/flat-rockets-battle.md b/.changeset/flat-rockets-battle.md deleted file mode 100644 index c5893db20a85..000000000000 --- a/.changeset/flat-rockets-battle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Biome now keeps a blank line after the frontmatter section in Astro files. diff --git a/.changeset/forty-nails-carry.md b/.changeset/forty-nails-carry.md deleted file mode 100644 index fa3284da044f..000000000000 --- a/.changeset/forty-nails-carry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -The CSS Parser, with `tailwindDirectives` enabled, will now accept at rules like `@media` and `@supports` in `@custom-variant` shorthand syntax. diff --git a/.changeset/grumpy-pants-repeat.md b/.changeset/grumpy-pants-repeat.md deleted file mode 100644 index 6f738ea019ca..000000000000 --- a/.changeset/grumpy-pants-repeat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@biomejs/biome': patch ---- - -Fixed [#7967](https://github.com/biomejs/biome/issues/7967): Fixed the issue with support for advanced SVG props diff --git a/.changeset/icy-planes-leave.md b/.changeset/icy-planes-leave.md deleted file mode 100644 index f47eda584af9..000000000000 --- a/.changeset/icy-planes-leave.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added support Svelte syntax `{@attach}`. Biome now is able to parse and format the Svelte syntax [`{@attach}`](https://svelte.dev/docs/svelte/@attach): - -```diff --
...
-+
...
-``` -The contents of the expressions inside the `{@attach }` aren't formatted yet. diff --git a/.changeset/light-toys-check.md b/.changeset/light-toys-check.md deleted file mode 100644 index 769a18ac42bc..000000000000 --- a/.changeset/light-toys-check.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added support Svelte syntax `{#key}`. Biome now is able to parse and format the Svelte syntax [`{#key}`](https://svelte.dev/docs/svelte/key): - -```diff --{#key expression}
{/key} -+{#key expression} -+
-+{/key} -``` -The contents of the expressions inside the `{#key }` aren't formatted yet. diff --git a/.changeset/mean-carrots-peel.md b/.changeset/mean-carrots-peel.md deleted file mode 100644 index ccc005ce77ad..000000000000 --- a/.changeset/mean-carrots-peel.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added support Svelte syntax `{@const}`. Biome now is able to parse and format the Svelte syntax [`{@const}`](https://svelte.dev/docs/svelte/@const): - -```diff --{@const name = value} -+{@const name = value} -``` - -The contents of the expressions inside the `{@const }` aren't formatted yet. diff --git a/.changeset/quiet-pets-visit.md b/.changeset/quiet-pets-visit.md deleted file mode 100644 index 90f5ac98d13e..000000000000 --- a/.changeset/quiet-pets-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Corrected rule source references. `biome migrate eslint` should do a bit better detecting rules in your eslint configurations. diff --git a/.changeset/sad-adults-enjoy.md b/.changeset/sad-adults-enjoy.md deleted file mode 100644 index 4cdcb3d9a68d..000000000000 --- a/.changeset/sad-adults-enjoy.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the nursery rule [`useArraySortCompare`](https://biomejs.dev/linter/rules/use-array-sort-compare/). Require Array#sort and Array#toSorted calls to always provide a compareFunction. - -**Invalid:** -```js -const array = []; -array.sort(); -``` - -**Valid:** -```js -const array = []; -array.sort((a, b) => a - b); -``` diff --git a/.changeset/shy-flowers-decide.md b/.changeset/shy-flowers-decide.md deleted file mode 100644 index af4952dabd63..000000000000 --- a/.changeset/shy-flowers-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -The HTML parser is now able to parse vue directives. This enables us to write/port Vue lint rules that require inspecting the `