dependabot[bot] opened a new pull request, #3410: URL: https://github.com/apache/tinkerpop/pull/3410
Bumps [zod](https://github.com/colinhacks/zod) from 3.25.76 to 4.4.1. <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.4.1</h2> <h2>Commits:</h2> <ul> <li>481f7be4238c83ed58183f921b2646f340a91c6a ci: gate release publishing on full test workflow</li> <li>95ccab423aec720b2523c3a64cdc7e3204537cc7 test(v3): restore optional undefined expectations</li> <li>cede2c63739a5823d6aa5093d291e9a111da943d fix(v4): reject tuple holes before required defaults (<a href="https://redirect.github.com/colinhacks/zod/issues/5900">#5900</a>)</li> <li>edd0bf0f5ada4a8dc581c259407d7bbad0a71ea7 release: 4.4.1</li> <li>180d83d1dbe6a59260710cc8637a3dea2281ee56 docs: remove Jazz featured sponsor</li> </ul> <h2>v4.4.0</h2> <h2>4.4.0</h2> <p>This is a minor release with a wide set of correctness and soundness fixes. Some fixes intentionally make Zod stricter, so code that depended on previously accepted invalid or ambiguous inputs may need small updates.</p> <h2>Potentially breaking bug fixes</h2> <h3>Tuple defaults now materialize output values correctly</h3> <p>Fixed in <a href="https://redirect.github.com/colinhacks/zod/pull/5661">#5661</a>. Tuple parsing now more accurately reflects defaults, optional tails, explicit <code>undefined</code>, and under-filled inputs. The headline behavior is that defaults in tuple positions now properly appear in parsed output.</p> <pre lang="ts"><code>const schema = z.tuple([ z.string(), z.string().default("fallback"), ]); <p>schema.parse(["a"]); // ["a", "fallback"] </code></pre></p> <p>Trailing optional elements that are absent still stay absent; they are not filled with <code>undefined</code>.</p> <pre lang="ts"><code>const schema = z.tuple([ z.string(), z.string().optional(), ]); <p>schema.parse(["a"]); // ["a"] </code></pre></p> <p>But explicit <code>undefined</code> values supplied by the caller are preserved.</p> <pre lang="ts"><code>schema.parse(["a", undefined]); // ["a", undefined] </code></pre> <p>When optional elements appear before later defaults, the parsed tuple is now dense so array operations behave predictably.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/colinhacks/zod/commit/180d83d1dbe6a59260710cc8637a3dea2281ee56"><code>180d83d</code></a> docs: remove Jazz featured sponsor</li> <li><a href="https://github.com/colinhacks/zod/commit/edd0bf0f5ada4a8dc581c259407d7bbad0a71ea7"><code>edd0bf0</code></a> release: 4.4.1</li> <li><a href="https://github.com/colinhacks/zod/commit/cede2c63739a5823d6aa5093d291e9a111da943d"><code>cede2c6</code></a> fix(v4): reject tuple holes before required defaults (<a href="https://redirect.github.com/colinhacks/zod/issues/5900">#5900</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/95ccab423aec720b2523c3a64cdc7e3204537cc7"><code>95ccab4</code></a> test(v3): restore optional undefined expectations</li> <li><a href="https://github.com/colinhacks/zod/commit/481f7be4238c83ed58183f921b2646f340a91c6a"><code>481f7be</code></a> ci: gate release publishing on full test workflow</li> <li><a href="https://github.com/colinhacks/zod/commit/d05f026e9e6eae0e1e6c2efbf11c89007ca40494"><code>d05f026</code></a> release: 4.4.0</li> <li><a href="https://github.com/colinhacks/zod/commit/f778e02a81842cbc40b1a448a85b29747227c49d"><code>f778e02</code></a> build: bump zshy for JSR wildcard exports</li> <li><a href="https://github.com/colinhacks/zod/commit/6db607be3c218ad9f23fef8975de1f37469680e7"><code>6db607b</code></a> fix(release): keep JSR manifest publishable</li> <li><a href="https://github.com/colinhacks/zod/commit/ad0b82713e70e53707dd5e6497c9d922fcba3721"><code>ad0b827</code></a> ci: update release workflow for trusted publishing</li> <li><a href="https://github.com/colinhacks/zod/commit/b6066b3e4730fc8b966d13974b4abae8dce25df4"><code>b6066b3</code></a> fix(v4): align object and tuple optionality handling (<a href="https://redirect.github.com/colinhacks/zod/issues/5661">#5661</a>)</li> <li>Additional commits viewable in <a href="https://github.com/colinhacks/zod/compare/v3.25.76...v4.4.1">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~GitHub%20Actions">GitHub Actions</a>, a new releaser for zod since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot 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> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
