diff --git a/.changeset/cool-drinks-dress.md b/.changeset/cool-drinks-dress.md deleted file mode 100644 index 367840bccc16..000000000000 --- a/.changeset/cool-drinks-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the nursery rule [`noIncrementDecrement`](https://biomejs.dev/linter/rules/no-increment-decrement/), disallows the usage of the unary operators ++ and --. diff --git a/.changeset/proud-peaches-hide.md b/.changeset/proud-peaches-hide.md deleted file mode 100644 index f0fe76f8e4c5..000000000000 --- a/.changeset/proud-peaches-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7837](https://github.com/biomejs/biome/issues/7837), where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files. diff --git a/.changeset/quick-apples-count.md b/.changeset/quick-apples-count.md deleted file mode 100644 index ee91536ca5fa..000000000000 --- a/.changeset/quick-apples-count.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7230](https://github.com/biomejs/biome/issues/7230): [`noUselessStringConcat`](https://biomejs.dev/linter/rules/no-useless-string-concat/) no longer emits false positives for multi-line strings with leading `+` operators. - -Previously, the rule did not check for leading newlines on the `+` operator, emitting false positives if one occurred at the start of a line. \ -Notably, formatting with `operatorLinebreak="before"` would move the `+` operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used. - -Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of `operatorLinebreak`. - -**Example** -```ts -// The following code used to error if the `+` operators were at the start of lines (as opposed to the end). -// Now, the rule correctly recognizes this as a stylistic concatenation and ignores it. -const reallyLongStringThatShouldNotError = - "Lorem ipsum dolor sit amet consectetur adipiscing elit." - + "Quisque faucibus ex sapien vitae pellentesque sem placerat." - + "In id cursus mi pretium tellus duis convallis." - + "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla"; -``` diff --git a/.changeset/ripe-rabbits-build.md b/.changeset/ripe-rabbits-build.md deleted file mode 100644 index aab1e50d6408..000000000000 --- a/.changeset/ripe-rabbits-build.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7601](https://github.com/biomejs/biome/issues/7601): Properly match Grit plugin's code snippet with only one child. diff --git a/.changeset/wild-eels-send.md b/.changeset/wild-eels-send.md deleted file mode 100644 index 979d79bd892a..000000000000 --- a/.changeset/wild-eels-send.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7837](https://github.com/biomejs/biome/issues/7837), where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled. diff --git a/crates/biome_js_analyze/src/lint/nursery/no_increment_decrement.rs b/crates/biome_js_analyze/src/lint/nursery/no_increment_decrement.rs index 55cb728cfb9e..846473e1b58d 100644 --- a/crates/biome_js_analyze/src/lint/nursery/no_increment_decrement.rs +++ b/crates/biome_js_analyze/src/lint/nursery/no_increment_decrement.rs @@ -131,7 +131,7 @@ declare_lint_rule! { /// ``` /// pub NoIncrementDecrement { - version: "next", + version: "2.3.2", name: "noIncrementDecrement", language: "js", recommended: false, diff --git a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md index f93d29e92c02..8e134de22e05 100644 --- a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md +++ b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/backend-jsonrpc +## 2.0.23 + ## 2.0.22 ## 2.0.21 diff --git a/packages/@biomejs/backend-jsonrpc/package.json b/packages/@biomejs/backend-jsonrpc/package.json index 1e17bd28b5df..27ba8c7c9246 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.22", + "version": "2.0.23", "main": "dist/index.js", "scripts": { "test": "vitest", @@ -45,13 +45,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.3.1", - "@biomejs/cli-win32-arm64": "2.3.1", - "@biomejs/cli-darwin-x64": "2.3.1", - "@biomejs/cli-darwin-arm64": "2.3.1", - "@biomejs/cli-linux-x64": "2.3.1", - "@biomejs/cli-linux-arm64": "2.3.1", - "@biomejs/cli-linux-x64-musl": "2.3.1", - "@biomejs/cli-linux-arm64-musl": "2.3.1" + "@biomejs/cli-win32-x64": "2.3.2", + "@biomejs/cli-win32-arm64": "2.3.2", + "@biomejs/cli-darwin-x64": "2.3.2", + "@biomejs/cli-darwin-arm64": "2.3.2", + "@biomejs/cli-linux-x64": "2.3.2", + "@biomejs/cli-linux-arm64": "2.3.2", + "@biomejs/cli-linux-x64-musl": "2.3.2", + "@biomejs/cli-linux-arm64-musl": "2.3.2" } } diff --git a/packages/@biomejs/biome/CHANGELOG.md b/packages/@biomejs/biome/CHANGELOG.md index 46f9775b13d1..a3471fbb4b61 100644 --- a/packages/@biomejs/biome/CHANGELOG.md +++ b/packages/@biomejs/biome/CHANGELOG.md @@ -1,5 +1,36 @@ # @biomejs/biome +## 2.3.2 + +### Patch Changes + +- [#7859](https://github.com/biomejs/biome/pull/7859) [`c600618`](https://github.com/biomejs/biome/commit/c6006184a860b42fea3f0ea5fe96c47087341a90) Thanks [@Netail](https://github.com/Netail)! - Added the nursery rule [`noIncrementDecrement`](https://biomejs.dev/linter/rules/no-increment-decrement/), disallows the usage of the unary operators ++ and --. + +- [#7901](https://github.com/biomejs/biome/pull/7901) [`0d17b05`](https://github.com/biomejs/biome/commit/0d17b05477a537b6d652a2e56c50bb1db013ef06) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#7837](https://github.com/biomejs/biome/issues/7837), where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files. + +- [#7874](https://github.com/biomejs/biome/pull/7874) [`e617d36`](https://github.com/biomejs/biome/commit/e617d363b9356bef007192a7f508e15d63f56e9b) Thanks [@Bertie690](https://github.com/Bertie690)! - Fixed [#7230](https://github.com/biomejs/biome/issues/7230): [`noUselessStringConcat`](https://biomejs.dev/linter/rules/no-useless-string-concat/) no longer emits false positives for multi-line strings with leading `+` operators. + + Previously, the rule did not check for leading newlines on the `+` operator, emitting false positives if one occurred at the start of a line. \ + Notably, formatting with `operatorLinebreak="before"` would move the `+` operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used. + + Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of `operatorLinebreak`. + + **Example** + + ```ts + // The following code used to error if the `+` operators were at the start of lines (as opposed to the end). + // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it. + const reallyLongStringThatShouldNotError = + "Lorem ipsum dolor sit amet consectetur adipiscing elit." + + "Quisque faucibus ex sapien vitae pellentesque sem placerat." + + "In id cursus mi pretium tellus duis convallis." + + "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla"; + ``` + +- [#7786](https://github.com/biomejs/biome/pull/7786) [`33ffcd5`](https://github.com/biomejs/biome/commit/33ffcd50a749ca0e188796a10b4ffffb59ead4b3) Thanks [@daivinhtran](https://github.com/daivinhtran)! - Fixed [#7601](https://github.com/biomejs/biome/issues/7601): Properly match Grit plugin's code snippet with only one child. + +- [#7901](https://github.com/biomejs/biome/pull/7901) [`0d17b05`](https://github.com/biomejs/biome/commit/0d17b05477a537b6d652a2e56c50bb1db013ef06) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#7837](https://github.com/biomejs/biome/issues/7837), where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled. + ## 2.3.1 ### Patch Changes diff --git a/packages/@biomejs/biome/package.json b/packages/@biomejs/biome/package.json index 07c72f3db62d..8bf49976cdbc 100644 --- a/packages/@biomejs/biome/package.json +++ b/packages/@biomejs/biome/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/biome", - "version": "2.3.1", + "version": "2.3.2", "bin": { "biome": "bin/biome" }, @@ -46,13 +46,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.3.1", - "@biomejs/cli-win32-arm64": "2.3.1", - "@biomejs/cli-darwin-x64": "2.3.1", - "@biomejs/cli-darwin-arm64": "2.3.1", - "@biomejs/cli-linux-x64": "2.3.1", - "@biomejs/cli-linux-arm64": "2.3.1", - "@biomejs/cli-linux-x64-musl": "2.3.1", - "@biomejs/cli-linux-arm64-musl": "2.3.1" + "@biomejs/cli-win32-x64": "2.3.2", + "@biomejs/cli-win32-arm64": "2.3.2", + "@biomejs/cli-darwin-x64": "2.3.2", + "@biomejs/cli-darwin-arm64": "2.3.2", + "@biomejs/cli-linux-x64": "2.3.2", + "@biomejs/cli-linux-arm64": "2.3.2", + "@biomejs/cli-linux-x64-musl": "2.3.2", + "@biomejs/cli-linux-arm64-musl": "2.3.2" } } diff --git a/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md b/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md index 43fc530561af..8197a444ad3c 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-darwin-arm64/package.json b/packages/@biomejs/cli-darwin-arm64/package.json index 828368c27b41..4f3e76597088 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.3.1", + "version": "2.3.2", "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 f25784effe7f..fa6fc79bb6aa 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-darwin-x64/package.json b/packages/@biomejs/cli-darwin-x64/package.json index 1faaaac6a489..1c4734d73d34 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.3.1", + "version": "2.3.2", "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 5ecc668aa58a..e9294264ee51 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-linux-arm64-musl/package.json b/packages/@biomejs/cli-linux-arm64-musl/package.json index 438f1f6d7a72..b803d88f390b 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.3.1", + "version": "2.3.2", "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 5bdaede33a6d..678c57b187d6 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-linux-arm64/package.json b/packages/@biomejs/cli-linux-arm64/package.json index c51fbfdf6849..520071e333ef 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.3.1", + "version": "2.3.2", "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 ddc965031d59..3106cbee22e1 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-linux-x64-musl/package.json b/packages/@biomejs/cli-linux-x64-musl/package.json index 62eaf634bdab..53d318666457 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.3.1", + "version": "2.3.2", "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 b61987632138..c764be7a69d0 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-linux-x64/package.json b/packages/@biomejs/cli-linux-x64/package.json index 6433a3a766a4..534711183ccb 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.3.1", + "version": "2.3.2", "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 a7b0452159bb..7935cf1299cf 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-win32-arm64/package.json b/packages/@biomejs/cli-win32-arm64/package.json index ca5a358f67a7..053e373d2b1c 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.3.1", + "version": "2.3.2", "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 aade9383352d..5ecc64b4b72a 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.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/cli-win32-x64/package.json b/packages/@biomejs/cli-win32-x64/package.json index 405dc986e374..03fb05451968 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.3.1", + "version": "2.3.2", "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 409bc7f68581..6fa2a5f04c1c 100644 --- a/packages/@biomejs/js-api/package.json +++ b/packages/@biomejs/js-api/package.json @@ -73,9 +73,9 @@ "vitest": "3.2.4" }, "peerDependencies": { - "@biomejs/wasm-bundler": "^2.3.1", - "@biomejs/wasm-nodejs": "^2.3.1", - "@biomejs/wasm-web": "^2.3.1" + "@biomejs/wasm-bundler": "^2.3.2", + "@biomejs/wasm-nodejs": "^2.3.2", + "@biomejs/wasm-web": "^2.3.2" }, "peerDependenciesMeta": { "@biomejs/wasm-bundler": { diff --git a/packages/@biomejs/wasm-bundler/CHANGELOG.md b/packages/@biomejs/wasm-bundler/CHANGELOG.md index 1644190bd68b..ac4415a25a4e 100644 --- a/packages/@biomejs/wasm-bundler/CHANGELOG.md +++ b/packages/@biomejs/wasm-bundler/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-bundler +## 2.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/wasm-bundler/package.json b/packages/@biomejs/wasm-bundler/package.json index 924e93bf971c..0476d1ae0819 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.3.1", + "version": "2.3.2", "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 269b571acc25..a072d98f882d 100644 --- a/packages/@biomejs/wasm-nodejs/CHANGELOG.md +++ b/packages/@biomejs/wasm-nodejs/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-nodejs +## 2.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/wasm-nodejs/package.json b/packages/@biomejs/wasm-nodejs/package.json index 145af17cf1f4..780e8c78287b 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.3.1", + "version": "2.3.2", "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 07d2bf10c853..46894673ba34 100644 --- a/packages/@biomejs/wasm-web/CHANGELOG.md +++ b/packages/@biomejs/wasm-web/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-web +## 2.3.2 + ## 2.3.1 ## 2.3.0 diff --git a/packages/@biomejs/wasm-web/package.json b/packages/@biomejs/wasm-web/package.json index ba635e7f6acb..46e1d7b7dbd3 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.3.1", + "version": "2.3.2", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 639042e56ede..79fabff7b160 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,55 +61,55 @@ importers: version: 3.2.4(@types/node@22.17.1)(happy-dom@20.0.2)(jiti@1.21.6) optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-win32-x64 packages/@biomejs/biome: optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.3.1 + specifier: 2.3.2 version: link:../cli-win32-x64 packages/@biomejs/cli-darwin-arm64: {}