Skip to content

Commit ffee42e

Browse files
Bump @biomejs/biome from 2.2.2 to 2.2.4 (#125)
Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 2.2.2 to 2.2.4. <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.4</h2> <h2>2.2.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7453">#7453</a> <a href="biomejs/biome@aa8cea3"> <code>aa8cea3</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7242">#7242</a>: Aliases specified in <code>package.json</code>'s <code>imports</code> section now support having multiple targets as part of an array.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7454">#7454</a> <a href="biomejs/biome@ac17183"> <code>ac17183</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Greatly improved performance of <code>noImportCycles</code> by eliminating allocations.</p> <p>In one repository, the total runtime of Biome with only <code>noImportCycles</code> enabled went from ~23s down to ~4s.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7447">#7447</a> <a href="biomejs/biome@7139aad"> <code>7139aad</code></a> Thanks <a href="https://github.com/rriski"><code>@​rriski</code></a>! - Fixes <a href="https://redirect.github.com/biomejs/biome/issues/7446">#7446</a>. The GritQL <code>$...</code> spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/6710">#6710</a> <a href="biomejs/biome@98cf9af"> <code>98cf9af</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7423">#4723</a>: Type inference now recognises <em>index signatures</em> and their accesses when they are being indexed as a string.</p> <h4>Example</h4> <pre lang="ts"><code>type BagOfPromises = { // This is an index signature definition. It declares that instances of type // `BagOfPromises` can be indexed using arbitrary strings. [property: string]: Promise&lt;void&gt;; }; <p>let bag: BagOfPromises = {}; // Because <code>bag.iAmAPromise</code> is equivalent to <code>bag[&amp;quot;iAmAPromise&amp;quot;]</code>, this is // considered an access to the string index, and a Promise is expected. bag.iAmAPromise; </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7415">#7415</a> <a href="biomejs/biome@d042f18"> <code>d042f18</code></a> Thanks <a href="https://github.com/qraqras"><code>@​qraqras</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7212">#7212</a>, now the <a href="https://biomejs.dev/linter/rules/use-optional-chain/"> <code>useOptionalChain</code></a> rule recognizes optional chaining using <code>typeof</code> (e.g., <code>typeof foo !== 'undefined' &amp;&amp; foo.bar</code>).</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7419">#7419</a> <a href="biomejs/biome@576baf4"> <code>576baf4</code></a> Thanks <a href="https://github.com/Conaclos"><code>@​Conaclos</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7323">#7323</a>. <a href="https://biomejs.dev/linter/rules/no-unused-private-class-members/"> <code>noUnusedPrivateClassMembers</code></a> no longer reports as unused TypeScript <code>private</code> members if the rule encounters a computed access on <code>this</code>.</p> <p>In the following example, <code>member</code> as previously reported as unused. It is no longer reported.</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.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7453">#7453</a> <a href="https://github.com/biomejs/biome/commit/aa8cea31af675699e18988fe79242ae5d5215af1"><code>aa8cea3</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7242">#7242</a>: Aliases specified in <code>package.json</code>'s <code>imports</code> section now support having multiple targets as part of an array.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7454">#7454</a> <a href="https://github.com/biomejs/biome/commit/ac171839a31600225e3b759470eaa026746e9cf4"><code>ac17183</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Greatly improved performance of <code>noImportCycles</code> by eliminating allocations.</p> <p>In one repository, the total runtime of Biome with only <code>noImportCycles</code> enabled went from ~23s down to ~4s.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7447">#7447</a> <a href="https://github.com/biomejs/biome/commit/7139aad75b6e8045be6eb09425fb82eb035fb704"><code>7139aad</code></a> Thanks <a href="https://github.com/rriski"><code>@​rriski</code></a>! - Fixes <a href="https://redirect.github.com/biomejs/biome/issues/7446">#7446</a>. The GritQL <code>$...</code> spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/6710">#6710</a> <a href="https://github.com/biomejs/biome/commit/98cf9af0a4e02434983899ce49d92209a6abab02"><code>98cf9af</code></a> Thanks <a href="https://github.com/arendjr"><code>@​arendjr</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7423">#4723</a>: Type inference now recognises <em>index signatures</em> and their accesses when they are being indexed as a string.</p> <h4>Example</h4> <pre lang="ts"><code>type BagOfPromises = { // This is an index signature definition. It declares that instances of type // `BagOfPromises` can be indexed using arbitrary strings. [property: string]: Promise&lt;void&gt;; }; <p>let bag: BagOfPromises = {}; // Because <code>bag.iAmAPromise</code> is equivalent to <code>bag[&amp;quot;iAmAPromise&amp;quot;]</code>, this is // considered an access to the string index, and a Promise is expected. bag.iAmAPromise; </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7415">#7415</a> <a href="https://github.com/biomejs/biome/commit/d042f18f556edfd4fecff562c8f197dbec81a5e7"><code>d042f18</code></a> Thanks <a href="https://github.com/qraqras"><code>@​qraqras</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7212">#7212</a>, now the <a href="https://biomejs.dev/linter/rules/use-optional-chain/"><code>useOptionalChain</code></a> rule recognizes optional chaining using <code>typeof</code> (e.g., <code>typeof foo !== 'undefined' &amp;&amp; foo.bar</code>).</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/7419">#7419</a> <a href="https://github.com/biomejs/biome/commit/576baf4faf568e8b6a295f457f70894235ffdb59"><code>576baf4</code></a> Thanks <a href="https://github.com/Conaclos"><code>@​Conaclos</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7323">#7323</a>. <a href="https://biomejs.dev/linter/rules/no-unused-private-class-members/"><code>noUnusedPrivateClassMembers</code></a> no longer reports as unused TypeScript <code>private</code> members if the rule encounters a computed access on <code>this</code>.</p> <p>In the following example, <code>member</code> as previously reported as unused. It is no longer reported.</p> <pre lang="ts"><code>class TsBioo { private member: number; <p>set_with_name(name: string, value: number) { this[name] = value; } } </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/5d212c5ab940ba83cc72d4aa9936ebbb1964ae7a"><code>5d212c5</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7450">#7450</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/351bccdfe49a6173cb1446ef2a8a9171c8d78c26"><code>351bccd</code></a> chore: restore release files</li> <li><a href="https://github.com/biomejs/biome/commit/32dbfa156b3d097813ff96e53a65b4004adb3591"><code>32dbfa1</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7413">#7413</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/75b6a0d12f3aa30647f743d607b0d60c0470fff3"><code>75b6a0d</code></a> feat(linter): add rule <code>noJsxLiterals</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7248">#7248</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/53ff5ae34428f042bb5b80c19862c9cf69fc6359"><code>53ff5ae</code></a> feat(analyse/json): add <code>noDuplicateDependencies</code> rule (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7142">#7142</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/daa4a66e7971800a5e15024f5b5535d072087ac9"><code>daa4a66</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7306">#7306</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/0f38ea689acf6c64b0e749d34da48a03a9708067"><code>0f38ea6</code></a> chore: add new bronze sponsor (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7397">#7397</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/7f532745900936039e77cc0b4254562ec9a7376d"><code>7f53274</code></a> docs: safety of useSortedKeys (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/6112">#6112</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/fad34b9db9778fe964ff7dbc489de0bfad2d3ece"><code>fad34b9</code></a> feat(biome_js_analyze): add UseConsistentArrowReturn rule (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7245">#7245</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/4416573f4d709047a28407d99381810b7bc7dcc7"><code>4416573</code></a> feat(lint/vue): implement <code>useVueMultiWordComponentNames</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/7373">#7373</a>)</li> <li>Additional commits viewable in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.2.4/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.2&new-version=2.2.4)](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 e30d558 commit ffee42e

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
@@ -47,23 +47,23 @@
4747

4848
"@arethetypeswrong/core": ["@arethetypeswrong/core@0.18.2", "", { "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=="],
4949

50-
"@biomejs/biome": ["@biomejs/biome@2.2.2", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.2.2", "@biomejs/cli-darwin-x64": "2.2.2", "@biomejs/cli-linux-arm64": "2.2.2", "@biomejs/cli-linux-arm64-musl": "2.2.2", "@biomejs/cli-linux-x64": "2.2.2", "@biomejs/cli-linux-x64-musl": "2.2.2", "@biomejs/cli-win32-arm64": "2.2.2", "@biomejs/cli-win32-x64": "2.2.2" }, "bin": { "biome": "bin/biome" } }, "sha512-j1omAiQWCkhuLgwpMKisNKnsM6W8Xtt1l0WZmqY/dFj8QPNkIoTvk4tSsi40FaAAkBE1PU0AFG2RWFBWenAn+w=="],
50+
"@biomejs/biome": ["@biomejs/biome@2.2.4", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.2.4", "@biomejs/cli-darwin-x64": "2.2.4", "@biomejs/cli-linux-arm64": "2.2.4", "@biomejs/cli-linux-arm64-musl": "2.2.4", "@biomejs/cli-linux-x64": "2.2.4", "@biomejs/cli-linux-x64-musl": "2.2.4", "@biomejs/cli-win32-arm64": "2.2.4", "@biomejs/cli-win32-x64": "2.2.4" }, "bin": { "biome": "bin/biome" } }, "sha512-TBHU5bUy/Ok6m8c0y3pZiuO/BZoY/OcGxoLlrfQof5s8ISVwbVBdFINPQZyFfKwil8XibYWb7JMwnT8wT4WVPg=="],
5151

52-
"@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.2.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-6ePfbCeCPryWu0CXlzsWNZgVz/kBEvHiPyNpmViSt6A2eoDf4kXs3YnwQPzGjy8oBgQulrHcLnJL0nkCh80mlQ=="],
52+
"@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.2.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-RJe2uiyaloN4hne4d2+qVj3d3gFJFbmrr5PYtkkjei1O9c+BjGXgpUPVbi8Pl8syumhzJjFsSIYkcLt2VlVLMA=="],
5353

54-
"@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.2.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-Tn4JmVO+rXsbRslml7FvKaNrlgUeJot++FkvYIhl1OkslVCofAtS35MPlBMhXgKWF9RNr9cwHanrPTUUXcYGag=="],
54+
"@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.2.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-cFsdB4ePanVWfTnPVaUX+yr8qV8ifxjBKMkZwN7gKb20qXPxd/PmwqUH8mY5wnM9+U0QwM76CxFyBRJhC9tQwg=="],
5555

