diff --git a/.changeset/cool-snails-wave.md b/.changeset/cool-snails-wave.md deleted file mode 100644 index 13c523b9a2b2..000000000000 --- a/.changeset/cool-snails-wave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#9109](https://github.com/biomejs/biome/issues/9109), where the GitHub reporter wasn't correctly enabled when `biome ci` runs on GitHub Actions. diff --git a/.changeset/fix-astro-directive-parsing.md b/.changeset/fix-astro-directive-parsing.md deleted file mode 100644 index 785bcaa39ee0..000000000000 --- a/.changeset/fix-astro-directive-parsing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#9107](https://github.com/biomejs/biome/issues/9107): The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives. diff --git a/.changeset/fix-astro-frontmatter-fence-detection.md b/.changeset/fix-astro-frontmatter-fence-detection.md deleted file mode 100644 index e6e32c4eecb8..000000000000 --- a/.changeset/fix-astro-frontmatter-fence-detection.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8882](https://github.com/biomejs/biome/issues/8882) and [#9108](https://github.com/biomejs/biome/issues/9108): The Astro frontmatter lexer now correctly identifies the closing `---` fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. `"it's"`), or escaped quote characters (e.g. `"\"`). diff --git a/.changeset/fix-closedby-dialog-attribute.md b/.changeset/fix-closedby-dialog-attribute.md deleted file mode 100644 index 391aba8e74f7..000000000000 --- a/.changeset/fix-closedby-dialog-attribute.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#9141](https://github.com/biomejs/biome/issues/9141): The `noUnknownAttribute` rule no longer reports `closedby` as an unknown attribute on `` elements. diff --git a/.changeset/fix-mocha-test-globals.md b/.changeset/fix-mocha-test-globals.md deleted file mode 100644 index 260da5e4b68e..000000000000 --- a/.changeset/fix-mocha-test-globals.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added missing Mocha globals to the `Test` domain: `context`, `run`, `setup`, `specify`, `suite`, `suiteSetup`, `suiteTeardown`, `teardown`, `xcontext`, `xdescribe`, `xit`, and `xspecify`. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha. diff --git a/.changeset/loose-eyes-roll.md b/.changeset/loose-eyes-roll.md deleted file mode 100644 index e4be73d46290..000000000000 --- a/.changeset/loose-eyes-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8840](https://github.com/biomejs/biome/issues/8840). Now the Biome CSS parser correctly parses `not + scroll-state` inside `@container` queries. diff --git a/.changeset/new-dolls-flow.md b/.changeset/new-dolls-flow.md deleted file mode 100644 index 39de8d19336f..000000000000 --- a/.changeset/new-dolls-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Slightly improved performance of [`noIrregularWhitespace`](https://biomejs.dev/linter/rules/no-irregular-whitespace/) by adding early return optimization and simplifying character detection logic. diff --git a/.changeset/use-destructuring-type-annotations.md b/.changeset/use-destructuring-type-annotations.md deleted file mode 100644 index 9fbbd729a07d..000000000000 --- a/.changeset/use-destructuring-type-annotations.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8478](https://github.com/biomejs/biome/issues/8478): [`useDestructuring`](https://biomejs.dev/linter/rules/use-destructuring/) no longer suggests destructuring when the variable has a type annotation, like `const foo: string = object.foo`. diff --git a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md index fc53c372c009..22a7f11da96a 100644 --- a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md +++ b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/backend-jsonrpc +## 2.0.40 + ## 2.0.39 ## 2.0.38 diff --git a/packages/@biomejs/backend-jsonrpc/package.json b/packages/@biomejs/backend-jsonrpc/package.json index bb4d11267571..43ce457a2400 100644 --- a/packages/@biomejs/backend-jsonrpc/package.json +++ b/packages/@biomejs/backend-jsonrpc/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/backend-jsonrpc", - "version": "2.0.39", + "version": "2.0.40", "main": "dist/index.js", "scripts": { "test": "vitest", @@ -45,13 +45,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.4.2", - "@biomejs/cli-win32-arm64": "2.4.2", - "@biomejs/cli-darwin-x64": "2.4.2", - "@biomejs/cli-darwin-arm64": "2.4.2", - "@biomejs/cli-linux-x64": "2.4.2", - "@biomejs/cli-linux-arm64": "2.4.2", - "@biomejs/cli-linux-x64-musl": "2.4.2", - "@biomejs/cli-linux-arm64-musl": "2.4.2" + "@biomejs/cli-win32-x64": "2.4.3", + "@biomejs/cli-win32-arm64": "2.4.3", + "@biomejs/cli-darwin-x64": "2.4.3", + "@biomejs/cli-darwin-arm64": "2.4.3", + "@biomejs/cli-linux-x64": "2.4.3", + "@biomejs/cli-linux-arm64": "2.4.3", + "@biomejs/cli-linux-x64-musl": "2.4.3", + "@biomejs/cli-linux-arm64-musl": "2.4.3" } } diff --git a/packages/@biomejs/biome/CHANGELOG.md b/packages/@biomejs/biome/CHANGELOG.md index 8285f21613ba..bdaf911bce01 100644 --- a/packages/@biomejs/biome/CHANGELOG.md +++ b/packages/@biomejs/biome/CHANGELOG.md @@ -1,5 +1,25 @@ # @biomejs/biome +## 2.4.3 + +### Patch Changes + +- [#9120](https://github.com/biomejs/biome/pull/9120) [`aa40fc2`](https://github.com/biomejs/biome/commit/aa40fc237a1379188edcbbbf4dc37fd7de7c58f5) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#9109](https://github.com/biomejs/biome/issues/9109), where the GitHub reporter wasn't correctly enabled when `biome ci` runs on GitHub Actions. + +- [#9128](https://github.com/biomejs/biome/pull/9128) [`8ca3f7f`](https://github.com/biomejs/biome/commit/8ca3f7fcd1b0041fd7ade381032dfbb0f9693a41) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#9107](https://github.com/biomejs/biome/issues/9107): The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives. + +- [#9124](https://github.com/biomejs/biome/pull/9124) [`f5b0e8d`](https://github.com/biomejs/biome/commit/f5b0e8d0761c08d79d6cb1ad8df33da8605f20a9) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#8882](https://github.com/biomejs/biome/issues/8882) and [#9108](https://github.com/biomejs/biome/issues/9108): The Astro frontmatter lexer now correctly identifies the closing `---` fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. `"it's"`), or escaped quote characters (e.g. `"\"`). + +- [#9142](https://github.com/biomejs/biome/pull/9142) [`3ca066b`](https://github.com/biomejs/biome/commit/3ca066bbb73cfbe1a1bcb1c9fc76f4a79966efc0) Thanks [@THernandez03](https://github.com/THernandez03)! - Fixed [#9141](https://github.com/biomejs/biome/issues/9141): The `noUnknownAttribute` rule no longer reports `closedby` as an unknown attribute on `` elements. + +- [#9126](https://github.com/biomejs/biome/pull/9126) [`792013e`](https://github.com/biomejs/biome/commit/792013eb767188608d0b6dd4dfa24413832dcb93) Thanks [@ematipico](https://github.com/ematipico)! - Added missing Mocha globals to the `Test` domain: `context`, `run`, `setup`, `specify`, `suite`, `suiteSetup`, `suiteTeardown`, `teardown`, `xcontext`, `xdescribe`, `xit`, and `xspecify`. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha. + +- [#8855](https://github.com/biomejs/biome/pull/8855) [`6918c9e`](https://github.com/biomejs/biome/commit/6918c9e2bf4da19b3ac9f772272bc1a28f454fc1) Thanks [@ruidosujeira](https://github.com/ruidosujeira)! - Fixed [#8840](https://github.com/biomejs/biome/issues/8840). Now the Biome CSS parser correctly parses `not + scroll-state` inside `@container` queries. + +- [#9111](https://github.com/biomejs/biome/pull/9111) [`4fb55cf`](https://github.com/biomejs/biome/commit/4fb55cf998a3d41c4451679fe359ebec47692f5d) Thanks [@Jayllyz](https://github.com/Jayllyz)! - Slightly improved performance of [`noIrregularWhitespace`](https://biomejs.dev/linter/rules/no-irregular-whitespace/) by adding early return optimization and simplifying character detection logic. + +- [#8975](https://github.com/biomejs/biome/pull/8975) [`086a0c5`](https://github.com/biomejs/biome/commit/086a0c5c35a147df13197642bead23aa7df18a84) Thanks [@FrankFMY](https://github.com/FrankFMY)! - Fixed [#8478](https://github.com/biomejs/biome/issues/8478): [`useDestructuring`](https://biomejs.dev/linter/rules/use-destructuring/) no longer suggests destructuring when the variable has a type annotation, like `const foo: string = object.foo`. + ## 2.4.2 ### Patch Changes diff --git a/packages/@biomejs/biome/package.json b/packages/@biomejs/biome/package.json index 89cab40cc23d..5da3fb0347ad 100644 --- a/packages/@biomejs/biome/package.json +++ b/packages/@biomejs/biome/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/biome", - "version": "2.4.2", + "version": "2.4.3", "bin": { "biome": "bin/biome" }, @@ -46,13 +46,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.4.2", - "@biomejs/cli-win32-arm64": "2.4.2", - "@biomejs/cli-darwin-x64": "2.4.2", - "@biomejs/cli-darwin-arm64": "2.4.2", - "@biomejs/cli-linux-x64": "2.4.2", - "@biomejs/cli-linux-arm64": "2.4.2", - "@biomejs/cli-linux-x64-musl": "2.4.2", - "@biomejs/cli-linux-arm64-musl": "2.4.2" + "@biomejs/cli-win32-x64": "2.4.3", + "@biomejs/cli-win32-arm64": "2.4.3", + "@biomejs/cli-darwin-x64": "2.4.3", + "@biomejs/cli-darwin-arm64": "2.4.3", + "@biomejs/cli-linux-x64": "2.4.3", + "@biomejs/cli-linux-arm64": "2.4.3", + "@biomejs/cli-linux-x64-musl": "2.4.3", + "@biomejs/cli-linux-arm64-musl": "2.4.3" } } diff --git a/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md b/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md index 8ef3015ba402..5c4ba98136f9 100644 --- a/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md +++ b/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-darwin-arm64 +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-darwin-arm64/package.json b/packages/@biomejs/cli-darwin-arm64/package.json index 6e329f6e0dca..286b1335c603 100644 --- a/packages/@biomejs/cli-darwin-arm64/package.json +++ b/packages/@biomejs/cli-darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-darwin-arm64", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-darwin-x64/CHANGELOG.md b/packages/@biomejs/cli-darwin-x64/CHANGELOG.md index ce81c8dd23f4..f64c16a7cc35 100644 --- a/packages/@biomejs/cli-darwin-x64/CHANGELOG.md +++ b/packages/@biomejs/cli-darwin-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-darwin-x64 +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-darwin-x64/package.json b/packages/@biomejs/cli-darwin-x64/package.json index 565af3617e38..9f2b7abfb874 100644 --- a/packages/@biomejs/cli-darwin-x64/package.json +++ b/packages/@biomejs/cli-darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-darwin-x64", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-linux-arm64-musl/CHANGELOG.md b/packages/@biomejs/cli-linux-arm64-musl/CHANGELOG.md index 3151c9f4b0bf..902bf60c2e69 100644 --- a/packages/@biomejs/cli-linux-arm64-musl/CHANGELOG.md +++ b/packages/@biomejs/cli-linux-arm64-musl/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-linux-arm64-musl +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-linux-arm64-musl/package.json b/packages/@biomejs/cli-linux-arm64-musl/package.json index 50baa9cbb887..bc2bdcdc49b2 100644 --- a/packages/@biomejs/cli-linux-arm64-musl/package.json +++ b/packages/@biomejs/cli-linux-arm64-musl/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-linux-arm64-musl", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-linux-arm64/CHANGELOG.md b/packages/@biomejs/cli-linux-arm64/CHANGELOG.md index df737db351a9..9273ed1536df 100644 --- a/packages/@biomejs/cli-linux-arm64/CHANGELOG.md +++ b/packages/@biomejs/cli-linux-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-linux-arm64 +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-linux-arm64/package.json b/packages/@biomejs/cli-linux-arm64/package.json index 4c302bf181bf..8a230dc8cc9f 100644 --- a/packages/@biomejs/cli-linux-arm64/package.json +++ b/packages/@biomejs/cli-linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-linux-arm64", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-linux-x64-musl/CHANGELOG.md b/packages/@biomejs/cli-linux-x64-musl/CHANGELOG.md index 516c171b8beb..e507bb40ae0b 100644 --- a/packages/@biomejs/cli-linux-x64-musl/CHANGELOG.md +++ b/packages/@biomejs/cli-linux-x64-musl/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-linux-x64-musl +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-linux-x64-musl/package.json b/packages/@biomejs/cli-linux-x64-musl/package.json index e309ceb357b1..2765800e3446 100644 --- a/packages/@biomejs/cli-linux-x64-musl/package.json +++ b/packages/@biomejs/cli-linux-x64-musl/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-linux-x64-musl", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-linux-x64/CHANGELOG.md b/packages/@biomejs/cli-linux-x64/CHANGELOG.md index 0af2e5ea71be..5c25e6671e4c 100644 --- a/packages/@biomejs/cli-linux-x64/CHANGELOG.md +++ b/packages/@biomejs/cli-linux-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-linux-x64 +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-linux-x64/package.json b/packages/@biomejs/cli-linux-x64/package.json index a4658a786923..3c3dd476bacc 100644 --- a/packages/@biomejs/cli-linux-x64/package.json +++ b/packages/@biomejs/cli-linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-linux-x64", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-win32-arm64/CHANGELOG.md b/packages/@biomejs/cli-win32-arm64/CHANGELOG.md index 6b3e8fadc447..b76f310842d0 100644 --- a/packages/@biomejs/cli-win32-arm64/CHANGELOG.md +++ b/packages/@biomejs/cli-win32-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-win32-arm64 +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-win32-arm64/package.json b/packages/@biomejs/cli-win32-arm64/package.json index 7d455d10e7ac..0ad91fa9d8e4 100644 --- a/packages/@biomejs/cli-win32-arm64/package.json +++ b/packages/@biomejs/cli-win32-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-win32-arm64", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/cli-win32-x64/CHANGELOG.md b/packages/@biomejs/cli-win32-x64/CHANGELOG.md index 2b3f4f07449c..f0bb1a935bb5 100644 --- a/packages/@biomejs/cli-win32-x64/CHANGELOG.md +++ b/packages/@biomejs/cli-win32-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/cli-win32-x64 +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/cli-win32-x64/package.json b/packages/@biomejs/cli-win32-x64/package.json index a3fdd018cbe6..e5daa88d6287 100644 --- a/packages/@biomejs/cli-win32-x64/package.json +++ b/packages/@biomejs/cli-win32-x64/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/cli-win32-x64", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/js-api/package.json b/packages/@biomejs/js-api/package.json index 2fe746f242d5..e22297af24d7 100644 --- a/packages/@biomejs/js-api/package.json +++ b/packages/@biomejs/js-api/package.json @@ -73,9 +73,9 @@ "vitest": "4.0.18" }, "peerDependencies": { - "@biomejs/wasm-bundler": "^2.4.2", - "@biomejs/wasm-nodejs": "^2.4.2", - "@biomejs/wasm-web": "^2.4.2" + "@biomejs/wasm-bundler": "^2.4.3", + "@biomejs/wasm-nodejs": "^2.4.3", + "@biomejs/wasm-web": "^2.4.3" }, "peerDependenciesMeta": { "@biomejs/wasm-bundler": { diff --git a/packages/@biomejs/wasm-bundler/CHANGELOG.md b/packages/@biomejs/wasm-bundler/CHANGELOG.md index 04d33656e72b..abd01480b142 100644 --- a/packages/@biomejs/wasm-bundler/CHANGELOG.md +++ b/packages/@biomejs/wasm-bundler/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-bundler +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/wasm-bundler/package.json b/packages/@biomejs/wasm-bundler/package.json index 040effffa7f4..9498729acd89 100644 --- a/packages/@biomejs/wasm-bundler/package.json +++ b/packages/@biomejs/wasm-bundler/package.json @@ -5,7 +5,7 @@ "Biome Developers and Contributors" ], "description": "WebAssembly bindings to the Biome workspace API", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/wasm-nodejs/CHANGELOG.md b/packages/@biomejs/wasm-nodejs/CHANGELOG.md index 8e9d29667039..6aeffda6afd2 100644 --- a/packages/@biomejs/wasm-nodejs/CHANGELOG.md +++ b/packages/@biomejs/wasm-nodejs/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-nodejs +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/wasm-nodejs/package.json b/packages/@biomejs/wasm-nodejs/package.json index f5346c2d3bc7..6298e03b1df4 100644 --- a/packages/@biomejs/wasm-nodejs/package.json +++ b/packages/@biomejs/wasm-nodejs/package.json @@ -4,7 +4,7 @@ "Biome Developers and Contributors" ], "description": "WebAssembly bindings to the Biome workspace API", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/packages/@biomejs/wasm-web/CHANGELOG.md b/packages/@biomejs/wasm-web/CHANGELOG.md index 90766a4da66f..abce42f63c1d 100644 --- a/packages/@biomejs/wasm-web/CHANGELOG.md +++ b/packages/@biomejs/wasm-web/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-web +## 2.4.3 + ## 2.4.2 ## 2.4.1 diff --git a/packages/@biomejs/wasm-web/package.json b/packages/@biomejs/wasm-web/package.json index 910b95ced370..dfefcaa471b1 100644 --- a/packages/@biomejs/wasm-web/package.json +++ b/packages/@biomejs/wasm-web/package.json @@ -5,7 +5,7 @@ "Biome Developers and Contributors" ], "description": "WebAssembly bindings to the Biome workspace API", - "version": "2.4.2", + "version": "2.4.3", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eb4ee6035216..7aae80edb7ef 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -64,55 +64,55 @@ importers: version: 4.0.18(@types/node@24.10.9)(happy-dom@20.4.0)(jiti@2.6.1)(yaml@2.8.2) optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-win32-x64 packages/@biomejs/biome: optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.4.2 + specifier: 2.4.3 version: link:../cli-win32-x64 packages/@biomejs/cli-darwin-arm64: {}