Bump the prod-minor-updates group across 1 directory with 4 updates #484

Closed
opened 2026-04-05 17:12:18 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @dependabot[bot] on 12/16/2025

Bumps the prod-minor-updates group with 4 updates in the / directory: @aws-sdk/client-s3, lucide-react, next-intl and zod.

Updates @aws-sdk/client-s3 from 3.948.0 to 3.952.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.952.0

3.952.0(2025-12-15)

Chores
Documentation Changes
  • client-bedrock-agentcore-control: This release updates broken links for AgentCore Policy APIs in the AWS CLI and SDK resources. (6207cfae)
New Features
  • client-service-quotas: Add support for SQ Dashboard Api (bcc5261c)
  • client-entityresolution: Support Customer Profiles Integration for AWS Entity Resolution (32903b15)
  • client-health: Updating Health API endpoint generation for dualstack only regions (c8be328f)
  • client-s3: This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations. (55955e01)
  • client-ec2: EC2 Capacity Manager now supports SpotTotalCount, SpotTotalInterruptions and SpotInterruptionRate metrics for both vCPU and instance units. (f5db7c3c)
  • client-cloudwatch-logs: This release allows you to import your historical CloudTrail Lake data into CloudWatch with a few steps, enabling you to easily consolidate operational, security, and compliance data in one place. (23d7db9d)
  • client-route53resolver: Adds support for enabling detailed metrics on Route 53 Resolver endpoints using RniEnhancedMetricsEnabled and TargetNameServerMetricsEnabled in the CreateResolverEndpoint and UpdateResolverEndpoint APIs, providing enhanced visibility into Resolver endpoint and target name server performance. (93737551)
  • client-glacier: Documentation updates for Amazon Glacier's maintenance mode (069dcf44)
  • client-connect: Amazon Connect now supports outbound WhatsApp contacts via the Send message block or StartOutboundChatContact API. Send proactive messages for surveys, reminders, and updates. Offer customers the option to switch to WhatsApp while in queue, eliminating hold time. (c9b56eb0)
  • client-mediatailor: Added support for Ad Decision Server Configuration enabling HTTP POST requests with custom bodies, headers, GZIP compression, and dynamic variables. No changes required for existing GET request configurations. (d0aae6dd)