56-
"@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.2.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-JfrK3gdmWWTh2J5tq/rcWCOsImVyzUnOS2fkjhiYKCQ+v8PqM+du5cfB7G1kXas+7KQeKSWALv18iQqdtIMvzw=="],
56+
"@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.2.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-M/Iz48p4NAzMXOuH+tsn5BvG/Jb07KOMTdSVwJpicmhN309BeEyRyQX+n1XDF0JVSlu28+hiTQ2L4rZPvu7nMw=="],
5757

58-
"@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.2.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-/MhYg+Bd6renn6i1ylGFL5snYUn/Ct7zoGVKhxnro3bwekiZYE8Kl39BSb0MeuqM+72sThkQv4TnNubU9njQRw=="],
58+
"@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.2.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-7TNPkMQEWfjvJDaZRSkDCPT/2r5ESFPKx+TEev+I2BXDGIjfCZk2+b88FOhnJNHtksbOZv8ZWnxrA5gyTYhSsQ=="],
5959

60-
"@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.2.2", "", { "os": "linux", "cpu": "x64" }, "sha512-Ogb+77edO5LEP/xbNicACOWVLt8mgC+E1wmpUakr+O4nKwLt9vXe74YNuT3T1dUBxC/SnrVmlzZFC7kQJEfquQ=="],
60+
"@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.2.4", "", { "os": "linux", "cpu": "x64" }, "sha512-orr3nnf2Dpb2ssl6aihQtvcKtLySLta4E2UcXdp7+RTa7mfJjBgIsbS0B9GC8gVu0hjOu021aU8b3/I1tn+pVQ=="],
6161

