Skip to content

Commit 915087b

Browse files
Bump @biomejs/biome from 2.3.1 to 2.3.2 (#151)
Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 2.3.1 to 2.3.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/releases"><code>@​biomejs/biome</code>'s releases</a>.</em></p> <blockquote> <h2>Biome CLI v2.3.2</h2> <h2>2.3.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7859">#7859</a> <a href="https://github.com/biomejs/biome/commit/c6006184a860b42fea3f0ea5fe96c47087341a90"><code>c600618</code></a> Thanks <a href="https://github.com/Netail"><code>@​Netail</code></a>! - Added the nursery rule <a href="https://biomejs.dev/linter/rules/no-increment-decrement/"><code>noIncrementDecrement</code></a>, disallows the usage of the unary operators ++ and --.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7901">#7901</a> <a href="https://github.com/biomejs/biome/commit/0d17b05477a537b6d652a2e56c50bb1db013ef06"><code>0d17b05</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7837">#7837</a>, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7874">#7874</a> <a href="https://github.com/biomejs/biome/commit/e617d363b9356bef007192a7f508e15d63f56e9b"><code>e617d36</code></a> Thanks <a href="https://github.com/Bertie690"><code>@​Bertie690</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7230">#7230</a>: <a href="https://biomejs.dev/linter/rules/no-useless-string-concat/"><code>noUselessStringConcat</code></a> no longer emits false positives for multi-line strings with leading <code>+</code> operators.</p> <p>Previously, the rule did not check for leading newlines on the <code>+</code> operator, emitting false positives if one occurred at the start of a line. <br /> Notably, formatting with <code>operatorLinebreak=&quot;before&quot;</code> would move the <code>+</code> operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.</p> <p>Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of <code>operatorLinebreak</code>.</p> <p><strong>Example</strong></p> <pre lang="ts"><code>// 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 = &quot;Lorem ipsum dolor sit amet consectetur adipiscing elit.&quot; + &quot;Quisque faucibus ex sapien vitae pellentesque sem placerat.&quot; + &quot;In id cursus mi pretium tellus duis convallis.&quot; + &quot;Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla&quot;; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7786">#7786</a> <a href="https://github.com/biomejs/biome/commit/33ffcd50a749ca0e188796a10b4ffffb59ead4b3"><code>33ffcd5</code></a> Thanks <a href="https://github.com/daivinhtran"><code>@​daivinhtran</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7601">#7601</a>: Properly match Grit plugin's code snippet with only one child.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7901">#7901</a> <a href="https://github.com/biomejs/biome/commit/0d17b05477a537b6d652a2e56c50bb1db013ef06"><code>0d17b05</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7837">#7837</a>, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.</p> </li> </ul> <h2>What's Changed</h2> <ul> <li>fix(lint): <code>noUselessStringConcat</code> now correctly detects leading concatenation operators from <code>operatorLinebreak=before</code> by <a href="https://github.com/Bertie690"><code>@​Bertie690</code></a> in <a href="https://redirect.github.com/biomejs/biome/pull/7874">biomejs/biome#7874</a></li> <li>chore(deps): update rust crate globset to 0.4.18 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7883">biomejs/biome#7883</a></li> <li>chore(deps): update rust crate ignore to 0.4.24 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7884">biomejs/biome#7884</a></li> <li>chore(deps): update rust crate proc-macro2 to 1.0.103 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7885">biomejs/biome#7885</a></li> <li>chore(deps): update rust crate tikv-jemallocator to 0.6.1 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7886">biomejs/biome#7886</a></li> <li>fix(lint): extend matcher for GritCodeSnippet to cover edge case by <a href="https://github.com/daivinhtran"><code>@​daivinhtran</code></a> in <a href="https://redirect.github.com/biomejs/biome/pull/7786">biomejs/biome#7786</a></li> <li>feat(js): update <code>Boa</code> to <code>v0.21.0</code> by <a href="https://github.com/Gumichocopengin8"><code>@​Gumichocopengin8</code></a> in <a href="https://redirect.github.com/biomejs/biome/pull/7888">biomejs/biome#7888</a></li> <li>chore(deps): update dependency eslint to v9.38.0 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7890">biomejs/biome#7890</a></li> <li>chore(deps): update rust crate indexmap to 2.12.0 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7891">biomejs/biome#7891</a></li> <li>chore(deps): update github-actions - autoclosed by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7892">biomejs/biome#7892</a></li> <li>chore(deps): update rust crate rayon to 1.11.0 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7894">biomejs/biome#7894</a></li> <li>chore(deps): update rust crate regex to 1.12.2 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7895">biomejs/biome#7895</a></li> <li>chore(deps): update rust crate tokio to 1.48.0 by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/biomejs/biome/pull/7896">biomejs/biome#7896</a></li> <li>fix(core): text expression parsing and LSP file opening by <a href="https://github.com/ematipico"><code>@​ematipico</code></a> in <a href="https://redirect.github.com/biomejs/biome/pull/7901">biomejs/biome#7901</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md"><code>@​biomejs/biome</code>'s changelog</a>.</em></p> <blockquote> <h2>2.3.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7859">#7859</a> <a href="https://github.com/biomejs/biome/commit/c6006184a860b42fea3f0ea5fe96c47087341a90"><code>c600618</code></a> Thanks <a href="https://github.com/Netail"><code>@​Netail</code></a>! - Added the nursery rule <a href="https://biomejs.dev/linter/rules/no-increment-decrement/"><code>noIncrementDecrement</code></a>, disallows the usage of the unary operators ++ and --.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7901">#7901</a> <a href="https://github.com/biomejs/biome/commit/0d17b05477a537b6d652a2e56c50bb1db013ef06"><code>0d17b05</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7837">#7837</a>, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7874">#7874</a> <a href="https://github.com/biomejs/biome/commit/e617d363b9356bef007192a7f508e15d63f56e9b"><code>e617d36</code></a> Thanks <a href="https://github.com/Bertie690"><code>@​Bertie690</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7230">#7230</a>: <a href="https://biomejs.dev/linter/rules/no-useless-string-concat/"><code>noUselessStringConcat</code></a> no longer emits false positives for multi-line strings with leading <code>+</code> operators.</p> <p>Previously, the rule did not check for leading newlines on the <code>+</code> operator, emitting false positives if one occurred at the start of a line. <br /> Notably, formatting with <code>operatorLinebreak=&quot;before&quot;</code> would move the <code>+</code> operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.</p> <p>Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of <code>operatorLinebreak</code>.</p> <p><strong>Example</strong></p> <pre lang="ts"><code>// 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 = &quot;Lorem ipsum dolor sit amet consectetur adipiscing elit.&quot; + &quot;Quisque faucibus ex sapien vitae pellentesque sem placerat.&quot; + &quot;In id cursus mi pretium tellus duis convallis.&quot; + &quot;Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla&quot;; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7786">#7786</a> <a href="https://github.com/biomejs/biome/commit/33ffcd50a749ca0e188796a10b4ffffb59ead4b3"><code>33ffcd5</code></a> Thanks <a href="https://github.com/daivinhtran"><code>@​daivinhtran</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7601">#7601</a>: Properly match Grit plugin's code snippet with only one child.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7901">#7901</a> <a href="https://github.com/biomejs/biome/commit/0d17b05477a537b6d652a2e56c50bb1db013ef06"><code>0d17b05</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7837">#7837</a>, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/biomejs/biome/commit/6d95a67d7ae839a266a1e50e68559cf131243003"><code>6d95a67</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7887">#7887</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/c6006184a860b42fea3f0ea5fe96c47087341a90"><code>c600618</code></a> feat(lint): implement <code>noIncrementDecrement</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7859">#7859</a>)</li> <li>See full diff in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.2/packages/@biomejs/biome">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@biomejs/biome&package-manager=bun&previous-version=2.3.1&new-version=2.3.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6ddf68c commit 915087b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

bun.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,23 @@
4747

4848
"@arethetypeswrong/core": ["@arethetypeswrong/core@0.18.2", "", { "dependencies": { "@andrewbranch/untar.js": "^1.0.3", "@loaderkit/resolve": "^1.0.2", "cjs-module-lexer": "^1.2.3", "fflate": "^0.8.2", "lru-cache": "^11.0.1", "semver": "^7.5.4", "typescript": "5.6.1-rc", "validate-npm-package-name": "^5.0.0" } }, "sha512-GiwTmBFOU1/+UVNqqCGzFJYfBXEytUkiI+iRZ6Qx7KmUVtLm00sYySkfe203C9QtPG11yOz1ZaMek8dT/xnlgg=="],
4949

50-
"@biomejs/biome": ["@biomejs/biome@2.3.1", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.3.1", "@biomejs/cli-darwin-x64": "2.3.1", "@biomejs/cli-linux-arm64": "2.3.1", "@biomejs/cli-linux-arm64-musl": "2.3.1", "@biomejs/cli-linux-x64": "2.3.1", "@biomejs/cli-linux-x64-musl": "2.3.1", "@biomejs/cli-win32-arm64": "2.3.1", "@biomejs/cli-win32-x64": "2.3.1" }, "bin": { "biome": "bin/biome" } }, "sha512-A29evf1R72V5bo4o2EPxYMm5mtyGvzp2g+biZvRFx29nWebGyyeOSsDWGx3tuNNMFRepGwxmA9ZQ15mzfabK2w=="],
50+
"@biomejs/biome": ["@biomejs/biome@2.3.2", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.3.2", "@biomejs/cli-darwin-x64": "2.3.2", "@biomejs/cli-linux-arm64": "2.3.2", "@biomejs/cli-linux-arm64-musl": "2.3.2", "@biomejs/cli-linux-x64": "2.3.2", "@biomejs/cli-linux-x64-musl": "2.3.2", "@biomejs/cli-win32-arm64": "2.3.2", "@biomejs/cli-win32-x64": "2.3.2" }, "bin": { "biome": "bin/biome" } }, "sha512-8e9tzamuDycx7fdrcJ/F/GDZ8SYukc5ud6tDicjjFqURKYFSWMl0H0iXNXZEGmcmNUmABgGuHThPykcM41INgg=="],
5151

52-
"@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.3.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-ombSf3MnTUueiYGN1SeI9tBCsDUhpWzOwS63Dove42osNh0PfE1cUtHFx6eZ1+MYCCLwXzlFlYFdrJ+U7h6LcA=="],
52+
"@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.3.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-4LECm4kc3If0JISai4c3KWQzukoUdpxy4fRzlrPcrdMSRFksR9ZoXK7JBcPuLBmd2SoT4/d7CQS33VnZpgBjew=="],
5353

54-
"@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.3.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-pcOfwyoQkrkbGvXxRvZNe5qgD797IowpJPovPX5biPk2FwMEV+INZqfCaz4G5bVq9hYnjwhRMamg11U4QsRXrQ=="],
54+
"@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.3.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-jNMnfwHT4N3wi+ypRfMTjLGnDmKYGzxVr1EYAPBcauRcDnICFXN81wD6wxJcSUrLynoyyYCdfW6vJHS/IAoTDA=="],
5555

