Commit 915087b
authored
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="before"</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 =
"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";
</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="before"</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 =
"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";
</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 />
[](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
1 file changed
+9
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | | - | |
| 54 | + | |
55 | 55 | | |
56 | | - | |
| 56 | + | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments