Skip to content

Commit 8adf3c9

Browse files
chore(deps-dev): bump the dev-dependencies group across 1 directory with 8 updates (#98)
Bumps the dev-dependencies group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.3` | `2.4.9` | | [@vscode/test-cli](https://github.com/Microsoft/vscode-test-cli) | `0.0.11` | `0.0.12` | | [@vscode/vsce](https://github.com/Microsoft/vsce) | `3.6.0` | `3.7.1` | | [esbuild](https://github.com/evanw/esbuild) | `0.25.9` | `0.27.4` | | [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.3.1` | `11.3.4` | | [p-min-delay](https://github.com/sindresorhus/p-min-delay) | `4.1.1` | `4.2.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.43.0` | `8.57.2` | | [zod](https://github.com/colinhacks/zod) | `4.1.5` | `4.3.6` | Updates `@biomejs/biome` from 2.2.3 to 2.4.9 <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.4.9</h2> <h2>2.4.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9315">#9315</a> <a href="https://github.com/biomejs/biome/commit/085d324b963f12b4ceaf901c36875b196d383cc4"><code>085d324</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Added a new nursery CSS rule <a href="https://biomejs.dev/linter/rules/no-duplicate-selectors/"><code>noDuplicateSelectors</code></a>, that disallows duplicate selector lists within the same at-rule context.</p> <p>For example, the following snippet triggers the rule because the second selector and the first selector are the same:</p> <pre lang="css"><code>/* First selector */ .x .y .z { } <p>/* Second selector */ .x { .y { .z { } } } </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9567">#9567</a> <a href="https://github.com/biomejs/biome/commit/b7ab931be14f5e61e5716a345c7ef0da59abb016"><code>b7ab931</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7211">#7211</a>: <a href="https://biomejs.dev/linter/rules/use-optional-chain/"><code>useOptionalChain</code></a> now detects negated logical OR chains. The following code is now considered invalid:</p> <pre lang="js"><code>!foo || !foo.bar; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8670">#8670</a> <a href="https://github.com/biomejs/biome/commit/607ebf9eacec1480f57e06deea46c99174b000a2"><code>607ebf9</code></a> Thanks <a href="https://github.com/tt-a1i"><code>@​tt-a1i</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/8345">#8345</a>: <a href="https://biomejs.dev/linter/rules/use-adjacent-overload-signatures/"><code>useAdjacentOverloadSignatures</code></a> no longer reports false positives for static and instance methods with the same name. Static methods and instance methods are now treated as separate overload groups.</p> <pre lang="ts"><code>class Kek { static kek(): number { return 0; } another(): string { return &quot;&quot;; } kek(): number { return 1; } // no longer reported as non-adjacent } </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9476">#9476</a> <a href="https://github.com/biomejs/biome/commit/97b80a8b017dc3a56542bfe01b6dadab081729bf"><code>97b80a8</code></a> Thanks <a href="https://github.com/masterkain"><code>@​masterkain</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9475"><code>[#9475](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9475)</code></a>: Fixed a panic when Biome analyzed ambient TypeScript modules containing class constructor, getter, or setter signatures that reference local type aliases. Biome now handles these declarations without crashing during semantic analysis.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9553">#9553</a> <a href="https://github.com/biomejs/biome/commit/0cd5298fecae7961c458b026b37f80a8ab98880f"><code>0cd5298</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed a bug where enabling the rules of a whole group, would enable rules that belonged to a domain under the same group.</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.4.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9315">#9315</a> <a href="https://github.com/biomejs/biome/commit/085d324b963f12b4ceaf901c36875b196d383cc4"><code>085d324</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Added a new nursery CSS rule <a href="https://biomejs.dev/linter/rules/no-duplicate-selectors/"><code>noDuplicateSelectors</code></a>, that disallows duplicate selector lists within the same at-rule context.</p> <p>For example, the following snippet triggers the rule because the second selector and the first selector are the same:</p> <pre lang="css"><code>/* First selector */ .x .y .z { } <p>/* Second selector */ .x { .y { .z { } } } </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9567">#9567</a> <a href="https://github.com/biomejs/biome/commit/b7ab931be14f5e61e5716a345c7ef0da59abb016"><code>b7ab931</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7211">#7211</a>: <a href="https://biomejs.dev/linter/rules/use-optional-chain/"><code>useOptionalChain</code></a> now detects negated logical OR chains. The following code is now considered invalid:</p> <pre lang="js"><code>!foo || !foo.bar; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8670">#8670</a> <a href="https://github.com/biomejs/biome/commit/607ebf9eacec1480f57e06deea46c99174b000a2"><code>607ebf9</code></a> Thanks <a href="https://github.com/tt-a1i"><code>@​tt-a1i</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/8345">#8345</a>: <a href="https://biomejs.dev/linter/rules/use-adjacent-overload-signatures/"><code>useAdjacentOverloadSignatures</code></a> no longer reports false positives for static and instance methods with the same name. Static methods and instance methods are now treated as separate overload groups.</p> <pre lang="ts"><code>class Kek { static kek(): number { return 0; } another(): string { return &quot;&quot;; } kek(): number { return 1; } // no longer reported as non-adjacent } </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9476">#9476</a> <a href="https://github.com/biomejs/biome/commit/97b80a8b017dc3a56542bfe01b6dadab081729bf"><code>97b80a8</code></a> Thanks <a href="https://github.com/masterkain"><code>@​masterkain</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9475"><code>[#9475](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9475)</code></a>: Fixed a panic when Biome analyzed ambient TypeScript modules containing class constructor, getter, or setter signatures that reference local type aliases. Biome now handles these declarations without crashing during semantic analysis.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9553">#9553</a> <a href="https://github.com/biomejs/biome/commit/0cd5298fecae7961c458b026b37f80a8ab98880f"><code>0cd5298</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed a bug where enabling the rules of a whole group, would enable rules that belonged to a domain under the same group.</p> <p>For example, <code>linter.rules.correctness = &quot;error&quot;</code> no longer enables React- or Qwik-specific correctness rules unless <code>linter.domains.react</code>, <code>linter.domains.qwik</code>, or an explicit rule config also enables them, or their relative dependencies are installed.</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/ad3752696c34f0ad30311a2a70de1f9b18b31530"><code>ad37526</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9620">#9620</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/eb57e3a1df36bf1bbe612f84a68ded658d9b7d00"><code>eb57e3a</code></a> chore: use npmx.dev badge (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9614">#9614</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/e1684948cee6572583ab62019a300cf2a7d1d826"><code>e168494</code></a> feat(linter): add rule <code>noUntrustedLicenses</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9474">#9474</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/085d324b963f12b4ceaf901c36875b196d383cc4"><code>085d324</code></a> feat(css): add <code>noDuplicateSelectors</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9315">#9315</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/4d050df5e3276dd54b6962fca6eeaf8cdcd6f295"><code>4d050df</code></a> feat(analyze): implement noInlineStyles (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9534">#9534</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/723798b7cd5d6b27cf6ab653ea6046f66610b402"><code>723798b</code></a> feat: apply fix to use consistent method signatures (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9544">#9544</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/f4bf3411cc34ae6458b298a03c6255ac3cd00231"><code>f4bf341</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9517">#9517</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/e7b3b104590fd13b38a2ab044a297fecbcb49e8c"><code>e7b3b10</code></a> feat(lint): add noDrizzleDeleteWithoutWhere and noDrizzleUpdateWithoutWhere r...</li> <li><a href="https://github.com/biomejs/biome/commit/1f30838b288bf317bf88c9247da029d9a394d009"><code>1f30838</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9346">#9346</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/3ac98eb0fa492fce37e87e14c2c4b7016475195c"><code>3ac98eb</code></a> feat(css/lint): useBaseline (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9318">#9318</a>)</li> <li>Additional commits viewable in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.9/packages/@biomejs/biome">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@​biomejs/biome</code> since your current version.</p> </details> <br /> Updates `@vscode/test-cli` from 0.0.11 to 0.0.12 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/microsoft/vscode-test-cli/blob/main/CHANGELOG.md"><code>@​vscode/test-cli</code>'s changelog</a>.</em></p> <blockquote> <h2>0.0.12 - 2025-10-09</h2> <ul> <li>Package version bumps</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/Microsoft/vscode-test-cli/commits">compare view</a></li> </ul> </details> <br /> Updates `@vscode/vsce` from 3.6.0 to 3.7.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Microsoft/vsce/releases"><code>@​vscode/vsce</code>'s releases</a>.</em></p> <blockquote> <h2>v3.7.1</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1223">#1223</a>: Bump js-yaml</li> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1222">#1222</a>: Bump glob</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=378097&amp;view=logs">auto generated</a>.</p> <h2>v3.7.1-1</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1223">#1223</a>: Bump js-yaml</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=376246&amp;view=logs">auto generated</a>.</p> <h2>v3.7.1-0</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1222">#1222</a>: Bump glob</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=376228&amp;view=logs">auto generated</a>.</p> <h2>v3.7.0</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1219">#1219</a>: Remove invalid validation for extension dependencies</li> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1212">#1212</a>: Validate extension dependencies use lowercase letters and warn about deprecated github.copilot</li> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1209">#1209</a>: Bump validator from 13.9.0 to 13.15.20</li> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1200">#1200</a>: Bump tar-fs from 2.1.3 to 2.1.4</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=372155&amp;view=logs">auto generated</a>.</p> <h2>v3.6.3-3</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/Microsoft/vsce/issues/1219">#1219</a>: Remove invalid validation for extension dependencies</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=371249&amp;view=logs">auto generated</a>.</p> <h2>v3.6.3-2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/vscode-vsce/commit/44181d1a5a01eb1f69f0fa1b2305aefc2b6dc092"><code>44181d1</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/vsce/issues/1223">#1223</a> from microsoft/dependabot/npm_and_yarn/multi-75e6bc5210</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/a83138988fa9f56f8fec92aa4086f05f17db3ea2"><code>a831389</code></a> Bump js-yaml</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/5d9e78f4541357c11ad56d5200be1de7a14d474c"><code>5d9e78f</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/vsce/issues/1222">#1222</a> from microsoft/dependabot/npm_and_yarn/multi-12cb0b0c21</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/c9023e9bdfc321e1f18aa3c0e6aa2932b2b2acec"><code>c9023e9</code></a> Bump glob</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/8551fa25395fb053bfaa16de4752e51b261de4c5"><code>8551fa2</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/vsce/issues/1219">#1219</a> from microsoft/benibenj/handsome-pike</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/7b65808c78de8d5c35b183eba1e2abafcb80320f"><code>7b65808</code></a> remove tests</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/be09f0f0b688fbf861fe50528eedd8d912fd9bf8"><code>be09f0f</code></a> remove invalid validation</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/196cce4398a0c4fc032616555f6aa8e9236bf6f6"><code>196cce4</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/vsce/issues/1212">#1212</a> from microsoft/copilot/validate-extension-dependenci...</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/82c80d6f774c5fdc83e3257e8ede35dde18818a9"><code>82c80d6</code></a> :lipstick:</li> <li><a href="https://github.com/microsoft/vscode-vsce/commit/0b7a9ebddbed93d049dbf39c921dc87b50cde18c"><code>0b7a9eb</code></a> fix warning</li> <li>Additional commits viewable in <a href="https://github.com/Microsoft/vsce/compare/v3.6.0...v3.7.1">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.25.9 to 0.27.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.27.4</h2> <ul> <li> <p>Fix a regression with CSS media queries (<a href="https://redirect.github.com/evanw/esbuild/issues/4395">#4395</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4405">#4405</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4406">#4406</a>)</p> <p>Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <code>&lt;media-type&gt; and &lt;media-condition-without-or&gt;</code> grammar. Specifically, esbuild was failing to wrap an <code>or</code> clause with parentheses when inside <code>&lt;media-condition-without-or&gt;</code>. This release fixes the regression.</p> <p>Here is an example:</p> <pre lang="css"><code>/* Original code */ @media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red } } <p>/* Old output (incorrect) */ <a href="https://github.com/media"><code>@​media</code></a> only screen and (min-width: 10px) or (min-height: 10px) { a { color: red; } }</p> <p>/* New output (correct) */ <a href="https://github.com/media"><code>@​media</code></a> only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red; } } </code></pre></p> </li> <li> <p>Fix an edge case with the <code>inject</code> feature (<a href="https://redirect.github.com/evanw/esbuild/issues/4407">#4407</a>)</p> <p>This release fixes an edge case where esbuild's <code>inject</code> feature could not be used with arbitrary module namespace names exported using an <code>export {} from</code> statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.</p> <p>With the fix, the following <code>inject</code> file:</p> <pre lang="js"><code>import jquery from 'jquery'; export { jquery as 'window.jQuery' }; </code></pre> <p>Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:</p> <pre lang="js"><code>export { default as 'window.jQuery' } from 'jquery'; </code></pre> </li> <li> <p>Attempt to improve API handling of huge metafiles (<a href="https://redirect.github.com/evanw/esbuild/issues/4329">#4329</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4415">#4415</a>)</p> <p>This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.</p> <p>The primary issue is that V8 has an implementation-specific maximum string length, so using the <code>JSON.parse</code> API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using <code>JSON.parse</code> when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.27.4</h2> <ul> <li> <p>Fix a regression with CSS media queries (<a href="https://redirect.github.com/evanw/esbuild/issues/4395">#4395</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4405">#4405</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4406">#4406</a>)</p> <p>Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <code>&lt;media-type&gt; and &lt;media-condition-without-or&gt;</code> grammar. Specifically, esbuild was failing to wrap an <code>or</code> clause with parentheses when inside <code>&lt;media-condition-without-or&gt;</code>. This release fixes the regression.</p> <p>Here is an example:</p> <pre lang="css"><code>/* Original code */ @media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red } } <p>/* Old output (incorrect) */ <a href="https://github.com/media"><code>@​media</code></a> only screen and (min-width: 10px) or (min-height: 10px) { a { color: red; } }</p> <p>/* New output (correct) */ <a href="https://github.com/media"><code>@​media</code></a> only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red; } } </code></pre></p> </li> <li> <p>Fix an edge case with the <code>inject</code> feature (<a href="https://redirect.github.com/evanw/esbuild/issues/4407">#4407</a>)</p> <p>This release fixes an edge case where esbuild's <code>inject</code> feature could not be used with arbitrary module namespace names exported using an <code>export {} from</code> statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.</p> <p>With the fix, the following <code>inject</code> file:</p> <pre lang="js"><code>import jquery from 'jquery'; export { jquery as 'window.jQuery' }; </code></pre> <p>Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:</p> <pre lang="js"><code>export { default as 'window.jQuery' } from 'jquery'; </code></pre> </li> <li> <p>Attempt to improve API handling of huge metafiles (<a href="https://redirect.github.com/evanw/esbuild/issues/4329">#4329</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4415">#4415</a>)</p> <p>This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/f9c9012cdb05135873722184b01f078ea7de8d98"><code>f9c9012</code></a> publish 0.27.4 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/207dbc761ea95a81a8b32cc7f9fae46361faaed7"><code>207dbc7</code></a> js api: fall back to js-based metafile json parser</li> <li><a href="https://github.com/evanw/esbuild/commit/1ca56dc65155b0d887904c683cd43f7618ae621e"><code>1ca56dc</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4329">#4329</a>: auto-minify metafile for large bundles</li> <li><a href="https://github.com/evanw/esbuild/commit/e3823aa485d3cd3f6c11718e4c124b54ebc425e5"><code>e3823aa</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4415">#4415</a>: add uint cast to stdio int parser</li> <li><a href="https://github.com/evanw/esbuild/commit/d50e88c00aaa424712eddda2f28aae299db4e0de"><code>d50e88c</code></a> chore: correct copy&amp;paste panic message (<a href="https://redirect.github.com/evanw/esbuild/issues/4399">#4399</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/8b829b1bdfeb2b11aa16a643b5bfee108066cab0"><code>8b829b1</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4407">#4407</a>: incorrect error for inject edge case</li> <li><a href="https://github.com/evanw/esbuild/commit/4384badefe3a07b80b3f3eba832c17d0c806dd4c"><code>4384bad</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4395">#4395</a> close <a href="https://redirect.github.com/evanw/esbuild/issues/4405">#4405</a> close <a href="https://redirect.github.com/evanw/esbuild/issues/4406">#4406</a>: parens for <code>or</code></li> <li><a href="https://github.com/evanw/esbuild/commit/9129e00e6c36a3e374820cb5e3fc2cd319c8ab85"><code>9129e00</code></a> publish 0.27.3 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/e20e4115acda9c9f052fdd1ec8d7d5c5489e837b"><code>e20e411</code></a> small fix to release notes</li> <li><a href="https://github.com/evanw/esbuild/commit/0dc0f2dee556460bd7b81d5bbbae5a2f86449ab6"><code>0dc0f2d</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4322">#4322</a>: parse and print CSS <code>@scope</code> rules</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.25.9...v0.27.4">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for esbuild since your current version.</p> </details> <br /> Updates `fs-extra` from 11.3.1 to 11.3.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md">fs-extra's changelog</a>.</em></p> <blockquote> <h2>11.3.4 / 2026-03-03</h2> <ul> <li>Fix bug where calling <code>ensureSymlink</code>/<code>ensureSymlinkSync</code> with a relative <code>srcPath</code> would fail if the symlink already existed (<a href="https://redirect.github.com/jprichardson/node-fs-extra/issues/1038">#1038</a>, <a href="https://redirect.github.com/jprichardson/node-fs-extra/pull/1064">#1064</a>)</li> </ul> <h2>11.3.3 / 2025-12-18</h2> <ul> <li>Fix copying symlink when destination is a symlink to the same target (<a href="https://redirect.github.com/jprichardson/node-fs-extra/issues/1019">#1019</a>, <a href="https://redirect.github.com/jprichardson/node-fs-extra/pull/1060">#1060</a>)</li> </ul> <h2>11.3.2 / 2025-09-15</h2> <ul> <li>Fix spurrious <code>UnhandledPromiseRejectionWarning</code> that could occur when calling <code>.copy()</code> in some cases (<a href="https://redirect.github.com/jprichardson/node-fs-extra/issues/1056">#1056</a>, <a href="https://redirect.github.com/jprichardson/node-fs-extra/pull/1058">#1058</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/353a29b18c883fa0f3997fd8be90a89077633af4"><code>353a29b</code></a> 11.3.4</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/3e65fbe81e565e2cd16a5f0ff1b3d8623610bb7a"><code>3e65fbe</code></a> fix(ensureSymlink): resolve relative srcpath correctly when symlink exists (#...</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/e2615e501e7b261b832170b3eb7e26c82668b215"><code>e2615e5</code></a> Fix git URL in package.json (<a href="https://redirect.github.com/jprichardson/node-fs-extra/issues/1062">#1062</a>)</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/1de81e98a8ff3afb5cf4a6b4dc63a93216728dd3"><code>1de81e9</code></a> 11.3.3</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/ddc46f7cb980e5f2cc2174c73342cfe18e875895"><code>ddc46f7</code></a> Fix symlink copy failing when source and dest symlinks point to same target (...</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/5023c22431e2341385d6c4b7645bb896d2e477b6"><code>5023c22</code></a> Use macos-15-intel runner (<a href="https://redirect.github.com/jprichardson/node-fs-extra/issues/1061">#1061</a>)</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/403e8aaf191e1fe7f40273cacce754330c923b8a"><code>403e8aa</code></a> 11.3.2</li> <li><a href="https://github.com/jprichardson/node-fs-extra/commit/47f1095d4bea4a9c0a2efea017b3a5570597366f"><code>47f1095</code></a> Fix UnhandledPromiseRejectionWarning in copy (<a href="https://redirect.github.com/jprichardson/node-fs-extra/issues/1058">#1058</a>)</li> <li>See full diff in <a href="https://github.com/jprichardson/node-fs-extra/compare/11.3.1...11.3.4">compare view</a></li> </ul> </details> <br /> Updates `p-min-delay` from 4.1.1 to 4.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/p-min-delay/releases">p-min-delay's releases</a>.</em></p> <blockquote> <h2>v4.2.0</h2> <ul> <li>Add support for wrapping functions with minimum delay (<a href="https://redirect.github.com/sindresorhus/p-min-delay/issues/28">#28</a>) c7d615a</li> </ul> <hr /> <p><a href="https://github.com/sindresorhus/p-min-delay/compare/v4.1.1...v4.2.0">https://github.com/sindresorhus/p-min-delay/compare/v4.1.1...v4.2.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/p-min-delay/commit/265e9d56606e37d28c117f43ea3d8c50bfb8b601"><code>265e9d5</code></a> 4.2.0</li> <li><a href="https://github.com/sindresorhus/p-min-delay/commit/c7d615afef8804fb480aacb184860836a0fd2e47"><code>c7d615a</code></a> Add support for wrapping functions with minimum delay (<a href="https://redirect.github.com/sindresorhus/p-min-delay/issues/28">#28</a>)</li> <li>See full diff in <a href="https://github.com/sindresorhus/p-min-delay/compare/v4.1.1...v4.2.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.43.0 to 8.57.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.57.2</h2> <h2>8.57.2 (2026-03-23)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-optional-chain] remove dangling closing parenthesis (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11865">#11865</a>)</li> <li><strong>eslint-plugin:</strong> [array-type] ignore Array and ReadonlyArray without type arguments (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11971">#11971</a>)</li> <li><strong>eslint-plugin:</strong> [no-restricted-types] flag banned generics in extends or implements (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12120">#12120</a>)</li> <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on unwrapping generic (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125">#12125</a>)</li> <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on unwrapping generic (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125">#12125</a>)</li> <li><strong>eslint-plugin:</strong> [no-useless-default-assignment] skip reporting false positives for unresolved type parameters (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12127">#12127</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly-parameter-types] preserve type alias infomation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11954">#11954</a>)</li> <li><strong>typescript-estree:</strong> skip createIsolatedProgram fallback for projectService (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12066">#12066</a>, <a href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/12065">#12065</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Konv Suu</li> <li>mdm317</li> <li>Newton Yuan <a href="https://github.com/NewtonYuan"><code>@​NewtonYuan</code></a></li> <li>RyoheiYamamoto</li> <li>SungHyun627 <a href="https://github.com/SungHyun627"><code>@​SungHyun627</code></a></li> <li>Tamashoo <a href="https://github.com/Tamashoo"><code>@​Tamashoo</code></a></li> </ul> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>v8.57.1</h2> <h2>8.57.1 (2026-03-16)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-optional-chain] no report for property on intersection type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12126">#12126</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Newton Yuan <a href="https://github.com/NewtonYuan"><code>@​NewtonYuan</code></a></li> </ul> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.1">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>v8.57.0</h2> <h2>8.57.0 (2026-03-09)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> [no-unnecessary-condition] allow literal loop conditions in for/do loops (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12080">#12080</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.57.2 (2026-03-23)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.57.1 (2026-03-16)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.1">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.57.0 (2026-03-09)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.0">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.56.1 (2026-02-23)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.56.1">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.56.0 (2026-02-16)</h2> <h3>🚀 Features</h3> <ul> <li>support ESLint v10 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12057">#12057</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Brad Zacher <a href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li> <li>Joshua Chen</li> </ul> <p>See <a href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.56.0">GitHub Releases</a> for more information.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.55.0 (2026-02-09)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/be4d54d26e695cc93605ffcca67dd75848e95c6f"><code>be4d54d</code></a> chore(release): publish 8.57.2</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/c7c38aa252d7bf6708a225aebedc57686ac33dcd"><code>c7c38aa</code></a> chore(release): publish 8.57.1</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/2c6aeeec238dfea860b9f3c146a55f8f49f15cf5"><code>2c6aeee</code></a> chore(release): publish 8.57.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/f696dadfc37078efe4119ad2ab0609cde3e42766"><code>f696dad</code></a> chore: use pnpm catalog (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/12047">#12047</a>)</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/a09921e2de2e8790e6a803016b825815ca9409d8"><code>a09921e</code></a> chore: update vitest to 4.x (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/12071">#12071</a>)</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/96a04a97454cf6b6ae8366711c09333bf6e2327a"><code>96a04a9</code></a> chore(release): publish 8.56.1</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/8b8b68f200a48ee9d6f7be8670e964629375196c"><code>8b8b68f</code></a> chore(release): publish 8.56.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/68a074fb61a10c3627f09678859fb4d42a3b88f5"><code>68a074f</code></a> feat: support ESLint v10 (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/12057">#12057</a>)</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/fedfe8665afbabd5c7d3ee09d14f450d5ba0b10a"><code>fedfe86</code></a> chore(release): publish 8.55.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/b931f8c706beafc289462824814dca158694cb48"><code>b931f8c</code></a> chore: use workspace refs for workspace deps (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/12018">#12018</a>)</li> <li>Additional commits viewable in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `zod` from 4.1.5 to 4.3.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/colinhacks/zod/releases">zod's releases</a>.</em></p> <blockquote> <h2>v4.3.6</h2> <h2>Commits:</h2> <ul> <li>9977fb0868432461de265a773319e80a90ba3e37 Add brand.dev to sponsors</li> <li>f4b7bae3468f6188b8f004e007d722148fc91d77 Update pullfrog.yml (<a href="https://redirect.github.com/colinhacks/zod/issues/5634">#5634</a>)</li> <li>251d7163a0ac7740fee741428d913e3c55702ace Clean up workflow_call</li> <li>edd4132466da0f5065a8e051b599d01fdd1081d8 fix: add missing User-agent to robots.txt and allow all (<a href="https://redirect.github.com/colinhacks/zod/issues/5646">#5646</a>)</li> <li>85db85e9091d0706910d60c7eb2e9c181edd87bd fix: typo in codec.test.ts file (<a href="https://redirect.github.com/colinhacks/zod/issues/5628">#5628</a>)</li> <li>cbf77bb12bdfda2e054818e79001f5cb3798ce76 Avoid non null assertion (<a href="https://redirect.github.com/colinhacks/zod/issues/5638">#5638</a>)</li> <li>dfbbf1c1ae0c224b8131d80ddf0a264262144086 Avoid re-exported star modules (<a href="https://redirect.github.com/colinhacks/zod/issues/5656">#5656</a>)</li> <li>762e911e5773f949452fd6dd4e360f2362110e8e Generalize numeric key handling</li> <li>ca3c8629c0c2715571f70b44c2433cad3db7fe4e v4.3.6</li> </ul> <h2>v4.3.5</h2> <h2>Commits:</h2> <ul> <li>21afffdb42ccab554036312e33fed0ea3cb8f982 [Docs] Update migration guide docs for deprecation of message (<a href="https://redirect.github.com/colinhacks/zod/issues/5595">#5595</a>)</li> <li>e36743e513aadb307b29949a80d6eb0dcc8fc278 Improve mini treeshaking</li> <li>0cdc0b8597999fd9ca99767b912c1e82c1ff2d6c 4.3.5</li> </ul> <h2>v4.3.4</h2> <h2>Commits:</h2> <ul> <li>1a8bea3b474eada6f219c163d0d3ad09fadabe72 Add integration tests</li> <li>e01cd02b2f23d7e9078d3813830b146f8a2258b4 Support patternProperties for looserecord (<a href="https://redirect.github.com/colinhacks/zod/issues/5592">#5592</a>)</li> <li>089e5fbb0f58ce96d2c4fb34cd91724c78df4af5 Improve looseRecord docs</li> <li>decef9c418d9a598c3f1bada06891ba5d922c5cd Fix lint</li> <li>9443aab00d44d5d5f4a7eada65fc0fc851781042 Drop iso time in fromJSONSchema</li> <li>66bda7491a1b9eab83bdeec0c12f4efc7290bd48 Remove .refine() from ZodMiniType</li> <li>b4ab94ca608cd5b581bfc12b20dd8d95b35b3009 4.3.4</li> </ul> <h2>v4.3.3</h2> <h2>Commits:</h2> <ul> <li>f3b2151959d215d405f54dff3c7ab3bf1fd887ca v4.3.3</li> </ul> <h2>v4.3.2</h2> <h2>Commits:</h2> <ul> <li>bf96635d243118de6e4f260077aa137453790bf6 Loosen strictObjectinside intersection (<a href="https://redirect.github.com/colinhacks/zod/issues/5587">#5587</a>)</li> <li>f71dc0182ab0f0f9a6be6295b07faca269e10179 Remove Juno (<a href="https://redirect.github.com/colinhacks/zod/issues/5590">#5590</a>)</li> <li>0f41e5a12a43e6913c9dcb501b2b5136ea86500d 4.3.2</li> </ul> <h2>v4.3.1</h2> <h2>Commits:</h2> <ul> <li>0fe88407a4149c907929b757dc6618d8afe998fc allow non-overwriting extends with refinements. 4.3.1</li> </ul> <h2>v4.3.0</h2> <p>This is Zod's biggest release since 4.0. It addresses several of Zod's longest-standing feature requests.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/colinhacks/zod/commit/ca3c8629c0c2715571f70b44c2433cad3db7fe4e"><code>ca3c862</code></a> v4.3.6</li> <li><a href="https://github.com/colinhacks/zod/commit/762e911e5773f949452fd6dd4e360f2362110e8e"><code>762e911</code></a> Generalize numeric key handling</li> <li><a href="https://github.com/colinhacks/zod/commit/dfbbf1c1ae0c224b8131d80ddf0a264262144086"><code>dfbbf1c</code></a> Avoid re-exported star modules (<a href="https://redirect.github.com/colinhacks/zod/issues/5656">#5656</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/cbf77bb12bdfda2e054818e79001f5cb3798ce76"><code>cbf77bb</code></a> Avoid non null assertion (<a href="https://redirect.github.com/colinhacks/zod/issues/5638">#5638</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/85db85e9091d0706910d60c7eb2e9c181edd87bd"><code>85db85e</code></a> fix: typo in codec.test.ts file (<a href="https://redirect.github.com/colinhacks/zod/issues/5628">#5628</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/edd4132466da0f5065a8e051b599d01fdd1081d8"><code>edd4132</code></a> fix: add missing User-agent to robots.txt and allow all (<a href="https://redirect.github.com/colinhacks/zod/issues/5646">#5646</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/251d7163a0ac7740fee741428d913e3c55702ace"><code>251d716</code></a> Clean up workflow_call</li> <li><a href="https://github.com/colinhacks/zod/commit/f4b7bae3468f6188b8f004e007d722148fc91d77"><code>f4b7bae</code></a> Update pullfrog.yml (<a href="https://redirect.github.com/colinhacks/zod/issues/5634">#5634</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/9977fb0868432461de265a773319e80a90ba3e37"><code>9977fb0</code></a> Add brand.dev to sponsors</li> <li><a href="https://github.com/colinhacks/zod/commit/0cdc0b8597999fd9ca99767b912c1e82c1ff2d6c"><code>0cdc0b8</code></a> 4.3.5</li> <li>Additional commits viewable in <a href="https://github.com/colinhacks/zod/compare/v4.1.5...v4.3.6">compare view</a></li> </ul> </details> <br /> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 91e541d commit 8adf3c9

File tree

2 files changed

+461
-390
lines changed

2 files changed

+461
-390
lines changed

0 commit comments

Comments
 (0)