diff --git a/.changeset/add-no-nested-promises-rule.md b/.changeset/add-no-nested-promises-rule.md deleted file mode 100644 index 04b629a0ddca..000000000000 --- a/.changeset/add-no-nested-promises-rule.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the lint rule [`noNestedPromises`](https://biomejs.dev/linter/rules/no-nested-promises/). This rule detects nested `.then()` or `.catch()` calls that could be refactored into flat promise chains. - -```js -// Invalid: nested promise that can be flattened -doThing().then(function() { - return doOtherThing().then(console.log); -}); - -// Valid: flat promise chain -doThing() - .then(() => doOtherThing()) - .then(console.log); -``` - -The rule intelligently allows nesting when the inner callback references variables from the outer scope, as these cases cannot be safely flattened. diff --git a/.changeset/chatty-lies-greet.md b/.changeset/chatty-lies-greet.md deleted file mode 100644 index 86a999750a90..000000000000 --- a/.changeset/chatty-lies-greet.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added the nursery rule [`noUselessReturn`](https://biomejs.dev/linter/rules/no-useless-return/). The rule reports redundant `return;` statements that don't affect the function's control flow. - -```js -// Invalid: return at end of function is redundant -function foo() { - doSomething(); - return; -} -``` diff --git a/.changeset/dry-spies-go.md b/.changeset/dry-spies-go.md deleted file mode 100644 index a1715cce4ccb..000000000000 --- a/.changeset/dry-spies-go.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Reverted a behavior change in [`useExhaustiveDependencies`](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/) that was accidentally included as part of the [#8802](https://github.com/biomejs/biome/issues/8802) fix. The change made method calls on objects (e.g., `props.data.forEach(...)`) report only the object (`props.data`) as a missing dependency instead of the full member expression. This behavior change will be reconsidered separately. diff --git a/.changeset/fix-assign-arrow-body.md b/.changeset/fix-assign-arrow-body.md deleted file mode 100644 index a7aac7bee086..000000000000 --- a/.changeset/fix-assign-arrow-body.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8790](https://github.com/biomejs/biome/issues/8790): The [`noAssignInExpressions`](https://biomejs.dev/linter/rules/no-assign-in-expressions/) rule no longer reports a false positive when an assignment is used as the expression body of an arrow function (e.g., `const f = b => a += b`). diff --git a/.changeset/fix-monorepo-glob-resolution.md b/.changeset/fix-monorepo-glob-resolution.md deleted file mode 100644 index c5def5af7b09..000000000000 --- a/.changeset/fix-monorepo-glob-resolution.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8518](https://github.com/biomejs/biome/issues/8518), where globally excluded files in a monorepo were still being processed when using `"extends": "//"`. - -When a package-level configuration extends the root configuration with `"extends": "//"`, glob patterns (such as those in `files.includes`) are now correctly resolved relative to the project root directory, instead of the current workspace directory. diff --git a/.changeset/four-cougars-fail.md b/.changeset/four-cougars-fail.md deleted file mode 100644 index 3582db86889e..000000000000 --- a/.changeset/four-cougars-fail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8967](https://github.com/biomejs/biome/issues/8967). [useExhaustiveDependencies](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/) no longer reports false positives for variables destructured from a rest pattern. diff --git a/.changeset/funny-phones-read.md b/.changeset/funny-phones-read.md deleted file mode 100644 index c3ade7a78e29..000000000000 --- a/.changeset/funny-phones-read.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#9020](https://github.com/biomejs/biome/issues/9020): When `javascript.jsxRuntime` is set to `reactClassic`, `noUnusedImports` and `useImportType` rules now allow importing the `React` identifier from a package other than `react`. This aligns the behavior with `tsc` (`--jsx=react`), which also allows importing `React` from any package. diff --git a/.changeset/happy-cats-drive.md b/.changeset/happy-cats-drive.md deleted file mode 100644 index 8bccf9850ebd..000000000000 --- a/.changeset/happy-cats-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8605](https://github.com/biomejs/biome/issues/8605): Text expressions in some template languages (`{{ expr }}` or `{ expr }`) at the top level of an HTML document no longer causes panicking. diff --git a/.changeset/jsx-exhaustive-deps.md b/.changeset/jsx-exhaustive-deps.md deleted file mode 100644 index 066cfa93b883..000000000000 --- a/.changeset/jsx-exhaustive-deps.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed #8917 -[useExhaustiveDependencies](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/) now correctly detects JSX component identifiers as hook dependencies. diff --git a/.changeset/lemon-pens-prove.md b/.changeset/lemon-pens-prove.md deleted file mode 100644 index b8852e8e42c2..000000000000 --- a/.changeset/lemon-pens-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed typo in [noPositiveTabindex](https://biomejs.dev/linter/rules/no-positive-tabindex/)'s quick fix text. diff --git a/.changeset/modern-crews-stick.md b/.changeset/modern-crews-stick.md deleted file mode 100644 index 5633297529da..000000000000 --- a/.changeset/modern-crews-stick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Updated the useJsxKeyInIterable rule to not run inside Map constructors diff --git a/.changeset/no-unused-imports-ambient-module.md b/.changeset/no-unused-imports-ambient-module.md deleted file mode 100644 index 1f335464b66a..000000000000 --- a/.changeset/no-unused-imports-ambient-module.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#4888](https://github.com/biomejs/biome/issues/4888). -[noUnusedImports](https://biomejs.dev/linter/rules/no-unused-imports/) now adds `export {}` when removing the last import in a TypeScript file to prevent it from becoming an ambient module. This does not apply to embedded scripts in Vue, Svelte, or Astro files, which are already in a module context. diff --git a/.changeset/proud-lemons-wonder.md b/.changeset/proud-lemons-wonder.md deleted file mode 100644 index 4c509c1ab249..000000000000 --- a/.changeset/proud-lemons-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Added eslint migration metadata for the rules `@typescript/no-var-requires`, `@typescript/keyword-spacing`, `@typescript/func-call-spacing`, `vue/keyword-spacing`, `vue/func-call-spacing`, and `unicorn/empty-brace-spaces`, diff --git a/.changeset/quiet-ads-fix2.md b/.changeset/quiet-ads-fix2.md deleted file mode 100644 index 9ca838616fd4..000000000000 --- a/.changeset/quiet-ads-fix2.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8845](https://github.com/biomejs/biome/issues/8845). Now `useGenericFontNames` doesn't trigger when `font` is declared inside the `@supports` at-rule. diff --git a/.changeset/quiet-owls-listen.md b/.changeset/quiet-owls-listen.md deleted file mode 100644 index f3e024c1f9fa..000000000000 --- a/.changeset/quiet-owls-listen.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8476](https://github.com/biomejs/biome/issues/8476). -[useAwaitThenable](https://biomejs.dev/linter/rules/use-await-thenable/) no longer reports false positives for `await` on call expressions whose return type cannot be resolved (e.g., cross-module function calls to Node.js builtins or npm packages). diff --git a/.changeset/use-await-yield-star.md b/.changeset/use-await-yield-star.md deleted file mode 100644 index d80837cb586c..000000000000 --- a/.changeset/use-await-yield-star.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@biomejs/biome": patch ---- - -Fixed [#8645](https://github.com/biomejs/biome/issues/8645). -[useAwait](https://biomejs.dev/linter/rules/use-await/) no longer reports `async` generator functions that use `yield*`, since `yield*` in an async generator delegates to an `AsyncIterable` and requires the `async` modifier. diff --git a/crates/biome_js_analyze/src/lint/nursery/no_nested_promises.rs b/crates/biome_js_analyze/src/lint/nursery/no_nested_promises.rs index 48d356a41810..08af1070cf20 100644 --- a/crates/biome_js_analyze/src/lint/nursery/no_nested_promises.rs +++ b/crates/biome_js_analyze/src/lint/nursery/no_nested_promises.rs @@ -65,7 +65,7 @@ declare_lint_rule! { /// ``` /// pub NoNestedPromises { - version: "next", + version: "2.3.15", name: "noNestedPromises", language: "js", recommended: true, diff --git a/crates/biome_js_analyze/src/lint/nursery/no_useless_return.rs b/crates/biome_js_analyze/src/lint/nursery/no_useless_return.rs index f7304626a395..ee4e36b48d16 100644 --- a/crates/biome_js_analyze/src/lint/nursery/no_useless_return.rs +++ b/crates/biome_js_analyze/src/lint/nursery/no_useless_return.rs @@ -69,7 +69,7 @@ declare_lint_rule! { /// ``` /// pub NoUselessReturn { - version: "next", + version: "2.3.15", name: "noUselessReturn", language: "js", sources: &[RuleSource::Eslint("no-useless-return").inspired()], diff --git a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md index 9ca9c78f7569..62eea35da57e 100644 --- a/packages/@biomejs/backend-jsonrpc/CHANGELOG.md +++ b/packages/@biomejs/backend-jsonrpc/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/backend-jsonrpc +## 2.0.36 + ## 2.0.35 ## 2.0.34 diff --git a/packages/@biomejs/backend-jsonrpc/package.json b/packages/@biomejs/backend-jsonrpc/package.json index efe26daad95b..4828b8161615 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.35", + "version": "2.0.36", "main": "dist/index.js", "scripts": { "test": "vitest", @@ -45,13 +45,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.3.14", - "@biomejs/cli-win32-arm64": "2.3.14", - "@biomejs/cli-darwin-x64": "2.3.14", - "@biomejs/cli-darwin-arm64": "2.3.14", - "@biomejs/cli-linux-x64": "2.3.14", - "@biomejs/cli-linux-arm64": "2.3.14", - "@biomejs/cli-linux-x64-musl": "2.3.14", - "@biomejs/cli-linux-arm64-musl": "2.3.14" + "@biomejs/cli-win32-x64": "2.3.15", + "@biomejs/cli-win32-arm64": "2.3.15", + "@biomejs/cli-darwin-x64": "2.3.15", + "@biomejs/cli-darwin-arm64": "2.3.15", + "@biomejs/cli-linux-x64": "2.3.15", + "@biomejs/cli-linux-arm64": "2.3.15", + "@biomejs/cli-linux-x64-musl": "2.3.15", + "@biomejs/cli-linux-arm64-musl": "2.3.15" } } diff --git a/packages/@biomejs/biome/CHANGELOG.md b/packages/@biomejs/biome/CHANGELOG.md index 1beb0e7056ee..7c186ef6f638 100644 --- a/packages/@biomejs/biome/CHANGELOG.md +++ b/packages/@biomejs/biome/CHANGELOG.md @@ -1,5 +1,69 @@ # @biomejs/biome +## 2.3.15 + +### Patch Changes + +- [#9019](https://github.com/biomejs/biome/pull/9019) [`043b67c`](https://github.com/biomejs/biome/commit/043b67c608f99a27c775deefb9f00b43839251ae) Thanks [@dyc3](https://github.com/dyc3)! - Added the lint rule [`noNestedPromises`](https://biomejs.dev/linter/rules/no-nested-promises/). This rule detects nested `.then()` or `.catch()` calls that could be refactored into flat promise chains. + + ```js + // Invalid: nested promise that can be flattened + doThing().then(function () { + return doOtherThing().then(console.log); + }); + + // Valid: flat promise chain + doThing() + .then(() => doOtherThing()) + .then(console.log); + ``` + + The rule intelligently allows nesting when the inner callback references variables from the outer scope, as these cases cannot be safely flattened. + +- [#9029](https://github.com/biomejs/biome/pull/9029) [`6ebf6c6`](https://github.com/biomejs/biome/commit/6ebf6c605f20a504aa5f23477f2e9be32437fb90) Thanks [@ff1451](https://github.com/ff1451)! - Added the nursery rule [`noUselessReturn`](https://biomejs.dev/linter/rules/no-useless-return/). The rule reports redundant `return;` statements that don't affect the function's control flow. + + ```js + // Invalid: return at end of function is redundant + function foo() { + doSomething(); + return; + } + ``` + +- [#9017](https://github.com/biomejs/biome/pull/9017) [`8bac2da`](https://github.com/biomejs/biome/commit/8bac2da137bb1b697be1ebf41a11088c0220ce65) Thanks [@mdevils](https://github.com/mdevils)! - Reverted a behavior change in [`useExhaustiveDependencies`](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/) that was accidentally included as part of the [#8802](https://github.com/biomejs/biome/issues/8802) fix. The change made method calls on objects (e.g., `props.data.forEach(...)`) report only the object (`props.data`) as a missing dependency instead of the full member expression. This behavior change will be reconsidered separately. + +- [#9005](https://github.com/biomejs/biome/pull/9005) [`c8dbbbe`](https://github.com/biomejs/biome/commit/c8dbbbe9363fb156a29de174ba7735154f6bc783) Thanks [@corvid-agent](https://github.com/corvid-agent)! - Fixed [#8790](https://github.com/biomejs/biome/issues/8790): The [`noAssignInExpressions`](https://biomejs.dev/linter/rules/no-assign-in-expressions/) rule no longer reports a false positive when an assignment is used as the expression body of an arrow function (e.g., `const f = b => a += b`). + +- [#8519](https://github.com/biomejs/biome/pull/8519) [`ccdc602`](https://github.com/biomejs/biome/commit/ccdc602d8ab8e7b14b7cbae2b12cdf396edb8301) Thanks [@ruidosujeira](https://github.com/ruidosujeira)! - Fixed [#8518](https://github.com/biomejs/biome/issues/8518), where globally excluded files in a monorepo were still being processed when using `"extends": "//"`. + + When a package-level configuration extends the root configuration with `"extends": "//"`, glob patterns (such as those in `files.includes`) are now correctly resolved relative to the project root directory, instead of the current workspace directory. + +- [#9033](https://github.com/biomejs/biome/pull/9033) [`0628e0a`](https://github.com/biomejs/biome/commit/0628e0a238d9c9c750e4f44c460455183a0ff70e) Thanks [@mdevils](https://github.com/mdevils)! - Fixed [#8967](https://github.com/biomejs/biome/issues/8967). [useExhaustiveDependencies](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/) no longer reports false positives for variables destructured from a rest pattern. + +- [#9023](https://github.com/biomejs/biome/pull/9023) [`8ef9d1d`](https://github.com/biomejs/biome/commit/8ef9d1d81c416a9f4d42527f4c263bc3f2e423b1) Thanks [@siketyan](https://github.com/siketyan)! - Fixed [#9020](https://github.com/biomejs/biome/issues/9020): When `javascript.jsxRuntime` is set to `reactClassic`, `noUnusedImports` and `useImportType` rules now allow importing the `React` identifier from a package other than `react`. This aligns the behavior with `tsc` (`--jsx=react`), which also allows importing `React` from any package. + +- [#8646](https://github.com/biomejs/biome/pull/8646) [`16fd71d`](https://github.com/biomejs/biome/commit/16fd71da5692f863112e302078325d3be4d79b24) Thanks [@siketyan](https://github.com/siketyan)! - Fixed [#8605](https://github.com/biomejs/biome/issues/8605): Text expressions in some template languages (`{{ expr }}` or `{ expr }`) at the top level of an HTML document no longer causes panicking. + +- [#8930](https://github.com/biomejs/biome/pull/8930) [`51c158e`](https://github.com/biomejs/biome/commit/51c158e803f9bad561cf5b79365c339e9069d614) Thanks [@ANKANJAGTAP](https://github.com/ANKANJAGTAP)! - Fixed #8917 + [useExhaustiveDependencies](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/) now correctly detects JSX component identifiers as hook dependencies. + +- [#9009](https://github.com/biomejs/biome/pull/9009) [`7d229c7`](https://github.com/biomejs/biome/commit/7d229c7ca3930ff56e3a229a70b994f1d5fd1086) Thanks [@Netail](https://github.com/Netail)! - Fixed typo in [noPositiveTabindex](https://biomejs.dev/linter/rules/no-positive-tabindex/)'s quick fix text. + +- [#8758](https://github.com/biomejs/biome/pull/8758) [`8c789f1`](https://github.com/biomejs/biome/commit/8c789f15e2129874450a29a55d376efe17dbcf5b) Thanks [@Pranav2612000](https://github.com/Pranav2612000)! - Updated the useJsxKeyInIterable rule to not run inside Map constructors + +- [#8977](https://github.com/biomejs/biome/pull/8977) [`bbe0e0c`](https://github.com/biomejs/biome/commit/bbe0e0c319f78b484d11649cc473ebca92f5e3af) Thanks [@FrankFMY](https://github.com/FrankFMY)! - Fixed [#4888](https://github.com/biomejs/biome/issues/4888). + [noUnusedImports](https://biomejs.dev/linter/rules/no-unused-imports/) now adds `export {}` when removing the last import in a TypeScript file to prevent it from becoming an ambient module. This does not apply to embedded scripts in Vue, Svelte, or Astro files, which are already in a module context. + +- [#9016](https://github.com/biomejs/biome/pull/9016) [`9d4cfa3`](https://github.com/biomejs/biome/commit/9d4cfa304268579361639c3d2301f1e38526dd00) Thanks [@dyc3](https://github.com/dyc3)! - Added eslint migration metadata for the rules `@typescript/no-var-requires`, `@typescript/keyword-spacing`, `@typescript/func-call-spacing`, `vue/keyword-spacing`, `vue/func-call-spacing`, and `unicorn/empty-brace-spaces`, + +- [#8848](https://github.com/biomejs/biome/pull/8848) [`2cba2b3`](https://github.com/biomejs/biome/commit/2cba2b3996447dab1d653dd8c8ee97eddd0bb63b) Thanks [@LouisLau-art](https://github.com/LouisLau-art)! - Fixed [#8845](https://github.com/biomejs/biome/issues/8845). Now `useGenericFontNames` doesn't trigger when `font` is declared inside the `@supports` at-rule. + +- [#8997](https://github.com/biomejs/biome/pull/8997) [`a5f3212`](https://github.com/biomejs/biome/commit/a5f321284249e21b9dda9fdc9130974c47df8a99) Thanks [@mldangelo](https://github.com/mldangelo)! - Fixed [#8476](https://github.com/biomejs/biome/issues/8476). + [useAwaitThenable](https://biomejs.dev/linter/rules/use-await-thenable/) no longer reports false positives for `await` on call expressions whose return type cannot be resolved (e.g., cross-module function calls to Node.js builtins or npm packages). + +- [#8978](https://github.com/biomejs/biome/pull/8978) [`cc7a478`](https://github.com/biomejs/biome/commit/cc7a4785f47a2c2a5ba3ea4ef90937742a2cd347) Thanks [@FrankFMY](https://github.com/FrankFMY)! - Fixed [#8645](https://github.com/biomejs/biome/issues/8645). + [useAwait](https://biomejs.dev/linter/rules/use-await/) no longer reports `async` generator functions that use `yield*`, since `yield*` in an async generator delegates to an `AsyncIterable` and requires the `async` modifier. + ## 2.3.14 ### Patch Changes diff --git a/packages/@biomejs/biome/package.json b/packages/@biomejs/biome/package.json index 930fb44af0e2..f987b22d0664 100644 --- a/packages/@biomejs/biome/package.json +++ b/packages/@biomejs/biome/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/biome", - "version": "2.3.14", + "version": "2.3.15", "bin": { "biome": "bin/biome" }, @@ -46,13 +46,13 @@ "provenance": true }, "optionalDependencies": { - "@biomejs/cli-win32-x64": "2.3.14", - "@biomejs/cli-win32-arm64": "2.3.14", - "@biomejs/cli-darwin-x64": "2.3.14", - "@biomejs/cli-darwin-arm64": "2.3.14", - "@biomejs/cli-linux-x64": "2.3.14", - "@biomejs/cli-linux-arm64": "2.3.14", - "@biomejs/cli-linux-x64-musl": "2.3.14", - "@biomejs/cli-linux-arm64-musl": "2.3.14" + "@biomejs/cli-win32-x64": "2.3.15", + "@biomejs/cli-win32-arm64": "2.3.15", + "@biomejs/cli-darwin-x64": "2.3.15", + "@biomejs/cli-darwin-arm64": "2.3.15", + "@biomejs/cli-linux-x64": "2.3.15", + "@biomejs/cli-linux-arm64": "2.3.15", + "@biomejs/cli-linux-x64-musl": "2.3.15", + "@biomejs/cli-linux-arm64-musl": "2.3.15" } } diff --git a/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md b/packages/@biomejs/cli-darwin-arm64/CHANGELOG.md index 9cff42309baf..aa7801488336 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-darwin-arm64/package.json b/packages/@biomejs/cli-darwin-arm64/package.json index ca935a486d1c..7807230ae0a7 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.14", + "version": "2.3.15", "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 d92abe7fe432..7fdd56b3f2b8 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-darwin-x64/package.json b/packages/@biomejs/cli-darwin-x64/package.json index 1cd322bd13c5..390014786189 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.14", + "version": "2.3.15", "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 4aede5363bc1..02f5273afac6 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-linux-arm64-musl/package.json b/packages/@biomejs/cli-linux-arm64-musl/package.json index ef4a8afae605..3e7ce83836d0 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.14", + "version": "2.3.15", "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 bd2db4628287..b09435b811ac 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-linux-arm64/package.json b/packages/@biomejs/cli-linux-arm64/package.json index f1ae640ced39..1b30ac5971ee 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.14", + "version": "2.3.15", "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 8339401f1640..ce91e24f0c4b 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-linux-x64-musl/package.json b/packages/@biomejs/cli-linux-x64-musl/package.json index ee810e86c295..6a1735387281 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.14", + "version": "2.3.15", "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 b7c11a8d0647..61380c4d8754 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-linux-x64/package.json b/packages/@biomejs/cli-linux-x64/package.json index 8e5cf57fb7bd..79d670f57b19 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.14", + "version": "2.3.15", "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 71b0e7e5430d..603630858198 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-win32-arm64/package.json b/packages/@biomejs/cli-win32-arm64/package.json index 398c8be57b8a..cda6c6e22c3b 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.14", + "version": "2.3.15", "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 b07a02f57cd4..079542d7ae22 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.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/cli-win32-x64/package.json b/packages/@biomejs/cli-win32-x64/package.json index dc0c58c14184..dc40f5505814 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.14", + "version": "2.3.15", "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 b4e42efb1097..bab933622fcd 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.3.14", - "@biomejs/wasm-nodejs": "^2.3.14", - "@biomejs/wasm-web": "^2.3.14" + "@biomejs/wasm-bundler": "^2.3.15", + "@biomejs/wasm-nodejs": "^2.3.15", + "@biomejs/wasm-web": "^2.3.15" }, "peerDependenciesMeta": { "@biomejs/wasm-bundler": { diff --git a/packages/@biomejs/wasm-bundler/CHANGELOG.md b/packages/@biomejs/wasm-bundler/CHANGELOG.md index c6ce77355f77..aeefa6f48178 100644 --- a/packages/@biomejs/wasm-bundler/CHANGELOG.md +++ b/packages/@biomejs/wasm-bundler/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-bundler +## 2.3.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/wasm-bundler/package.json b/packages/@biomejs/wasm-bundler/package.json index 3dd8c33cd6d4..dfb82d544f44 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.14", + "version": "2.3.15", "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 5b74f57a6a33..c221aebe6ab5 100644 --- a/packages/@biomejs/wasm-nodejs/CHANGELOG.md +++ b/packages/@biomejs/wasm-nodejs/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-nodejs +## 2.3.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/wasm-nodejs/package.json b/packages/@biomejs/wasm-nodejs/package.json index 2f63e89899d2..44be134f04e0 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.14", + "version": "2.3.15", "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 0f8c061d86df..9d77d820e6d6 100644 --- a/packages/@biomejs/wasm-web/CHANGELOG.md +++ b/packages/@biomejs/wasm-web/CHANGELOG.md @@ -1,5 +1,7 @@ # @biomejs/wasm-web +## 2.3.15 + ## 2.3.14 ## 2.3.13 diff --git a/packages/@biomejs/wasm-web/package.json b/packages/@biomejs/wasm-web/package.json index cb5141860d39..d9dbb6c8a734 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.14", + "version": "2.3.15", "license": "MIT OR Apache-2.0", "repository": { "type": "git", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 332423d72d37..c01502911f19 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.3.14 + specifier: 2.3.15 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-win32-x64 packages/@biomejs/biome: optionalDependencies: '@biomejs/cli-darwin-arm64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-darwin-arm64 '@biomejs/cli-darwin-x64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-darwin-x64 '@biomejs/cli-linux-arm64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-arm64 '@biomejs/cli-linux-arm64-musl': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-arm64-musl '@biomejs/cli-linux-x64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-x64 '@biomejs/cli-linux-x64-musl': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-linux-x64-musl '@biomejs/cli-win32-arm64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-win32-arm64 '@biomejs/cli-win32-x64': - specifier: 2.3.14 + specifier: 2.3.15 version: link:../cli-win32-x64 packages/@biomejs/cli-darwin-arm64: {}