Skip to content

Commit 6c296ea

Browse files
ci: release (#9160)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 458211b commit 6c296ea

33 files changed

+86
-73
lines changed

.changeset/fix-astro-fence-in-html-content.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-html-brackets-in-text.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-svelte-keywords-text-content.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-vue-colon-attribute-parsing.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/no-assign-in-expressions-vue-v-on.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/@biomejs/backend-jsonrpc/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/backend-jsonrpc
22

3+
## 2.0.41
4+
35
## 2.0.40
46

57
## 2.0.39

packages/@biomejs/backend-jsonrpc/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/backend-jsonrpc",
3-
"version": "2.0.40",
3+
"version": "2.0.41",
44
"main": "dist/index.js",
55
"scripts": {
66
"test": "vitest",
@@ -45,13 +45,13 @@
4545
"provenance": true
4646
},
4747
"optionalDependencies": {
48-
"@biomejs/cli-win32-x64": "2.4.3",
49-
"@biomejs/cli-win32-arm64": "2.4.3",
50-
"@biomejs/cli-darwin-x64": "2.4.3",
51-
"@biomejs/cli-darwin-arm64": "2.4.3",
52-
"@biomejs/cli-linux-x64": "2.4.3",
53-
"@biomejs/cli-linux-arm64": "2.4.3",
54-
"@biomejs/cli-linux-x64-musl": "2.4.3",
55-
"@biomejs/cli-linux-arm64-musl": "2.4.3"
48+
"@biomejs/cli-win32-x64": "2.4.4",
49+
"@biomejs/cli-win32-arm64": "2.4.4",
50+
"@biomejs/cli-darwin-x64": "2.4.4",
51+
"@biomejs/cli-darwin-arm64": "2.4.4",
52+
"@biomejs/cli-linux-x64": "2.4.4",
53+
"@biomejs/cli-linux-arm64": "2.4.4",
54+
"@biomejs/cli-linux-x64-musl": "2.4.4",
55+
"@biomejs/cli-linux-arm64-musl": "2.4.4"
5656
}
5757
}

packages/@biomejs/biome/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @biomejs/biome
22

3+
## 2.4.4
4+
5+
### Patch Changes
6+
7+
- [#9150](https://github.com/biomejs/biome/pull/9150) [`6946835`](https://github.com/biomejs/biome/commit/6946835b2c12078b326da5b51e4e4c62fbba525c) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#9138](https://github.com/biomejs/biome/issues/9138): Astro files containing `---` in HTML content (e.g., `<h1>---Hi</h1>`) are now parsed correctly, both when a frontmatter block is present and when there is no frontmatter at all.
8+
9+
- [#9150](https://github.com/biomejs/biome/pull/9150) [`aa6f837`](https://github.com/biomejs/biome/commit/aa6f8370ae7e4694901d04914689611c9f42ad1a) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#9138](https://github.com/biomejs/biome/issues/9138): The HTML parser incorrectly failing to parse bracket characters (`[` and `]`) in text content (e.g. `<div>[Foo]</div>`).
10+
11+
- [#9151](https://github.com/biomejs/biome/pull/9151) [`c0d4b0c`](https://github.com/biomejs/biome/commit/c0d4b0c06dac60ff2a7f52de38adad3ca37dffc4) Thanks [@dyc3](https://github.com/dyc3)! - Fixed parsing of Svelte directive keywords (`use`, `style`) when used as plain text content in HTML/Svelte files. Previously, `<p>use JavaScript</p>` or `<p>style it</p>` would incorrectly produce a bogus element instead of proper text content.
12+
13+
- [#9162](https://github.com/biomejs/biome/pull/9162) [`7f1e060`](https://github.com/biomejs/biome/commit/7f1e0608099cb1245a29e80eee671e181e9e470b) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#9161](https://github.com/biomejs/biome/issues/9161): The Vue parser now correctly handles colon attributes like `xlink:href` and `xmlns:xlink` by parsing them as single attributes instead of splitting them into separate tokens.
14+
15+
- [#9164](https://github.com/biomejs/biome/pull/9164) [`458211b`](https://github.com/biomejs/biome/commit/458211bd5c9167c474f1411f48167999fb9f4b9f) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#9161](https://github.com/biomejs/biome/issues/9161): The `noAssignInExpressions` rule no longer flags assignments in Vue v-on directives (e.g., `@click="counter += 1"`). Assignments in event handlers are idiomatic Vue patterns and are now skipped by the rule.
16+
317
## 2.4.3
418

519
### Patch Changes

packages/@biomejs/biome/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/biome",
3-
"version": "2.4.3",
3+
"version": "2.4.4",
44
"bin": {
55
"biome": "bin/biome"
66
},
@@ -46,13 +46,13 @@
4646
"provenance": true
4747
},
4848
"optionalDependencies": {
49-
"@biomejs/cli-win32-x64": "2.4.3",
50-
"@biomejs/cli-win32-arm64": "2.4.3",
51-
"@biomejs/cli-darwin-x64": "2.4.3",
52-
"@biomejs/cli-darwin-arm64": "2.4.3",
53-
"@biomejs/cli-linux-x64": "2.4.3",
54-
"@biomejs/cli-linux-arm64": "2.4.3",
55-
"@biomejs/cli-linux-x64-musl": "2.4.3",
56-
"@biomejs/cli-linux-arm64-musl": "2.4.3"
49+
"@biomejs/cli-win32-x64": "2.4.4",
50+
"@biomejs/cli-win32-arm64": "2.4.4",
51+
"@biomejs/cli-darwin-x64": "2.4.4",
52+
"@biomejs/cli-darwin-arm64": "2.4.4",
53+
"@biomejs/cli-linux-x64": "2.4.4",
54+
"@biomejs/cli-linux-arm64": "2.4.4",
55+
"@biomejs/cli-linux-x64-musl": "2.4.4",
56+
"@biomejs/cli-linux-arm64-musl": "2.4.4"
5757
}
5858
}

packages/@biomejs/cli-darwin-arm64/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/cli-darwin-arm64
22

3+
## 2.4.4
4+
35
## 2.4.3
46

57
## 2.4.2

0 commit comments

Comments
 (0)