62-
"@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.2.2", "", { "os": "linux", "cpu": "x64" }, "sha512-ZCLXcZvjZKSiRY/cFANKg+z6Fhsf9MHOzj+NrDQcM+LbqYRT97LyCLWy2AS+W2vP+i89RyRM+kbGpUzbRTYWig=="],
62+
"@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.2.4", "", { "os": "linux", "cpu": "x64" }, "sha512-m41nFDS0ksXK2gwXL6W6yZTYPMH0LughqbsxInSKetoH6morVj43szqKx79Iudkp8WRT5SxSh7qVb8KCUiewGg=="],
6363

64-
"@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.2.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-wBe2wItayw1zvtXysmHJQoQqXlTzHSpQRyPpJKiNIR21HzH/CrZRDFic1C1jDdp+zAPtqhNExa0owKMbNwW9cQ=="],
64+
"@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.2.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-NXnfTeKHDFUWfxAefa57DiGmu9VyKi0cDqFpdI+1hJWQjGJhJutHPX0b5m+eXvTKOaf+brU+P0JrQAZMb5yYaQ=="],
6565

66-
"@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.2.2", "", { "os": "win32", "cpu": "x64" }, "sha512-DAuHhHekGfiGb6lCcsT4UyxQmVwQiBCBUMwVra/dcOSs9q8OhfaZgey51MlekT3p8UwRqtXQfFuEJBhJNdLZwg=="],
66+
"@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.2.4", "", { "os": "win32", "cpu": "x64" }, "sha512-3Y4V4zVRarVh/B/eSHczR4LYoSVyv3Dfuvm3cWs5w/HScccS0+Wt/lHOcDTRYeHjQmMYVC3rIRWqyN2EI52+zg=="],
6767

6868
"@braidai/lang": ["@braidai/lang@1.1.0", "", {}, "sha512-xyJYkiyNQtTyCLeHxZmOs7rnB94D+N1IjKNArQIh8+8lTBOY7TFgwEV+Ow5a1uaBi5j2w9fLbWcJFTWLDItl5g=="],
6969

0 commit comments

Comments
 (0)