Bug Fixes
  • client-sts: warn sts default region only when used (#7579) (6512de50)
  • credential-provider-ini: pass requestHandler from client to login provider (#7577) (a0bd362c)

For list of updated packages, view updated-packages.md in assets-3.952.0.zip

v3.951.0

3.951.0(2025-12-12)

New Features
  • clients: update client endpoints as of 2025-12-12 (e2460aa3)
  • client-datasync: Adds Enhanced mode support for NFS and SMB locations. SMB credentials are now managed via Secrets Manager, and may be encrypted with service or customer managed keys. Increases AgentArns maximum count to 8 (max 4 per TaskMode). Adds folder counters to DescribeTaskExecution for Enhanced mode tasks. (a9f75c95)
  • client-bcm-recommended-actions: Added new freetier action types to RecommendedAction.type. (a9471243)
  • client-connect: Amazon Connect now offers automated post-chat surveys triggered when customers end conversations. This captures timely feedback while experience is fresh, using either a no-code form builder or Amazon Lex-powered interactive surveys. (26542c92)
  • client-workspaces-web: Adds support for portal branding customization, enabling administrators to personalize end-user portals with custom assets. (038e6dd0)
Bug Fixes
  • ec2-metadata-service:
    • preserve statusCode when rethrowing errors for IMDS requests (#7564) (c860bd5c)
    • custom port configuration for IMDS requests (#7565) (0d8b7ea2)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.952.0 (2025-12-15)

Features

  • client-s3: This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations. (55955e0)
Commits
  • 3870229 Publish v3.952.0
  • 55955e0 feat(client-s3): This release adds support for the new optional field 'Lifecy...
  • See full diff in compare view

Updates lucide-react from 0.559.0 to 0.561.0

Release notes

Sourced from lucide-react's releases.

Version 0.561.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.560.0...0.561.0

Version 0.560.0

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.559.0...0.560.0

Commits

Updates next-intl from 4.5.8 to 4.6.0

Release notes

Sourced from next-intl's releases.

v4.6.0

4.6.0 (2025-12-12)

Features

  • Custom formats for useExtracted, consistency fixes for file references, pruning of messages and sorting of keys (#2155) (c02818e) – by @​amannn
Changelog

Sourced from next-intl's changelog.

4.6.0 (2025-12-12)

Features

  • Custom formats for useExtracted, consistency fixes for file references, pruning of messages and sorting of keys (#2155) (c02818e) – by @​amannn
Commits
  • 70a047d v4.6.0
  • c02818e feat: Custom formats for useExtracted, consistency fixes for file reference...
  • e8ae56e docs: Mention learn.next-intl.dev in issues menu
  • 5aeae8e chore: Upgrade React and Next.js (#2164)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for next-intl since your current version.


Updates zod from 4.1.13 to 4.2.0

Release notes

Sourced from zod's releases.

v4.2.0

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()

const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};

const schema = z.fromJSONSchema(jsonSchema);

Implement z.xor()

const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match

Implement z.looseRecord()

const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:

  • af49c084f66339110d00e37ff71dc7b3b9f2b7ef Update docs for JSON Schema conversion of z.undefined() (#5504)
  • 767f320318986e422f524b939f1a7174544fda2e Add .toJSONSchema() method (#5477)
  • e17dcb63573397063e87d7c7fe10a5a78968181a Add z.fromJSONSchema(), z.looseRecord(), z.xor() (#5534)
Commits

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 commands and options

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 <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
*Originally created by @dependabot[bot] on 12/16/2025* Bumps the prod-minor-updates group with 4 updates in the / directory: [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3), [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react), [next-intl](https://github.com/amannn/next-intl) and [zod](https://github.com/colinhacks/zod). Updates `@aws-sdk/client-s3` from 3.948.0 to 3.952.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/client-s3</code>'s releases</a>.</em></p> <blockquote> <h2>v3.952.0</h2> <h4>3.952.0(2025-12-15)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> apply spotless eclipse formatting (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7573">#7573</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/7e8a34ea9e759e533defdb14c8b69bc46a2c4225">7e8a34ea</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-bedrock-agentcore-control:</strong> This release updates broken links for AgentCore Policy APIs in the AWS CLI and SDK resources. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6207cfae3d99963e1a86c8585d72c547d1b668f4">6207cfae</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>client-service-quotas:</strong> Add support for SQ Dashboard Api (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bcc5261c5e30ff57735d13dbab57b983893340bb">bcc5261c</a>)</li> <li><strong>client-entityresolution:</strong> Support Customer Profiles Integration for AWS Entity Resolution (<a href="https://github.com/aws/aws-sdk-js-v3/commit/32903b157a9c5ef3867cc885ba4149c8a35e200c">32903b15</a>)</li> <li><strong>client-health:</strong> Updating Health API endpoint generation for dualstack only regions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c8be328fb89dd2fb443f4e0871221023a8ccd391">c8be328f</a>)</li> <li><strong>client-s3:</strong> This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55955e018c9276e55a3479debe28593103dac5f4">55955e01</a>)</li> <li><strong>client-ec2:</strong> EC2 Capacity Manager now supports SpotTotalCount, SpotTotalInterruptions and SpotInterruptionRate metrics for both vCPU and instance units. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f5db7c3c8a308db06b2fc42d82deecd5dfa9aef8">f5db7c3c</a>)</li> <li><strong>client-cloudwatch-logs:</strong> This release allows you to import your historical CloudTrail Lake data into CloudWatch with a few steps, enabling you to easily consolidate operational, security, and compliance data in one place. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/23d7db9dcdbda83b9f48d33daccdda6ca540dea6">23d7db9d</a>)</li> <li><strong>client-route53resolver:</strong> Adds support for enabling detailed metrics on Route 53 Resolver endpoints using RniEnhancedMetricsEnabled and TargetNameServerMetricsEnabled in the CreateResolverEndpoint and UpdateResolverEndpoint APIs, providing enhanced visibility into Resolver endpoint and target name server performance. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/937375511ee24a6cba577bbf5958a34ec4310df4">93737551</a>)</li> <li><strong>client-glacier:</strong> Documentation updates for Amazon Glacier's maintenance mode (<a href="https://github.com/aws/aws-sdk-js-v3/commit/069dcf44b1dfd064918f16a5728074a51dd9d959">069dcf44</a>)</li> <li><strong>client-connect:</strong> Amazon Connect now supports outbound WhatsApp contacts via the Send message block or StartOutboundChatContact API. Send proactive messages for surveys, reminders, and updates. Offer customers the option to switch to WhatsApp while in queue, eliminating hold time. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c9b56eb02df69d708b8a836bfc4f9830e1cb7e49">c9b56eb0</a>)</li> <li><strong>client-mediatailor:</strong> Added support for Ad Decision Server Configuration enabling HTTP POST requests with custom bodies, headers, GZIP compression, and dynamic variables. No changes required for existing GET request configurations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0aae6dd626e4c6f792156c3ef793fd0246a184c">d0aae6dd</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>client-sts:</strong> warn sts default region only when used (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7579">#7579</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6512de50d8d3663ec7de3a7eb12e5b624033bb22">6512de50</a>)</li> <li><strong>credential-provider-ini:</strong> pass requestHandler from client to login provider (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7577">#7577</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a0bd362cca53a59918a8b55ed12dcda421edc9b5">a0bd362c</a>)</li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.952.0.zip</strong></p> <h2>v3.951.0</h2> <h4>3.951.0(2025-12-12)</h4> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-12-12 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e2460aa3c65a2aa30ddaf7bf22922f19e39b86da">e2460aa3</a>)</li> <li><strong>client-datasync:</strong> Adds Enhanced mode support for NFS and SMB locations. SMB credentials are now managed via Secrets Manager, and may be encrypted with service or customer managed keys. Increases AgentArns maximum count to 8 (max 4 per TaskMode). Adds folder counters to DescribeTaskExecution for Enhanced mode tasks. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a9f75c956dc6f5d853e687b6979a5372cbab4a85">a9f75c95</a>)</li> <li><strong>client-bcm-recommended-actions:</strong> Added new freetier action types to RecommendedAction.type. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a947124361f8d025114089e71867692e4aae4e17">a9471243</a>)</li> <li><strong>client-connect:</strong> Amazon Connect now offers automated post-chat surveys triggered when customers end conversations. This captures timely feedback while experience is fresh, using either a no-code form builder or Amazon Lex-powered interactive surveys. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/26542c92d66847043cf319a8f990406ff31dd38b">26542c92</a>)</li> <li><strong>client-workspaces-web:</strong> Adds support for portal branding customization, enabling administrators to personalize end-user portals with custom assets. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/038e6dd0eab1a73f64fcf644540dd04eb3f1377b">038e6dd0</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>ec2-metadata-service:</strong> <ul> <li>preserve statusCode when rethrowing errors for IMDS requests (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7564">#7564</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c860bd5cd14a62713bb38e82363f8943d29f3363">c860bd5c</a>)</li> <li>custom port configuration for IMDS requests (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7565">#7565</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0d8b7ea278909bd1b64ede683d6c31ad442dab8a">0d8b7ea2</a>)</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md"><code>@​aws-sdk/client-s3</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.951.0...v3.952.0">3.952.0</a> (2025-12-15)</h1> <h3>Features</h3> <ul> <li><strong>client-s3:</strong> This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55955e018c9276e55a3479debe28593103dac5f4">55955e0</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/387022975437050a164942cc57eac5fd3c0a3f82"><code>3870229</code></a> Publish v3.952.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/55955e018c9276e55a3479debe28593103dac5f4"><code>55955e0</code></a> feat(client-s3): This release adds support for the new optional field 'Lifecy...</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.952.0/clients/client-s3">compare view</a></li> </ul> </details> <br /> Updates `lucide-react` from 0.559.0 to 0.561.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lucide-icons/lucide/releases">lucide-react's releases</a>.</em></p> <blockquote> <h2>Version 0.561.0</h2> <h2>What's Changed</h2> <ul> <li>fix(site): Small adjustments color picker and add clear button search bar by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3851">lucide-icons/lucide#3851</a></li> <li>feat(icons): added <code>stone</code> icon by <a href="https://github.com/Alportan"><code>@​Alportan</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3850">lucide-icons/lucide#3850</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.560.0...0.561.0">https://github.com/lucide-icons/lucide/compare/0.560.0...0.561.0</a></p> <h2>Version 0.560.0</h2> <h2>What's Changed</h2> <ul> <li>feat(icons): added <code>cannabis-off</code> icon by <a href="https://github.com/NickVeles"><code>@​NickVeles</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3748">lucide-icons/lucide#3748</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/NickVeles"><code>@​NickVeles</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3748">lucide-icons/lucide#3748</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.559.0...0.560.0">https://github.com/lucide-icons/lucide/compare/0.559.0...0.560.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/lucide-icons/lucide/commits/0.561.0/packages/lucide-react">compare view</a></li> </ul> </details> <br /> Updates `next-intl` from 4.5.8 to 4.6.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/amannn/next-intl/releases">next-intl's releases</a>.</em></p> <blockquote> <h2>v4.6.0</h2> <h2>4.6.0 (2025-12-12)</h2> <h3>Features</h3> <ul> <li>Custom formats for <code>useExtracted</code>, consistency fixes for file references, pruning of messages and sorting of keys (<a href="https://redirect.github.com/amannn/next-intl/issues/2155">#2155</a>) (<a href="https://github.com/amannn/next-intl/commit/c02818ed97f78521e9ef6a3ee8c936336f61aaa8">c02818e</a>) – by <a href="https://github.com/amannn"><code>@​amannn</code></a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/amannn/next-intl/blob/main/CHANGELOG.md">next-intl's changelog</a>.</em></p> <blockquote> <h2>4.6.0 (2025-12-12)</h2> <h3>Features</h3> <ul> <li>Custom formats for <code>useExtracted</code>, consistency fixes for file references, pruning of messages and sorting of keys (<a href="https://redirect.github.com/amannn/next-intl/issues/2155">#2155</a>) (<a href="https://github.com/amannn/next-intl/commit/c02818ed97f78521e9ef6a3ee8c936336f61aaa8">c02818e</a>) – by <a href="https://github.com/amannn"><code>@​amannn</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/amannn/next-intl/commit/70a047daa5cb235fdcadcf6ebf1daed32ad30c85"><code>70a047d</code></a> v4.6.0</li> <li><a href="https://github.com/amannn/next-intl/commit/c02818ed97f78521e9ef6a3ee8c936336f61aaa8"><code>c02818e</code></a> feat: Custom formats for <code>useExtracted</code>, consistency fixes for file reference...</li> <li><a href="https://github.com/amannn/next-intl/commit/e8ae56e252cb44b389fd86633cace8989b45157a"><code>e8ae56e</code></a> docs: Mention learn.next-intl.dev in issues menu</li> <li><a href="https://github.com/amannn/next-intl/commit/5aeae8ec6783af17e9fb5d0597d0e84be77e0d47"><code>5aeae8e</code></a> chore: Upgrade React and Next.js (<a href="https://redirect.github.com/amannn/next-intl/issues/2164">#2164</a>)</li> <li>See full diff in <a href="https://github.com/amannn/next-intl/compare/v4.5.8...v4.6.0">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 next-intl since your current version.</p> </details> <br /> Updates `zod` from 4.1.13 to 4.2.0 <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.2.0</h2> <h2>Features</h2> <h3>Implement Standard JSON Schema</h3> <p><a href="https://redirect.github.com/standard-schema/standard-schema/pull/134">standard-schema/standard-schema#134</a></p> <h3>Implement <code>z.fromJSONSchema()</code></h3> <pre lang="typescript"><code>const jsonSchema = { type: &quot;object&quot;, properties: { name: { type: &quot;string&quot; }, age: { type: &quot;number&quot; } }, required: [&quot;name&quot;] }; <p>const schema = z.fromJSONSchema(jsonSchema); </code></pre></p> <h3>Implement <code>z.xor()</code></h3> <pre lang="typescript"><code>const schema = z.xor( z.object({ type: &quot;user&quot;, name: z.string() }), z.object({ type: &quot;admin&quot;, role: z.string() }) ); // Exactly one of the schemas must match </code></pre> <h3>Implement <code>z.looseRecord()</code></h3> <pre lang="typescript"><code>const schema = z.looseRecord(z.string(), z.number()); // Allows additional properties beyond those defined </code></pre> <h2>Commits:</h2> <ul> <li>af49c084f66339110d00e37ff71dc7b3b9f2b7ef Update docs for JSON Schema conversion of <code>z.undefined()</code> (<a href="https://redirect.github.com/colinhacks/zod/issues/5504">#5504</a>)</li> <li>767f320318986e422f524b939f1a7174544fda2e Add <code>.toJSONSchema()</code> method (<a href="https://redirect.github.com/colinhacks/zod/issues/5477">#5477</a>)</li> <li>e17dcb63573397063e87d7c7fe10a5a78968181a Add <code>z.fromJSONSchema()</code>, <code>z.looseRecord()</code>, <code>z.xor()</code> (<a href="https://redirect.github.com/colinhacks/zod/issues/5534">#5534</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/colinhacks/zod/commit/dcef9734f55fc1c8e73795a2be80c60fa7a4a568"><code>dcef973</code></a> v4.2.0</li> <li><a href="https://github.com/colinhacks/zod/commit/e17dcb63573397063e87d7c7fe10a5a78968181a"><code>e17dcb6</code></a> Add <code>z.fromJSONSchema()</code>, <code>z.looseRecord()</code>, <code>z.xor()</code> (<a href="https://redirect.github.com/colinhacks/zod/issues/5534">#5534</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/d632df3c135151639e8d013b383d365573eca64a"><code>d632df3</code></a> Update next</li> <li><a href="https://github.com/colinhacks/zod/commit/767f320318986e422f524b939f1a7174544fda2e"><code>767f320</code></a> Add <code>.toJSONSchema()</code> method (<a href="https://redirect.github.com/colinhacks/zod/issues/5477">#5477</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/325a70194b924e079c350565b442b6011618377f"><code>325a701</code></a> Add <code>pullfrog.yml</code> workflow</li> <li><a href="https://github.com/colinhacks/zod/commit/497272785a2b34fe32ca6211278970225ad87be2"><code>4972727</code></a> Update Next.js and React Flight RCE advisory (<a href="https://redirect.github.com/colinhacks/zod/issues/5515">#5515</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/af49c084f66339110d00e37ff71dc7b3b9f2b7ef"><code>af49c08</code></a> Update docs for JSON Schema conversion of <code>z.undefined()</code> (<a href="https://redirect.github.com/colinhacks/zod/issues/5504">#5504</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/fb66ee123fb370a2f6fd45c622cdb00fdfacb2fd"><code>fb66ee1</code></a> fix(mini): export ZodMiniJSONSchema types to prevent TS4023 (<a href="https://redirect.github.com/colinhacks/zod/issues/5511">#5511</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/6e968a3b49cbcb3bffc30c68634e80168e8f2a2e"><code>6e968a3</code></a> Add convex-helpers to the ecosystem docs (<a href="https://redirect.github.com/colinhacks/zod/issues/5470">#5470</a>)</li> <li><a href="https://github.com/colinhacks/zod/commit/d224363839bf487da46e342f8636e650946334c4"><code>d224363</code></a> test: add result verification to test cases (<a href="https://redirect.github.com/colinhacks/zod/issues/5473">#5473</a>)</li> <li>Additional commits viewable in <a href="https://github.com/colinhacks/zod/compare/v4.1.13...v4.2.0">compare view</a></li> </ul> </details> <br /> 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 <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>
MrUnknownDE added the javascriptdependenciesjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependencies labels 2026-04-05 17:12:29 +02:00
Sign in to join this conversation.
No Label dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#484