Commit 4d25c24
authored
chore(deps-dev): bump @biomejs/biome from 2.3.10 to 2.3.11 in the minor-development-deps group across 1 directory (#311)
Bumps the minor-development-deps group with 1 update in the / directory:
[@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).
Updates `@biomejs/biome` from 2.3.10 to 2.3.11
<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.11</h2>
<h2>2.3.11</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8583">#8583</a> <a
href="https://github.com/biomejs/biome/commit/83be2101cb14969e3affda260773e33e50874df0"><code>83be210</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added the new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-valid-template-root/"><code>useVueValidTemplateRoot</code></a>.</p>
<p>This rule validates only root-level <code>\<template></code>
elements in Vue single-file components. If the
<code>\<template></code> has a <code>src</code> attribute, it must
be empty. Otherwise, it must contain content.</p>
<p>Invalid examples:</p>
<pre lang="vue"><code>\<template
src="./foo.html">content</template>
</code></pre>
<pre lang="vue"><code>\<template></template>
</code></pre>
<p>Valid examples:</p>
<pre lang="vue"><code>\<template>content</template>
</code></pre>
<pre lang="vue"><code>\<template
src="./foo.html"></template>
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8586">#8586</a> <a
href="https://github.com/biomejs/biome/commit/df8fe0637438573c15e4348008fc037a245c3481"><code>df8fe06</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added a new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-consistent-v-bind-style/"><code>useVueConsistentVBindStyle</code></a>.
Enforces consistent <code>v-bind</code> style (<code>:prop</code>
shorthand vs <code>v-bind:prop</code> longhand). Default prefers
shorthand; configurable via rule options.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8587">#8587</a> <a
href="https://github.com/biomejs/biome/commit/9a8c98dfe80301122091c96d6d42aa0d4e1d4030"><code>9a8c98d</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added the rule <a
href="https://biomejs.dev/linter/rules/use-vue-v-for-key/"><code>useVueVForKey</code></a>,
which enforces that any element using <code>v-for</code> also specifies
a <code>key</code>.</p>
<p><strong>Invalid</strong></p>
<pre lang="vue"><code><li v-for="item in items">{{ item
}}</li>
</code></pre>
<p><strong>Valid</strong></p>
<pre lang="vue"><code><li v-for="item in items"
:key="item.id">{{ item }}</li>
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8586">#8586</a> <a
href="https://github.com/biomejs/biome/commit/df8fe0637438573c15e4348008fc037a245c3481"><code>df8fe06</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added a new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-consistent-v-on-style/"><code>useVueConsistentVOnStyle</code></a>.
Enforces consistent <code>v-on</code> style (<code>@event</code>
shorthand vs <code>v-on:event</code> longhand). Default prefers
shorthand; configurable via rule options.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8583">#8583</a> <a
href="https://github.com/biomejs/biome/commit/83be2101cb14969e3affda260773e33e50874df0"><code>83be210</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added the new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-valid-v-once/"><code>useVueValidVOnce</code></a>.
Enforces that usages of the <code>v-once</code> directive in Vue.js SFC
are valid.</p>
</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.11</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8583">#8583</a> <a
href="https://github.com/biomejs/biome/commit/83be2101cb14969e3affda260773e33e50874df0"><code>83be210</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added the new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-valid-template-root/"><code>useVueValidTemplateRoot</code></a>.</p>
<p>This rule validates only root-level <code>\<template></code>
elements in Vue single-file components. If the
<code>\<template></code> has a <code>src</code> attribute, it must
be empty. Otherwise, it must contain content.</p>
<p>Invalid examples:</p>
<pre lang="vue"><code>\<template
src="./foo.html">content</template>
</code></pre>
<pre lang="vue"><code>\<template></template>
</code></pre>
<p>Valid examples:</p>
<pre lang="vue"><code>\<template>content</template>
</code></pre>
<pre lang="vue"><code>\<template
src="./foo.html"></template>
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8586">#8586</a> <a
href="https://github.com/biomejs/biome/commit/df8fe0637438573c15e4348008fc037a245c3481"><code>df8fe06</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added a new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-consistent-v-bind-style/"><code>useVueConsistentVBindStyle</code></a>.
Enforces consistent <code>v-bind</code> style (<code>:prop</code>
shorthand vs <code>v-bind:prop</code> longhand). Default prefers
shorthand; configurable via rule options.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8587">#8587</a> <a
href="https://github.com/biomejs/biome/commit/9a8c98dfe80301122091c96d6d42aa0d4e1d4030"><code>9a8c98d</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added the rule <a
href="https://biomejs.dev/linter/rules/use-vue-v-for-key/"><code>useVueVForKey</code></a>,
which enforces that any element using <code>v-for</code> also specifies
a <code>key</code>.</p>
<p><strong>Invalid</strong></p>
<pre lang="vue"><code><li v-for="item in items">{{ item
}}</li>
</code></pre>
<p><strong>Valid</strong></p>
<pre lang="vue"><code><li v-for="item in items"
:key="item.id">{{ item }}</li>
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8586">#8586</a> <a
href="https://github.com/biomejs/biome/commit/df8fe0637438573c15e4348008fc037a245c3481"><code>df8fe06</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added a new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-consistent-v-on-style/"><code>useVueConsistentVOnStyle</code></a>.
Enforces consistent <code>v-on</code> style (<code>@event</code>
shorthand vs <code>v-on:event</code> longhand). Default prefers
shorthand; configurable via rule options.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/biomejs/biome/pull/8583">#8583</a> <a
href="https://github.com/biomejs/biome/commit/83be2101cb14969e3affda260773e33e50874df0"><code>83be210</code></a>
Thanks <a href="https://github.com/dyc3"><code>@dyc3</code></a>! -
Added the new nursery rule <a
href="https://biomejs.dev/linter/rules/use-vue-valid-v-once/"><code>useVueValidVOnce</code></a>.
Enforces that usages of the <code>v-once</code> directive in Vue.js SFC
are valid.</p>
<pre lang="vue"><code><!-- Valid -->
</code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/biomejs/biome/commit/1550e7399da3e51c1d22fe26f37a8ff45058c355"><code>1550e73</code></a>
ci: release (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8507">#8507</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/a3a27a74940c592e89cdeda38f0efc82b688a030"><code>a3a27a7</code></a>
feat(analyze/html/vue): add useVueVapor rule (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8644">#8644</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/9a8c98dfe80301122091c96d6d42aa0d4e1d4030"><code>9a8c98d</code></a>
feat(analyze/html/vue): add <code>useVueVForKey</code> (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8587">#8587</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/ab9af9a48aa06caf72c867ede4613a0c0045c2f2"><code>ab9af9a</code></a>
feat: no-jsx-props-bind (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7410">#7410</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/df8fe0637438573c15e4348008fc037a245c3481"><code>df8fe06</code></a>
feat(analyze/html/vue): add v-bind/v-on style rules (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8586">#8586</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/83be2101cb14969e3affda260773e33e50874df0"><code>83be210</code></a>
feat(analyze/html/vue): add a few more simple vue lint rules (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8583">#8583</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/a3a1ad2b3d2bc85b296472a811a6554c84b63f53"><code>a3a1ad2</code></a>
feat(biome_js_analyze): port
<code>noBeforeInteractiveScriptOutsideDocument</code> from ...</li>
<li><a
href="https://github.com/biomejs/biome/commit/9dd9ca776a9aebc5faac023aa94cd7c790b225e3"><code>9dd9ca7</code></a>
feat(graphql_analyze): implement useUniqueArgumentNames (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8591">#8591</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/5e85d4360d5b8848cf3c04b5ef9e74dc14f251bd"><code>5e85d43</code></a>
feat(graphql_analyze): implement useUniqueFieldDefinitionNames (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8598">#8598</a>)</li>
<li><a
href="https://github.com/biomejs/biome/commit/a5f59cd709ffb8b66305681aff2523240a2d021e"><code>a5f59cd</code></a>
feat(graphql_analyze): implement useUniqueInputFieldNames (<a
href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8592">#8592</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.11/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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 5d238e6 commit 4d25c24
1 file changed
Lines changed: 35 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments