Skip to content

Commit f9104b7

Browse files
Bump @biomejs/biome from 2.2.5 to 2.2.6 (#64)
Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 2.2.5 to 2.2.6. <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.2.6</h2> <h2>2.2.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7071">#7071</a> <a href="https://github.com/biomejs/biome/commit/a8e73018a8c9e34a182624a91389e19d1fa7817f"><code>a8e7301</code></a> Thanks <a href="https://github.com/ptkagori"><code>@​ptkagori</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/use-qwik-method-usage"><code>useQwikMethodUsage</code></a> lint rule for the Qwik domain.</p> <p>This rule validates Qwik hook usage. Identifiers matching <code>useXxx</code> must be called only within serialisable reactive contexts (for example, inside <code>component$</code>, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.</p> <p><strong>Invalid:</strong></p> <pre lang="js"><code>// Top-level hook call is invalid. const state = useStore({ count: 0 }); <p>function helper() {<br /> // Calling a hook in a non-reactive function is invalid.<br /> const loc = useLocation();<br /> }<br /> </code></pre></p> <p><strong>Valid:</strong></p> <pre lang="js"><code>component$(() =&gt; { const state = useStore({ count: 0 }); // OK inside component$. return &lt;div&gt;{state.count}&lt;/div&gt;; }); <p>const handler = $(() =&gt; {<br /> const loc = useLocation(); // OK inside a $-wrapped closure.<br /> console.log(loc.params);<br /> });<br /> </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7685">#7685</a> <a href="https://github.com/biomejs/biome/commit/52071f54bc1a3c5d1d2ee6039c5feead836638ed"><code>52071f5</code></a> Thanks <a href="https://github.com/denbezrukov"><code>@​denbezrukov</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/6981">#6981</a>: The <a href="https://biomejs.dev/linter/rules/no-unknown-pseudo-class/">NoUnknownPseudoClass</a> rule no longer reports local pseudo-classes when CSS Modules are used.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7640">#7640</a> <a href="https://github.com/biomejs/biome/commit/899f7b28ec9cc457d02565d69212e7c29b5b5aff"><code>899f7b2</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7638">#7638</a>: <a href="https://biomejs.dev/linter/rules/use-import-extensions/"><code>useImportExtensions</code></a> no longer emits diagnostics on valid import paths that end with a query or hash.</p> <h4>Example</h4> <pre lang="js"><code>// This no longer warns if `index.css` exists: import style from &quot;../theme/index.css?inline&quot;; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7071">#7071</a> <a href="https://github.com/biomejs/biome/commit/a8e73018a8c9e34a182624a91389e19d1fa7817f"><code>a8e7301</code></a> Thanks <a href="https://github.com/ptkagori"><code>@​ptkagori</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/use-qwik-valid-lexical-scope"><code>useQwikValidLexicalScope</code></a> rule to the Qwik domain.</p> <p>This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.</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.2.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7071">#7071</a> <a href="https://github.com/biomejs/biome/commit/a8e73018a8c9e34a182624a91389e19d1fa7817f"><code>a8e7301</code></a> Thanks <a href="https://github.com/ptkagori"><code>@​ptkagori</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/use-qwik-method-usage"><code>useQwikMethodUsage</code></a> lint rule for the Qwik domain.</p> <p>This rule validates Qwik hook usage. Identifiers matching <code>useXxx</code> must be called only within serialisable reactive contexts (for example, inside <code>component$</code>, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.</p> <p><strong>Invalid:</strong></p> <pre lang="js"><code>// Top-level hook call is invalid. const state = useStore({ count: 0 }); <p>function helper() {<br /> // Calling a hook in a non-reactive function is invalid.<br /> const loc = useLocation();<br /> }<br /> </code></pre></p> <p><strong>Valid:</strong></p> <pre lang="js"><code>component$(() =&gt; { const state = useStore({ count: 0 }); // OK inside component$. return &lt;div&gt;{state.count}&lt;/div&gt;; }); <p>const handler = $(() =&gt; {<br /> const loc = useLocation(); // OK inside a $-wrapped closure.<br /> console.log(loc.params);<br /> });<br /> </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7685">#7685</a> <a href="https://github.com/biomejs/biome/commit/52071f54bc1a3c5d1d2ee6039c5feead836638ed"><code>52071f5</code></a> Thanks <a href="https://github.com/denbezrukov"><code>@​denbezrukov</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/6981">#6981</a>: The <a href="https://biomejs.dev/linter/rules/no-unknown-pseudo-class/">NoUnknownPseudoClass</a> rule no longer reports local pseudo-classes when CSS Modules are used.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7640">#7640</a> <a href="https://github.com/biomejs/biome/commit/899f7b28ec9cc457d02565d69212e7c29b5b5aff"><code>899f7b2</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7638">#7638</a>: <a href="https://biomejs.dev/linter/rules/use-import-extensions/"><code>useImportExtensions</code></a> no longer emits diagnostics on valid import paths that end with a query or hash.</p> <h4>Example</h4> <pre lang="js"><code>// This no longer warns if `index.css` exists: import style from &quot;../theme/index.css?inline&quot;; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7071">#7071</a> <a href="https://github.com/biomejs/biome/commit/a8e73018a8c9e34a182624a91389e19d1fa7817f"><code>a8e7301</code></a> Thanks <a href="https://github.com/ptkagori"><code>@​ptkagori</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/use-qwik-valid-lexical-scope"><code>useQwikValidLexicalScope</code></a> rule to the Qwik domain.</p> <p>This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.</p> <p><strong>Invalid:</strong></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/e5b805891b943e936a463b7059927d05a63ded54"><code>e5b8058</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7637">#7637</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/5beb1eefe134f4dc713cfb28bfa1cbae38319975"><code>5beb1ee</code></a> feat(biome_graphql_analyze): implement <code>useDeprecatedDate</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7620">#7620</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/a8e73018a8c9e34a182624a91389e19d1fa7817f"><code>a8e7301</code></a> feat(qwik): add useQwikMethodUsage &amp; useQwikValidLexicalScope (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7071">#7071</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/d025e530c7c1065be4d883ed3ae606cc8281dcfd"><code>d025e53</code></a> docs: add Polish translation of Biome README (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7630">#7630</a>)</li> <li>See full diff in <a href="https://github.com/biomejs/biome/commits/@biomejs/[email protected]/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.2.5&new-version=2.2.6)](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>
1 parent 0c2bd55 commit f9104b7

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
@@ -26,23 +26,23 @@
2626

2727
"@arethetypeswrong/core": ["@arethetypeswrong/[email protected]", "", { "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=="],
2828

29-
"@biomejs/biome": ["@biomejs/[email protected].5", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.2.5", "@biomejs/cli-darwin-x64": "2.2.5", "@biomejs/cli-linux-arm64": "2.2.5", "@biomejs/cli-linux-arm64-musl": "2.2.5", "@biomejs/cli-linux-x64": "2.2.5", "@biomejs/cli-linux-x64-musl": "2.2.5", "@biomejs/cli-win32-arm64": "2.2.5", "@biomejs/cli-win32-x64": "2.2.5" }, "bin": { "biome": "bin/biome" } }, "sha512-zcIi+163Rc3HtyHbEO7CjeHq8DjQRs40HsGbW6vx2WI0tg8mYQOPouhvHSyEnCBAorfYNnKdR64/IxO7xQ5faw=="],
29+
"@biomejs/biome": ["@biomejs/[email protected].6", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.2.6", "@biomejs/cli-darwin-x64": "2.2.6", "@biomejs/cli-linux-arm64": "2.2.6", "@biomejs/cli-linux-arm64-musl": "2.2.6", "@biomejs/cli-linux-x64": "2.2.6", "@biomejs/cli-linux-x64-musl": "2.2.6", "@biomejs/cli-win32-arm64": "2.2.6", "@biomejs/cli-win32-x64": "2.2.6" }, "bin": { "biome": "bin/biome" } }, "sha512-yKTCNGhek0rL5OEW1jbLeZX8LHaM8yk7+3JRGv08my+gkpmtb5dDE+54r2ZjZx0ediFEn1pYBOJSmOdDP9xtFw=="],
3030

31-
"@biomejs/cli-darwin-arm64": ["@biomejs/[email protected].5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-MYT+nZ38wEIWVcL5xLyOhYQQ7nlWD0b/4mgATW2c8dvq7R4OQjt/XGXFkXrmtWmQofaIM14L7V8qIz/M+bx5QQ=="],
31+
"@biomejs/cli-darwin-arm64": ["@biomejs/[email protected].6", "", { "os": "darwin", "cpu": "arm64" }, "sha512-UZPmn3M45CjTYulgcrFJFZv7YmK3pTxTJDrFYlNElT2FNnkkX4fsxjExTSMeWKQYoZjvekpH5cvrYZZlWu3yfA=="],
3232

33-
"@biomejs/cli-darwin-x64": ["@biomejs/[email protected].5", "", { "os": "darwin", "cpu": "x64" }, "sha512-FLIEl73fv0R7dI10EnEiZLw+IMz3mWLnF95ASDI0kbx6DDLJjWxE5JxxBfmG+udz1hIDd3fr5wsuP7nwuTRdAg=="],
33+
"@biomejs/cli-darwin-x64": ["@biomejs/[email protected].6", "", { "os": "darwin", "cpu": "x64" }, "sha512-HOUIquhHVgh/jvxyClpwlpl/oeMqntlteL89YqjuFDiZ091P0vhHccwz+8muu3nTyHWM5FQslt+4Jdcd67+xWQ=="],
3434

35-
"@biomejs/cli-linux-arm64": ["@biomejs/[email protected].5", "", { "os": "linux", "cpu": "arm64" }, "sha512-5DjiiDfHqGgR2MS9D+AZ8kOfrzTGqLKywn8hoXpXXlJXIECGQ32t+gt/uiS2XyGBM2XQhR6ztUvbjZWeccFMoQ=="],
35+
"@biomejs/cli-linux-arm64": ["@biomejs/[email protected].6", "", { "os": "linux", "cpu": "arm64" }, "sha512-BpGtuMJGN+o8pQjvYsUKZ+4JEErxdSmcRD/JG3mXoWc6zrcA7OkuyGFN1mDggO0Q1n7qXxo/PcupHk8gzijt5g=="],
3636

37-
"@biomejs/cli-linux-arm64-musl": ["@biomejs/[email protected].5", "", { "os": "linux", "cpu": "arm64" }, "sha512-5Ov2wgAFwqDvQiESnu7b9ufD1faRa+40uwrohgBopeY84El2TnBDoMNXx6iuQdreoFGjwW8vH6k68G21EpNERw=="],
37+
"@biomejs/cli-linux-arm64-musl": ["@biomejs/[email protected].6", "", { "os": "linux", "cpu": "arm64" }, "sha512-TjCenQq3N6g1C+5UT3jE1bIiJb5MWQvulpUngTIpFsL4StVAUXucWD0SL9MCW89Tm6awWfeXBbZBAhJwjyFbRQ=="],
3838

39-
"@biomejs/cli-linux-x64": ["@biomejs/[email protected].5", "", { "os": "linux", "cpu": "x64" }, "sha512-fq9meKm1AEXeAWan3uCg6XSP5ObA6F/Ovm89TwaMiy1DNIwdgxPkNwxlXJX8iM6oRbFysYeGnT0OG8diCWb9ew=="],
39+
"@biomejs/cli-linux-x64": ["@biomejs/[email protected].6", "", { "os": "linux", "cpu": "x64" }, "sha512-1HaM/dpI/1Z68zp8ZdT6EiBq+/O/z97a2AiHMl+VAdv5/ELckFt9EvRb8hDHpk8hUMoz03gXkC7VPXOVtU7faA=="],
4040

41-
"@biomejs/cli-linux-x64-musl": ["@biomejs/[email protected].5", "", { "os": "linux", "cpu": "x64" }, "sha512-AVqLCDb/6K7aPNIcxHaTQj01sl1m989CJIQFQEaiQkGr2EQwyOpaATJ473h+nXDUuAcREhccfRpe/tu+0wu0eQ=="],
41+
"@biomejs/cli-linux-x64-musl": ["@biomejs/[email protected].6", "", { "os": "linux", "cpu": "x64" }, "sha512-1ZcBux8zVM3JhWN2ZCPaYf0+ogxXG316uaoXJdgoPZcdK/rmRcRY7PqHdAos2ExzvjIdvhQp72UcveI98hgOog=="],
4242

43-
"@biomejs/cli-win32-arm64": ["@biomejs/[email protected].5", "", { "os": "win32", "cpu": "arm64" }, "sha512-xaOIad4wBambwJa6mdp1FigYSIF9i7PCqRbvBqtIi9y29QtPVQ13sDGtUnsRoe6SjL10auMzQ6YAe+B3RpZXVg=="],
43+
"@biomejs/cli-win32-arm64": ["@biomejs/[email protected].6", "", { "os": "win32", "cpu": "arm64" }, "sha512-h3A88G8PGM1ryTeZyLlSdfC/gz3e95EJw9BZmA6Po412DRqwqPBa2Y9U+4ZSGUAXCsnSQE00jLV8Pyrh0d+jQw=="],
4444

45-
"@biomejs/cli-win32-x64": ["@biomejs/[email protected].5", "", { "os": "win32", "cpu": "x64" }, "sha512-F/jhuXCssPFAuciMhHKk00xnCAxJRS/pUzVfXYmOMUp//XW7mO6QeCjsjvnm8L4AO/dG2VOB0O+fJPiJ2uXtIw=="],
45+
"@biomejs/cli-win32-x64": ["@biomejs/[email protected].6", "", { "os": "win32", "cpu": "x64" }, "sha512-yx0CqeOhPjYQ5ZXgPfu8QYkgBhVJyvWe36as7jRuPrKPO5ylVDfwVtPQ+K/mooNTADW0IhxOZm3aPu16dP8yNQ=="],
4646

4747
"@braidai/lang": ["@braidai/[email protected]", "", {}, "sha512-xyJYkiyNQtTyCLeHxZmOs7rnB94D+N1IjKNArQIh8+8lTBOY7TFgwEV+Ow5a1uaBi5j2w9fLbWcJFTWLDItl5g=="],
4848

0 commit comments

Comments
 (0)