56-
"@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.3.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-td5O8pFIgLs8H1sAZsD6v+5quODihyEw4nv2R8z7swUfIK1FKk+15e4eiYVLcAE4jUqngvh4j3JCNgg0Y4o4IQ=="],
56+
"@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.3.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-amnqvk+gWybbQleRRq8TMe0rIv7GHss8mFJEaGuEZYWg1Tw14YKOkeo8h6pf1c+d3qR+JU4iT9KXnBKGON4klw=="],
5757

58-
"@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.3.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-+DZYv8l7FlUtTrWs1Tdt1KcNCAmRO87PyOnxKGunbWm5HKg1oZBSbIIPkjrCtDZaeqSG1DiGx7qF+CPsquQRcg=="],
58+
"@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.3.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-2Zz4usDG1GTTPQnliIeNx6eVGGP2ry5vE/v39nT73a3cKN6t5H5XxjcEoZZh62uVZvED7hXXikclvI64vZkYqw=="],
5959

60-
"@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.3.1", "", { "os": "linux", "cpu": "x64" }, "sha512-PYWgEO7up7XYwSAArOpzsVCiqxBCXy53gsReAb1kKYIyXaoAlhBaBMvxR/k2Rm9aTuZ662locXUmPk/Aj+Xu+Q=="],
60+
"@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.3.2", "", { "os": "linux", "cpu": "x64" }, "sha512-8BG/vRAhFz1pmuyd24FQPhNeueLqPtwvZk6yblABY2gzL2H8fLQAF/Z2OPIc+BPIVPld+8cSiKY/KFh6k81xfA=="],
6161

