Commit 922b49e
Bump @biomejs/biome from 2.3.8 to 2.3.10 (#506)
Bumps
[@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome)
from 2.3.8 to 2.3.10.
<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.10</h2>
<h2>2.3.10</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8417">#8417</a> <a
href="https://github.com/biomejs/biome/commit/c3a255709cdbdb8e2281eac5bb65848eafeaa366"><code>c3a2557</code></a>
Thanks <a href="https://github.com/taga3s"><code>@taga3s</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/7809">#7809</a>:
<a
href="https://biomejs.dev/linter/rules/no-redeclare/"><code>noRedeclare</code></a>
no longer reports redeclarations for <code>infer</code> type in
conditional types.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8477">#8477</a> <a
href="https://github.com/biomejs/biome/commit/90e86848a9dd63b63b6a91766620657ae04b5c2d"><code>90e8684</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/8475">#8475</a>:
fixed a regression in how <code>noExtraNonNullAssertion</code> flags
extra non-null assertions</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8479">#8479</a> <a
href="https://github.com/biomejs/biome/commit/250b51974f833f17b0e0e4f5d71bf93461cf3324"><code>250b519</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/8473">#8473</a>:
The semantic model now indexes typescript constructor method
definitions, and no longer panics if you use one (a regression in
2.3.9).</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8448">#8448</a> <a
href="https://github.com/biomejs/biome/commit/2af85c16ae3cfcd460645d83fe5789c75031967a"><code>2af85c1</code></a>
Thanks <a href="https://github.com/mdevils"><code>@mdevils</code></a>!
- Improved handling of <code>defineProps()</code> macro in Vue
components. The <a
href="https://biomejs.dev/linter/rules/no-vue-reserved-keys/"><code>noVueReservedKeys</code></a>
rule now avoids false positives in non-setup scripts.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8420">#8420</a> <a
href="https://github.com/biomejs/biome/commit/42033b041f473badfcc6d1a0f52324b5388c570b"><code>42033b0</code></a>
Thanks <a href="https://github.com/vsn4ik"><code>@vsn4ik</code></a>! -
Fixed the nursery rule <a
href="https://biomejs.dev/linter/rules/no-leaked-render/"><code>noLeakedRender</code></a>.</p>
<p>The <code>biome migrate eslint</code> command now correctly detects
the rule <code>react/jsx-no-leaked-render</code> in your eslint
configurations.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8426">#8426</a> <a
href="https://github.com/biomejs/biome/commit/285d9321d8701e86f39b3a747563fc14e129b459"><code>285d932</code></a>
Thanks <a
href="https://github.com/anthonyshew"><code>@anthonyshew</code></a>! -
Added a Turborepo domain and a new "noUndeclaredEnvVars" rule
in it for warning users of unsafe environment variable usage in
Turborepos.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8410">#8410</a> <a
href="https://github.com/biomejs/biome/commit/a21db74bc02ac7ae7e0bd96de242588c6c4108e8"><code>a21db74</code></a>
Thanks <a
href="https://github.com/ematipico"><code>@ematipico</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/2988">#2988</a>
where Biome couldn't handle properly characters that contain multiple
code points when running in <code>stdin</code> mode.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8372">#8372</a> <a
href="https://github.com/biomejs/biome/commit/b352ee4759f7c3b09a2bf2084de5991e935bce4d"><code>b352ee4</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-ambiguous-anchor-text/"><code>noAmbiguousAnchorText</code></a>,
which disallows ambiguous anchor descriptions.</p>
<h4>Invalid</h4>
<pre lang="html"><code><a>learn more</a>
</code></pre>
</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>feat: new Turborepo domain and <code>noUndeclaredEnvVars</code> rule
by <a
href="https://github.com/anthonyshew"><code>@anthonyshew</code></a> in
<a
href="https://redirect.github.com/biomejs/biome/pull/8426">biomejs/biome#8426</a></li>
<li>fix(noExtraNonNullAssertion): fix regression by <a
href="https://github.com/dyc3"><code>@dyc3</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8477">biomejs/biome#8477</a></li>
<li>fix(analyze/js): index ts constructor methods in semantic model
(regression) by <a
href="https://github.com/dyc3"><code>@dyc3</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8479">biomejs/biome#8479</a></li>
<li>fix(lint): <code>lint/suspicous/noRedeclare</code> should not report
redeclarations for <code>infer</code> type in conditional types by <a
href="https://github.com/taga3s"><code>@taga3s</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8417">biomejs/biome#8417</a></li>
<li>fix(noLeakedRender): eslint rule name fix by <a
href="https://github.com/vsn4ik"><code>@vsn4ik</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8420">biomejs/biome#8420</a></li>
<li>chore: add kraken as bronze sponsor by <a
href="https://github.com/dyc3"><code>@dyc3</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8486">biomejs/biome#8486</a></li>
<li>fix(linter): improve Vue defineProps handling in noVueReservedKeys
by <a href="https://github.com/mdevils"><code>@mdevils</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8448">biomejs/biome#8448</a></li>
<li>fix(cli): colors with multi-codepoints characters by <a
href="https://github.com/ematipico"><code>@ematipico</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8410">biomejs/biome#8410</a></li>
<li>feat(lint): implement noAmbiguousAnchorText by <a
href="https://github.com/Netail"><code>@Netail</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8372">biomejs/biome#8372</a></li>
<li>ci: release by <a
href="https://github.com/github-actions"><code>@github-actions</code></a>[bot]
in <a
href="https://redirect.github.com/biomejs/biome/pull/8474">biomejs/biome#8474</a></li>
<li>docs: fix typos for assist/actions/organize-imports by <a
href="https://github.com/sergioness"><code>@sergioness</code></a> in <a
href="https://redirect.github.com/biomejs/biome/pull/8490">biomejs/biome#8490</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/taga3s"><code>@taga3s</code></a> made
their first contribution in <a
href="https://redirect.github.com/biomejs/biome/pull/8417">biomejs/biome#8417</a></li>
<li><a href="https://github.com/vsn4ik"><code>@vsn4ik</code></a> made
their first contribution in <a
href="https://redirect.github.com/biomejs/biome/pull/8420">biomejs/biome#8420</a></li>
<li><a
href="https://github.com/sergioness"><code>@sergioness</code></a> made
their first contribution in <a
href="https://redirect.github.com/biomejs/biome/pull/8490">biomejs/biome#8490</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.10</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8417">#8417</a> <a
href="https://github.com/biomejs/biome/commit/c3a255709cdbdb8e2281eac5bb65848eafeaa366"><code>c3a2557</code></a>
Thanks <a href="https://github.com/taga3s"><code>@taga3s</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/7809">#7809</a>:
<a
href="https://biomejs.dev/linter/rules/no-redeclare/"><code>noRedeclare</code></a>
no longer reports redeclarations for <code>infer</code> type in
conditional types.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8477">#8477</a> <a
href="https://github.com/biomejs/biome/commit/90e86848a9dd63b63b6a91766620657ae04b5c2d"><code>90e8684</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/8475">#8475</a>:
fixed a regression in how <code>noExtraNonNullAssertion</code> flags
extra non-null assertions</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8479">#8479</a> <a
href="https://github.com/biomejs/biome/commit/250b51974f833f17b0e0e4f5d71bf93461cf3324"><code>250b519</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/8473">#8473</a>:
The semantic model now indexes typescript constructor method
definitions, and no longer panics if you use one (a regression in
2.3.9).</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8448">#8448</a> <a
href="https://github.com/biomejs/biome/commit/2af85c16ae3cfcd460645d83fe5789c75031967a"><code>2af85c1</code></a>
Thanks <a href="https://github.com/mdevils"><code>@mdevils</code></a>!
- Improved handling of <code>defineProps()</code> macro in Vue
components. The <a
href="https://biomejs.dev/linter/rules/no-vue-reserved-keys/"><code>noVueReservedKeys</code></a>
rule now avoids false positives in non-setup scripts.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8420">#8420</a> <a
href="https://github.com/biomejs/biome/commit/42033b041f473badfcc6d1a0f52324b5388c570b"><code>42033b0</code></a>
Thanks <a href="https://github.com/vsn4ik"><code>@vsn4ik</code></a>! -
Fixed the nursery rule <a
href="https://biomejs.dev/linter/rules/no-leaked-render/"><code>noLeakedRender</code></a>.</p>
<p>The <code>biome migrate eslint</code> command now correctly detects
the rule <code>react/jsx-no-leaked-render</code> in your eslint
configurations.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8426">#8426</a> <a
href="https://github.com/biomejs/biome/commit/285d9321d8701e86f39b3a747563fc14e129b459"><code>285d932</code></a>
Thanks <a
href="https://github.com/anthonyshew"><code>@anthonyshew</code></a>! -
Added a Turborepo domain and a new "noUndeclaredEnvVars" rule
in it for warning users of unsafe environment variable usage in
Turborepos.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8410">#8410</a> <a
href="https://github.com/biomejs/biome/commit/a21db74bc02ac7ae7e0bd96de242588c6c4108e8"><code>a21db74</code></a>
Thanks <a
href="https://github.com/ematipico"><code>@ematipico</code></a>! -
Fixed <a
href="https://redirect.github.com/biomejs/biome/issues/2988">#2988</a>
where Biome couldn't handle properly characters that contain multiple
code points when running in <code>stdin</code> mode.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8372">#8372</a> <a
href="https://github.com/biomejs/biome/commit/b352ee4759f7c3b09a2bf2084de5991e935bce4d"><code>b352ee4</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-ambiguous-anchor-text/"><code>noAmbiguousAnchorText</code></a>,
which disallows ambiguous anchor descriptions.</p>
<h4>Invalid</h4>
<pre lang="html"><code><a>learn more</a>
</code></pre>
</li>
</ul>
<h2>2.3.9</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8232">#8232</a> <a
href="https://github.com/biomejs/biome/commit/84c9e08b1b736dcc6d163ab1fb48c581b2de458c"><code>84c9e08</code></a>
Thanks <a
href="https://github.com/ruidosujeira"><code>@ruidosujeira</code></a>!
- Added the nursery rule <a
href="https://biomejs.dev/linter/rules/no-script-url/"><code>noScriptUrl</code></a>.</p>
<p>This rule disallows the use of <code>javascript:</code> URLs, which
are considered a form of <code>eval</code> and can pose security risks
such as XSS vulnerabilities.</p>
<pre lang="jsx"><code><a
href="javascript:alert('XSS')">Click me</a>
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8341">#8341</a> <a
href="https://github.com/biomejs/biome/commit/343dc4dfd48a048f0c833af318b6a10dfc4dab6d"><code>343dc4d</code></a>
Thanks <a href="https://github.com/arendjr"><code>@arendjr</code></a>!
- Added the nursery rule <a
href="https://biomejs.dev/linter/rules/use-await-thenable/"><code>useAwaitThenable</code></a>,
which enforces that <code>await</code> is only used on Promise
values.</p>
<h4>Invalid</h4>
<pre lang="js"><code>await "value";
<p>const createValue = () => "value";
await createValue();
</code></pre></p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/biomejs/biome/commit/fd279f3071c2531a4f7f6a48ffcd5efc57bb29b2"><code>fd279f3</code></a>
ci: release (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8474">#8474</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/b352ee4759f7c3b09a2bf2084de5991e935bce4d"><code>b352ee4</code></a>
feat(lint): implement noAmbiguousAnchorText (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8372">#8372</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/67546bc24ba873ef2c928caa55fd64f7c1737378"><code>67546bc</code></a>
chore: add kraken as bronze sponsor (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8486">#8486</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/285d9321d8701e86f39b3a747563fc14e129b459"><code>285d932</code></a>
feat: new Turborepo domain and <code>noUndeclaredEnvVars</code> rule (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8426">#8426</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/ec431419168ad72691367944f7c37ccebae1223a"><code>ec43141</code></a>
ci: release (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8469">#8469</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/382786b29f0c1e9524fee370ef7067de82a25e91"><code>382786b</code></a>
fix(lint): remove <code>useExhaustiveDependencies</code> spurious errors
on dependency-f...</li>
<li><a
href="https://github.com/biomejs/biome/commit/fc323523b8de47b176d6c648fca9f2cb0a6f450b"><code>fc32352</code></a>
fix: improve rustdoc for IndentStyle (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8425">#8425</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/09acf2a700f480ae6acbefaab770e8db33d5e596"><code>09acf2a</code></a>
feat(lint): update docs & diagnostic for
<code>lint/nursery/noProto</code> (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8414">#8414</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/84c9e08b1b736dcc6d163ab1fb48c581b2de458c"><code>84c9e08</code></a>
feat: implement noScriptUrl rule (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8232">#8232</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/d407efb8c650b9288f545efedd4b7d3f9783c8d1"><code>d407efb</code></a>
refactor(formatter): reduce best fitting allocations (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8137">#8137</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/biomejs/biome/commits/@biomejs/[email protected]/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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Doria Keung <[email protected]>1 parent 5a31c16 commit 922b49e
3 files changed
+73
-73
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
319 | 319 | | |
320 | 320 | | |
321 | 321 | | |
322 | | - | |
| 322 | + | |
323 | 323 | | |
324 | 324 | | |
325 | 325 | | |
| |||
0 commit comments