Skip to content

Commit 5ff1799

Browse files
chore(deps): bump @biomejs/biome from 2.4.14 to 2.4.15 in the build-tools group (#8912)
Bumps the build-tools group with 1 update: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome). Updates `@biomejs/biome` from 2.4.14 to 2.4.15 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/releases">@​biomejs/biome's releases</a>.</em></p> <blockquote> <h2>Biome CLI v2.4.15</h2> <h2>2.4.15</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9394">#9394</a> <a href="https://github.com/biomejs/biome/commit/ba3480e62da6ac7f0f9d99126f1459a72306368b"><code>ba3480e</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Added the nursery rule <a href="https://biomejs.dev/linter/rules/use-test-hooks-in-order"><code>useTestHooksInOrder</code></a> in the <code>test</code> domain. The rule enforces that Jest/Vitest lifecycle hooks (<code>beforeAll</code>, <code>beforeEach</code>, <code>afterEach</code>, <code>afterAll</code>) are declared in the order they execute, making test setup and teardown easier to reason about.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10254">#10254</a> <a href="https://github.com/biomejs/biome/commit/e0a54ccc0a0c892fff2270ae772bcecf0d34e79a"><code>e0a54cc</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-next-tick-promise/"><code>useVueNextTickPromise</code></a>, which enforces Promise syntax when using Vue <code>nextTick</code>.</p> <p>For example, the following snippet triggers the rule:</p> <pre lang="js"><code>import { nextTick } from &quot;vue&quot;; <p>nextTick(() =&gt; { updateDom(); }); </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10219">#10219</a> <a href="https://github.com/biomejs/biome/commit/64aee454ac2db2ade31089c1438dd761c94a8d57"><code>64aee45</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/no-vue-v-on-number-values/"><code>noVueVOnNumberValues</code></a>, that disallows deprecated number modifiers on Vue <code>v-on</code> directives.</p> <p>For example, the following snippet triggers the rule:</p> <pre lang="vue"><code>&lt;input @keyup.13=&quot;submit&quot; /&gt; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10195">#10195</a> <a href="https://github.com/biomejs/biome/commit/7b8d4e161a225f14bc9e070e04cc8572ee988bb2"><code>7b8d4e1</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-for/"><code>useVueValidVFor</code></a>, which validates Vue <code>v-for</code> directives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10238">#10238</a> <a href="https://github.com/biomejs/biome/commit/1110256c6d60500ebc05b9d2738fe77345c7ffd6"><code>1110256</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Added the recommended nursery rule <a href="https://biomejs.dev/linter/rules/no-vue-import-compiler-macros/"><code>noVueImportCompilerMacros</code></a>, which disallows importing Vue compiler macros such as <code>defineProps</code> from <code>vue</code> because they are automatically available.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10201">#10201</a> <a href="https://github.com/biomejs/biome/commit/1a08f89df55eafe1d8463696d1be53f8dea90a80"><code>1a08f89</code></a> Thanks <a href="https://github.com/realknove"><code>@​realknove</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/10193">#10193</a>: <code>style/useReadonlyClassProperties</code> no longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9574">#9574</a> <a href="https://github.com/biomejs/biome/commit/3bd2b6adf0be44eda922ad7610781dd2e387bdb6"><code>3bd2b6a</code></a> Thanks <a href="https://github.com/Conaclos"><code>@​Conaclos</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9530">#9530</a>. The diagnostics of <a href="https://biomejs.dev/assist/actions/organize-imports/"><code>organizeImports</code></a> are now more detailed and more precise. They are also better at localizing where the issue is.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10205">#10205</a> <a href="https://github.com/biomejs/biome/commit/a704a6c40392e71aad5127ab35c771486116937e"><code>a704a6c</code></a> Thanks <a href="https://github.com/Conaclos"><code>@​Conaclos</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/10185">#10185</a>. <a href="https://biomejs.dev/assist/actions/organize-imports/">`organizeImports</a> now errors when it encounters an unknown predefined group.</p> <p>The following configuration is now reported as invalid because <code>:INEXISTENT:</code> is an unknown predefined group.</p> <pre lang="json"><code>{ &quot;assist&quot;: { &quot;actions&quot;: { &quot;source&quot;: { &quot;organizeImports&quot;: { &quot;options&quot;: { &quot;groups&quot;: [&quot;:INEXISTENT:&quot;] } } } } } } </code></pre> </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">@​biomejs/biome's changelog</a>.</em></p> <blockquote> <h2>2.4.15</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9394">#9394</a> <a href="https://github.com/biomejs/biome/commit/ba3480e62da6ac7f0f9d99126f1459a72306368b"><code>ba3480e</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Added the nursery rule <a href="https://biomejs.dev/linter/rules/use-test-hooks-in-order"><code>useTestHooksInOrder</code></a> in the <code>test</code> domain. The rule enforces that Jest/Vitest lifecycle hooks (<code>beforeAll</code>, <code>beforeEach</code>, <code>afterEach</code>, <code>afterAll</code>) are declared in the order they execute, making test setup and teardown easier to reason about.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10254">#10254</a> <a href="https://github.com/biomejs/biome/commit/e0a54ccc0a0c892fff2270ae772bcecf0d34e79a"><code>e0a54cc</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-next-tick-promise/"><code>useVueNextTickPromise</code></a>, which enforces Promise syntax when using Vue <code>nextTick</code>.</p> <p>For example, the following snippet triggers the rule:</p> <pre lang="js"><code>import { nextTick } from &quot;vue&quot;; <p>nextTick(() =&gt; { updateDom(); }); </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10219">#10219</a> <a href="https://github.com/biomejs/biome/commit/64aee454ac2db2ade31089c1438dd761c94a8d57"><code>64aee45</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/no-vue-v-on-number-values/"><code>noVueVOnNumberValues</code></a>, that disallows deprecated number modifiers on Vue <code>v-on</code> directives.</p> <p>For example, the following snippet triggers the rule:</p> <pre lang="vue"><code>&lt;input @keyup.13=&quot;submit&quot; /&gt; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10195">#10195</a> <a href="https://github.com/biomejs/biome/commit/7b8d4e161a225f14bc9e070e04cc8572ee988bb2"><code>7b8d4e1</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-for/"><code>useVueValidVFor</code></a>, which validates Vue <code>v-for</code> directives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10238">#10238</a> <a href="https://github.com/biomejs/biome/commit/1110256c6d60500ebc05b9d2738fe77345c7ffd6"><code>1110256</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Added the recommended nursery rule <a href="https://biomejs.dev/linter/rules/no-vue-import-compiler-macros/"><code>noVueImportCompilerMacros</code></a>, which disallows importing Vue compiler macros such as <code>defineProps</code> from <code>vue</code> because they are automatically available.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10201">#10201</a> <a href="https://github.com/biomejs/biome/commit/1a08f89df55eafe1d8463696d1be53f8dea90a80"><code>1a08f89</code></a> Thanks <a href="https://github.com/realknove"><code>@​realknove</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/10193">#10193</a>: <code>style/useReadonlyClassProperties</code> no longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9574">#9574</a> <a href="https://github.com/biomejs/biome/commit/3bd2b6adf0be44eda922ad7610781dd2e387bdb6"><code>3bd2b6a</code></a> Thanks <a href="https://github.com/Conaclos"><code>@​Conaclos</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9530">#9530</a>. The diagnostics of <a href="https://biomejs.dev/assist/actions/organize-imports/"><code>organizeImports</code></a> are now more detailed and more precise. They are also better at localizing where the issue is.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/10205">#10205</a> <a href="https://github.com/biomejs/biome/commit/a704a6c40392e71aad5127ab35c771486116937e"><code>a704a6c</code></a> Thanks <a href="https://github.com/Conaclos"><code>@​Conaclos</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/10185">#10185</a>. <a href="https://biomejs.dev/assist/actions/organize-imports/">`organizeImports</a> now errors when it encounters an unknown predefined group.</p> <p>The following configuration is now reported as invalid because <code>:INEXISTENT:</code> is an unknown predefined group.</p> <pre lang="json"><code>{ &quot;assist&quot;: { &quot;actions&quot;: { &quot;source&quot;: { &quot;organizeImports&quot;: { &quot;options&quot;: { &quot;groups&quot;: [&quot;:INEXISTENT:&quot;] } } } } } } </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/9dd3271eef16090416b6e77615a01e3bfbcf7993"><code>9dd3271</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10210">#10210</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/7b8d4e161a225f14bc9e070e04cc8572ee988bb2"><code>7b8d4e1</code></a> feat(lint/html/vue): add <code>useVueValidVFor</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10195">#10195</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/ba3480e62da6ac7f0f9d99126f1459a72306368b"><code>ba3480e</code></a> feat(lint/js): add <code>useTestHooksInOrder</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9394">#9394</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/e0a54ccc0a0c892fff2270ae772bcecf0d34e79a"><code>e0a54cc</code></a> feat(lint/js/vue): add <code>useVueNextTickPromise</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10254">#10254</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/1110256c6d60500ebc05b9d2738fe77345c7ffd6"><code>1110256</code></a> feat(lint/vue): add <code>noVueImportCompilerMacros</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10238">#10238</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/7f7419cc831cc0725c44669964d8ad8f318d4375"><code>7f7419c</code></a> fix: grammar in extends docstring (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10263">#10263</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/0ae58406b4752f296adfccf94b1d2a042c4cddc7"><code>0ae5840</code></a> feat(lint/js): add <code>useThisForClassMethods</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9807">#9807</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/83f7385f14d68704510ea4c028cfa20317698fc0"><code>83f7385</code></a> feat(lint/js): add <code>noBaseToString</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9838">#9838</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/64aee454ac2db2ade31089c1438dd761c94a8d57"><code>64aee45</code></a> feat(lint/html/vue): add <code>noVueVOnNumberValues</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10219">#10219</a>)</li> <li>See full diff in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.15/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=npm_and_yarn&previous-version=2.4.14&new-version=2.4.15)](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 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 0be4aba commit 5ff1799

2 files changed

Lines changed: 37 additions & 37 deletions

File tree

package-lock.json

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
"tom-select": "^2.6.0"
122122
},
123123
"devDependencies": {
124-
"@biomejs/biome": "^2.4.14",
124+
"@biomejs/biome": "^2.4.15",
125125
"@types/jquery": "^3.5.33",
126126
"archiver": "^7.0.1",
127127
"css-loader": "^7.1.4",

0 commit comments

Comments
 (0)