62-
"@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.3.1", "", { "os": "linux", "cpu": "x64" }, "sha512-Y3Ob4nqgv38Mh+6EGHltuN+Cq8aj/gyMTJYzkFZV2AEj+9XzoXB9VNljz9pjfFNHUxvLEV4b55VWyxozQTBaUQ=="],
62+
"@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.3.2", "", { "os": "linux", "cpu": "x64" }, "sha512-gzB19MpRdTuOuLtPpFBGrV3Lq424gHyq2lFj8wfX9tvLMLdmA/R9C7k/mqBp/spcbWuHeIEKgEs3RviOPcWGBA=="],
6363

64-
"@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.3.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-RHIG/zgo+69idUqVvV3n8+j58dKYABRpMyDmfWu2TITC+jwGPiEaT0Q3RKD+kQHiS80mpBrST0iUGeEXT0bU9A=="],
64+
"@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.3.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-lCruqQlfWjhMlOdyf5pDHOxoNm4WoyY2vZ4YN33/nuZBRstVDuqPPjS0yBkbUlLEte11FbpW+wWSlfnZfSIZvg=="],
6565

66-
"@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.3.1", "", { "os": "win32", "cpu": "x64" }, "sha512-izl30JJ5Dp10mi90Eko47zhxE6pYyWPcnX1NQxKpL/yMhXxf95oLTzfpu4q+MDBh/gemNqyJEwjBpe0MT5iWPA=="],
66+
"@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.3.2", "", { "os": "win32", "cpu": "x64" }, "sha512-6Ee9P26DTb4D8sN9nXxgbi9Dw5vSOfH98M7UlmkjKB2vtUbrRqCbZiNfryGiwnPIpd6YUoTl7rLVD2/x1CyEHQ=="],
6767

6868
"@braidai/lang": ["@braidai/lang@1.1.0", "", {}, "sha512-xyJYkiyNQtTyCLeHxZmOs7rnB94D+N1IjKNArQIh8+8lTBOY7TFgwEV+Ow5a1uaBi5j2w9fLbWcJFTWLDItl5g=="],
6969

0 commit comments

Comments
 (0)