diff --git a/.changeset/fluffy-jeans-cheat.md b/.changeset/fluffy-jeans-cheat.md deleted file mode 100644 index a845151cc840..000000000000 --- a/.changeset/fluffy-jeans-cheat.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/lazy-animals-burn.md b/.changeset/lazy-animals-burn.md deleted file mode 100644 index 5c6ae0fa28a8..000000000000 --- a/.changeset/lazy-animals-burn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7212](https://github.com/biomejs/biome/issues/7212), now the [`useOptionalChain`](https://biomejs.dev/linter/rules/use-optional-chain/) rule recognizes optional chaining using `typeof` (e.g., `typeof foo !== 'undefined' && foo.bar`). diff --git a/.changeset/little-heads-divide.md b/.changeset/little-heads-divide.md deleted file mode 100644 index 4ebe4c923183..000000000000 --- a/.changeset/little-heads-divide.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7323](https://github.com/biomejs/biome/issues/7323). [`noUnusedPrivateClassMembers`](https://biomejs.dev/linter/rules/no-unused-private-class-members/) no longer reports as unused TypeScript `private` members if the rule encounters a computed access on `this`. - -In the following example, `member` as previously reported as unused. -It is no longer reported. - -```ts -class TsBioo { - private member: number; - - set_with_name(name: string, value: number) { - this[name] = value; - } -} -``` diff --git a/.changeset/nine-turkeys-dig.md b/.changeset/nine-turkeys-dig.md deleted file mode 100644 index 58d9b426f7ed..000000000000 --- a/.changeset/nine-turkeys-dig.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the new nursery lint rule `noJsxLiterals`, which disallows the use of string literals inside JSX. - -The rule catches these cases: - -```jsx -<> -
test
{/* test is invalid */} - <>test -
- {/* this string is invalid */} - asdjfl - test - foo -
- -``` diff --git a/.changeset/poor-horses-smash.md b/.changeset/poor-horses-smash.md deleted file mode 100644 index 1fd97d4af80d..000000000000 --- a/.changeset/poor-horses-smash.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed an issue (#6393) where the [useHookAtTopLevel](https://biomejs.dev/linter/rules/use-hook-at-top-level/) rule reported excessive diagnostics for nested hook calls. - -The rule now reports only the offending top-level call site, not sub-hooks of composite hooks. - -```js -// Before: reported twice (useFoo and useBar). -function useFoo() { return useBar(); } -function Component() { - if (cond) useFoo(); -} -// After: reported once at the call to useFoo(). -``` diff --git a/.changeset/rich-beds-clap.md b/.changeset/rich-beds-clap.md deleted file mode 100644 index 939d3d201edd..000000000000 --- a/.changeset/rich-beds-clap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#7411](https://github.com/biomejs/biome/issues/7411). The Biome Language Server had a regression where opening an editor with a file already open wouldn't load the project settings correctly. diff --git a/.changeset/seven-bats-write.md b/.changeset/seven-bats-write.md deleted file mode 100644 index 4fbeb75b07d0..000000000000 --- a/.changeset/seven-bats-write.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the new nursery rule [`noDuplicateDependencies`](https://next.biomejs.dev/linter/rules/no-duplicate-dependencies/), which verifies that no dependencies are duplicated between the `bundledDependencies`, `bundleDependencies`, `dependencies`, `devDependencies`, `overrides`, `optionalDependencies`, and `peerDependencies` sections. - -For example, the following snippets will trigger the rule: - -```json -{ - "dependencies": { - "foo": "" - }, - "devDependencies": { - "foo": "" - } -} -``` - -```json -{ - "dependencies": { - "foo": "" - }, - "optionalDependencies": { - "foo": "" - } -} -``` - -```json -{ - "dependencies": { - "foo": "" - }, - "peerDependencies": { - "foo": "" - } -} -``` diff --git a/.changeset/shy-ants-buy.md b/.changeset/shy-ants-buy.md deleted file mode 100644 index 131830fc87ae..000000000000 --- a/.changeset/shy-ants-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#3824](https://github.com/biomejs/biome/issues/3824). Now the option CLI `--color` is correctly applied to logging too. diff --git a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md index 8600a61b74a4..4ad6c1f95958 100644 --- a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md +++ b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/backend-jsonrpc +## 2.0.16 + ## 2.0.15 ## 2.0.14 diff --git a/packages/@biomejs/backend-jsonrpc/package.json b/packages/@biomejs/backend-jsonrpc/package.json index 2151b39ffbb3..948f194b2785 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.15", + "version": "2.0.16", "main": "dist/index.js", "scripts": { "test": "vitest", @@ -45,13 +45,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.2.3", - "@biomejs/cli-win32-arm64": "2.2.3", - "@biomejs/cli-darwin-x64": "2.2.3", - "@biomejs/cli-darwin-arm64": "2.2.3", - "@biomejs/cli-linux-x64": "2.2.3", - "@biomejs/cli-linux-arm64": "2.2.3", - "@biomejs/cli-linux-x64-musl": "2.2.3", - "@biomejs/cli-linux-arm64-musl": "2.2.3" + "@biomejs/cli-win32-x64": "2.2.4", + "@biomejs/cli-win32-arm64": "2.2.4", + "@biomejs/cli-darwin-x64": "2.2.4", + "@biomejs/cli-darwin-arm64": "2.2.4", + "@biomejs/cli-linux-x64": "2.2.4", + "@biomejs/cli-linux-arm64": "2.2.4", + "@biomejs/cli-linux-x64-musl": "2.2.4", + "@biomejs/cli-linux-arm64-musl": "2.2.4" } } diff --git a/packages/@biomejs/biome/CHANGELOG.md b/packages/@biomejs/biome/CHANGELOG.md index 94bd293eda5b..aedc399c791f 100644 --- a/packages/@biomejs/biome/CHANGELOG.md +++ b/packages/@biomejs/biome/CHANGELOG.md @@ -1,5 +1,97 @@ # @biomejs/biome +## 2.2.4 + +### Patch Changes + +- [#7415](https://github.com/biomejs/biome/pull/7415) [`d042f18`](https://github.com/biomejs/biome/commit/d042f18f556edfd4fecff562c8f197dbec81a5e7) Thanks [@qraqras](https://github.com/qraqras)! - Fixed [#7212](https://github.com/biomejs/biome/issues/7212), now the [`useOptionalChain`](https://biomejs.dev/linter/rules/use-optional-chain/) rule recognizes optional chaining using `typeof` (e.g., `typeof foo !== 'undefined' && foo.bar`). + +- [#7419](https://github.com/biomejs/biome/pull/7419) [`576baf4`](https://github.com/biomejs/biome/commit/576baf4faf568e8b6a295f457f70894235ffdb59) Thanks [@Conaclos](https://github.com/Conaclos)! - Fixed [#7323](https://github.com/biomejs/biome/issues/7323). [`noUnusedPrivateClassMembers`](https://biomejs.dev/linter/rules/no-unused-private-class-members/) no longer reports as unused TypeScript `private` members if the rule encounters a computed access on `this`. + + In the following example, `member` as previously reported as unused. + It is no longer reported. + + ```ts + class TsBioo { + private member: number; + + set_with_name(name: string, value: number) { + this[name] = value; + } + } + ``` + +- [#7248](https://github.com/biomejs/biome/pull/7248) [`75b6a0d`](https://github.com/biomejs/biome/commit/75b6a0d12f3aa30647f743d607b0d60c0470fff3) Thanks [@ematipico](https://github.com/ematipico)! - Added the new nursery lint rule `noJsxLiterals`, which disallows the use of string literals inside JSX. + + The rule catches these cases: + + ```jsx + <> +
test
{/* test is invalid */} + <>test +
+ {/* this string is invalid */} + asdjfl test foo +
+ + ``` + +- [#7406](https://github.com/biomejs/biome/pull/7406) [`b906112`](https://github.com/biomejs/biome/commit/b90611223dbab116c4c1678a374c1a48c29a34a0) Thanks [@mdevils](https://github.com/mdevils)! - Fixed an issue (#6393) where the [useHookAtTopLevel](https://biomejs.dev/linter/rules/use-hook-at-top-level/) rule reported excessive diagnostics for nested hook calls. + + The rule now reports only the offending top-level call site, not sub-hooks of composite hooks. + + ```js + // Before: reported twice (useFoo and useBar). + function useFoo() { + return useBar(); + } + function Component() { + if (cond) useFoo(); + } + // After: reported once at the call to useFoo(). + ``` + +- [#7418](https://github.com/biomejs/biome/pull/7418) [`00e1a6b`](https://github.com/biomejs/biome/commit/00e1a6b0afcee3bc89152858bab55efce9cfc18e) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#7411](https://github.com/biomejs/biome/issues/7411). The Biome Language Server had a regression where opening an editor with a file already open wouldn't load the project settings correctly. + +- [#7142](https://github.com/biomejs/biome/pull/7142) [`53ff5ae`](https://github.com/biomejs/biome/commit/53ff5ae34428f042bb5b80c19862c9cf69fc6359) Thanks [@Netail](https://github.com/Netail)! - Added the new nursery rule [`noDuplicateDependencies`](https://next.biomejs.dev/linter/rules/no-duplicate-dependencies/), which verifies that no dependencies are duplicated between the `bundledDependencies`, `bundleDependencies`, `dependencies`, `devDependencies`, `overrides`, `optionalDependencies`, and `peerDependencies` sections. + + For example, the following snippets will trigger the rule: + + ```json + { + "dependencies": { + "foo": "" + }, + "devDependencies": { + "foo": "" + } + } + ``` + + ```json + { + "dependencies": { + "foo": "" + }, + "optionalDependencies": { + "foo": "" + } + } + ``` + + ```json + { + "dependencies": { + "foo": "" + }, + "peerDependencies": { + "foo": "" + } + } + ``` + +- [#7441](https://github.com/biomejs/biome/pull/7441) [`733828c`](https://github.com/biomejs/biome/commit/733828c1996d482235389e3d71ea4706ca3a6be3) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#3824](https://github.com/biomejs/biome/issues/3824). Now the option CLI `--color` is correctly applied to logging too. + ## 2.2.3 ### Patch Changes diff --git a/packages/@biomejs/biome/package.json b/packages/@biomejs/biome/package.json index 7195c9c8dc8b..21f840d7dbf7 100644 --- a/packages/@biomejs/biome/package.json +++ b/packages/@biomejs/biome/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/biome", - "version": "2.2.3", + "version": "2.2.4", "bin": { "biome": "bin/biome" }, @@ -46,13 +46,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.2.3", - "@biomejs/cli-win32-arm64": "2.2.3", - "@biomejs/cli-darwin-x64": "2.2.3", - "@biomejs/cli-darwin-arm64": "2.2.3", - "@biomejs/cli-linux-x64": "2.2.3", - "@biomejs/cli-linux-arm64": "2.2.3", - "@biomejs/cli-linux-x64-musl": "2.2.3", - "@biomejs/cli-linux-arm64-musl": "2.2.3" + "@biomejs/cli-win32-x64": "2.2.4", + "@biomejs/cli-win32-arm64": "2.2.4", + "@biomejs/cli-darwin-x64": "2.2.4", + "@biomejs/cli-darwin-arm64": "2.2.4", + "@biomejs/cli-linux-x64": "2.2.4", + "@biomejs/cli-linux-arm64": "2.2.4", + "@biomejs/cli-linux-x64-musl": "2.2.4", + "@biomejs/cli-linux-arm64-musl": "2.2.4" } } diff --git a/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md b/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md index fe7f9e06ccb3..82d3d4e9d87d 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-darwin-arm64/package.json b/packages/@biomejs/cli-darwin-arm64/package.json index 03b1aa1544c6..5f263e749b1e 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.2.3", + "version": "2.2.4", "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 639e0d7c167b..bfd8c3b3dac2 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-darwin-x64/package.json b/packages/@biomejs/cli-darwin-x64/package.json index 0fdccfb2a544..5b8e763be330 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.2.3", + "version": "2.2.4", "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 10c9435f8c7a..36562543aba5 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-linux-arm64-musl/package.json b/packages/@biomejs/cli-linux-arm64-musl/package.json index a6b36412b87a..f93ef160a646 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.2.3", + "version": "2.2.4", "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 04629876c7c9..5726fb9c330a 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-linux-arm64/package.json b/packages/@biomejs/cli-linux-arm64/package.json index e42a2a66ca80..1105384512fb 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.2.3", + "version": "2.2.4", "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 34151584974b..2ee05a0fdb89 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-linux-x64-musl/package.json b/packages/@biomejs/cli-linux-x64-musl/package.json index 35e9dfd720e8..5e0909b6802f 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.2.3", + "version": "2.2.4", "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 9475b1809a3d..758a78fd3712 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-linux-x64/package.json b/packages/@biomejs/cli-linux-x64/package.json index e686c7139c21..71d8f6c9c930 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.2.3", + "version": "2.2.4", "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 eb2f162b69da..32195e749ea1 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-win32-arm64/package.json b/packages/@biomejs/cli-win32-arm64/package.json index b7d3024764f9..8da6993bfa0c 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.2.3", + "version": "2.2.4", "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 f088891323a3..4cf27848c4b9 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.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/cli-win32-x64/package.json b/packages/@biomejs/cli-win32-x64/package.json index 4c75cb9dff5f..ce89e49331de 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.2.3", + "version": "2.2.4", "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 8d7e96ed849e..4beb28db1c63 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.2.3", - "@biomejs/wasm-nodejs": "^2.2.3", - "@biomejs/wasm-web": "^2.2.3" + "@biomejs/wasm-bundler": "^2.2.4", + "@biomejs/wasm-nodejs": "^2.2.4", + "@biomejs/wasm-web": "^2.2.4" }, "peerDependenciesMeta": { "@biomejs/wasm-bundler": { diff --git a/packages/@biomejs/wasm-bundler/CHANGELOG.md b/packages/@biomejs/wasm-bundler/CHANGELOG.md index 3cbb3a17cb75..00c1462fc8c4 100644 --- a/packages/@biomejs/wasm-bundler/CHANGELOG.md +++ b/packages/@biomejs/wasm-bundler/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-bundler +## 2.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/wasm-bundler/package.json b/packages/@biomejs/wasm-bundler/package.json index 968234fb1cd6..dce61aaa5cc6 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.2.3", + "version": "2.2.4", "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 efccd555a222..1bfead891878 100644 --- a/packages/@biomejs/wasm-nodejs/CHANGELOG.md +++ b/packages/@biomejs/wasm-nodejs/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-nodejs +## 2.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/wasm-nodejs/package.json b/packages/@biomejs/wasm-nodejs/package.json index 05116e9f56f4..a392824e4bed 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.2.3", + "version": "2.2.4", "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 39357b158505..fec4864c2c03 100644 --- a/packages/@biomejs/wasm-web/CHANGELOG.md +++ b/packages/@biomejs/wasm-web/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-web +## 2.2.4 + ## 2.2.3 ## 2.2.2 diff --git a/packages/@biomejs/wasm-web/package.json b/packages/@biomejs/wasm-web/package.json index 3a40a753eb99..d5f890220ad9 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.2.3", + "version": "2.2.4", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 652a38b97149..1542c6c11a21 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@18.0.1)(jiti@1.21.6) optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-win32-x64 packages/@biomejs/biome: optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.2.3 + specifier: 2.2.4 version: link:../cli-win32-x64 packages/@biomejs/cli-darwin-arm64: {}