dependabot[bot] opened a new pull request, #14903:
URL: https://github.com/apache/iceberg/pull/14903

   Bumps 
[datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator)
 from 0.43.1 to 0.46.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/koxudaxi/datamodel-code-generator/releases";>datamodel-code-generator's
 releases</a>.</em></p>
   <blockquote>
   <h2>0.46.0</h2>
   <h2>Breaking Changes</h2>
   <h3>Python Version</h3>
   <ul>
   <li>Python 3.9 support dropped - Minimum Python version is now 3.10+ (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2692";>#2692</a>)</li>
   </ul>
   <h3>Default Behavior Changes</h3>
   <ul>
   <li>Native type hints by default - 
<code>list[...]</code>/<code>dict[...]</code> are now used instead of 
<code>List[...]</code>/<code>Dict[...]</code>. Use 
<code>--no-use-standard-collections</code> to restore previous behavior (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2699";>#2699</a>)</li>
   <li>Union operator by default - <code>X | Y</code> syntax is now used 
instead of <code>Union[X, Y]</code>/<code>Optional[X]</code>. Use 
<code>--no-use-union-operator</code> to restore previous behavior (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2703";>#2703</a>)</li>
   </ul>
   <h3>Code Generation Changes</h3>
   <ul>
   <li>Nullable required fields no longer have default values (Pydantic v2) - 
Fields marked as both <code>required</code> and <code>nullable</code> no longer 
get <code>= None</code>. The <code>pydantic_v2/BaseModel.jinja2</code> template 
logic was updated to only assign default values when 
<code>field.required</code> is false. This fixes incorrect behavior where 
required fields could be omitted (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2520";>#2520</a>)</li>
   <li>TypedDict respects enum_field_as_literal setting - TypedDict output now 
respects user's <code>--enum-field-as-literal</code> setting instead of forcing 
<code>all</code>. Added new <code>--enum-field-as-literal none</code> option 
(<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2691";>#2691</a>)</li>
   <li>prefixItems now generates tuple types - JSON Schema 
<code>prefixItems</code> with matching 
<code>minItems</code>/<code>maxItems</code> and no <code>items</code> now 
generates <code>tuple[T1, T2, ...]</code> instead of <code>list[...]</code>. 
This applies when the array has a fixed length with heterogeneous types (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2537";>#2537</a>)</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>feat: Add --use-status-code-in-response-name option by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2688";>koxudaxi/datamodel-code-generator#2688</a></li>
   <li>feat: Add support for number type with time-delta format by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2689";>koxudaxi/datamodel-code-generator#2689</a></li>
   <li>docs: Add CHANGELOG.md with auto-update workflow by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2690";>koxudaxi/datamodel-code-generator#2690</a></li>
   <li>feat: Add --enum-field-as-literal none option and respect user settings 
for TypedDict by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2691";>koxudaxi/datamodel-code-generator#2691</a></li>
   <li>docs: Clarify default encoding behavior in documentation by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2693";>koxudaxi/datamodel-code-generator#2693</a></li>
   <li>ci: Improve CLI docs generation workflow by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2695";>koxudaxi/datamodel-code-generator#2695</a></li>
   <li>feat(docs): Group CLI examples by schema type with tabs by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2696";>koxudaxi/datamodel-code-generator#2696</a></li>
   <li>feat: Add --ignore-enum-constraints option by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2694";>koxudaxi/datamodel-code-generator#2694</a></li>
   <li>Add zensical.toml configuration by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2697";>koxudaxi/datamodel-code-generator#2697</a></li>
   <li>fix: Make docs generation deterministic by sorting glob results and dict 
iterations by <a href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> 
in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2698";>koxudaxi/datamodel-code-generator#2698</a></li>
   <li>feat: Drop Python 3.9 support, require Python 3.10+  by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2692";>koxudaxi/datamodel-code-generator#2692</a></li>
   <li>fix: Update zensical dependency version to 0.0.13 for Python 3.10+ by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2700";>koxudaxi/datamodel-code-generator#2700</a></li>
   <li>feat: Default to native list/dict type hints instead of typing.List/Dict 
by <a href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2699";>koxudaxi/datamodel-code-generator#2699</a></li>
   <li>fix: Remove unnecessary pass statement when nested class exists by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2704";>koxudaxi/datamodel-code-generator#2704</a></li>
   <li>build: Replace pre-commit with prek by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2702";>koxudaxi/datamodel-code-generator#2702</a></li>
   <li>fix: Improve state management in Imports, DataType, and DataModel 
classes by <a href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in 
<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2705";>koxudaxi/datamodel-code-generator#2705</a></li>
   <li>feat: Default to union operator for type hints by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2703";>koxudaxi/datamodel-code-generator#2703</a></li>
   <li>fix: handle fork PRs in lint workflow by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2706";>koxudaxi/datamodel-code-generator#2706</a></li>
   <li>fix: handle fork PRs in readme and cli-docs workflows by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2707";>koxudaxi/datamodel-code-generator#2707</a></li>
   <li>Nullable required fields should not have default value by <a 
href="https://github.com/raymondbutcher";><code>@​raymondbutcher</code></a> in 
<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2520";>koxudaxi/datamodel-code-generator#2520</a></li>
   <li>Add support for prefixItems to emit tuples by <a 
href="https://github.com/saulshanabrook";><code>@​saulshanabrook</code></a> in 
<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2537";>koxudaxi/datamodel-code-generator#2537</a></li>
   <li>Remove unnecessary flags from --check test by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2708";>koxudaxi/datamodel-code-generator#2708</a></li>
   <li>fix: update expected files to use modern union type syntax (<code>str | 
None</code>) by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2709";>koxudaxi/datamodel-code-generator#2709</a></li>
   <li>fix: trigger docs build after changelog update by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2710";>koxudaxi/datamodel-code-generator#2710</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a 
href="https://github.com/raymondbutcher";><code>@​raymondbutcher</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2520";>koxudaxi/datamodel-code-generator#2520</a></li>
   <li><a 
href="https://github.com/saulshanabrook";><code>@​saulshanabrook</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2537";>koxudaxi/datamodel-code-generator#2537</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.45.0...0.46.0";>https://github.com/koxudaxi/datamodel-code-generator/compare/0.45.0...0.46.0</a></p>
   <h2>0.45.0</h2>
   <h2>What's Changed</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/koxudaxi/datamodel-code-generator/blob/main/CHANGELOG.md";>datamodel-code-generator's
 changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/koxudaxi/datamodel-code-generator/releases/tag/0.46.0";>0.46.0</a>
 - 2025-12-20</h2>
   <h2>Breaking Changes</h2>
   <h3>Python Version</h3>
   <ul>
   <li>Python 3.9 support dropped - Minimum Python version is now 3.10+ (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2692";>#2692</a>)</li>
   </ul>
   <h3>Default Behavior Changes</h3>
   <ul>
   <li>Native type hints by default - 
<code>list[...]</code>/<code>dict[...]</code> are now used instead of 
<code>List[...]</code>/<code>Dict[...]</code>. Use 
<code>--no-use-standard-collections</code> to restore previous behavior (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2699";>#2699</a>)</li>
   <li>Union operator by default - <code>X | Y</code> syntax is now used 
instead of <code>Union[X, Y]</code>/<code>Optional[X]</code>. Use 
<code>--no-use-union-operator</code> to restore previous behavior (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2703";>#2703</a>)</li>
   </ul>
   <h3>Code Generation Changes</h3>
   <ul>
   <li>Nullable required fields no longer have default values (Pydantic v2) - 
Fields marked as both <code>required</code> and <code>nullable</code> no longer 
get <code>= None</code>. The <code>pydantic_v2/BaseModel.jinja2</code> template 
logic was updated to only assign default values when 
<code>field.required</code> is false. This fixes incorrect behavior where 
required fields could be omitted (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2520";>#2520</a>)</li>
   <li>TypedDict respects enum_field_as_literal setting - TypedDict output now 
respects user's <code>--enum-field-as-literal</code> setting instead of forcing 
<code>all</code>. Added new <code>--enum-field-as-literal none</code> option 
(<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2691";>#2691</a>)</li>
   <li>prefixItems now generates tuple types - JSON Schema 
<code>prefixItems</code> with matching 
<code>minItems</code>/<code>maxItems</code> and no <code>items</code> now 
generates <code>tuple[T1, T2, ...]</code> instead of <code>list[...]</code>. 
This applies when the array has a fixed length with heterogeneous types (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2537";>#2537</a>)</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>feat: Add --use-status-code-in-response-name option by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2688";>koxudaxi/datamodel-code-generator#2688</a></li>
   <li>feat: Add support for number type with time-delta format by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2689";>koxudaxi/datamodel-code-generator#2689</a></li>
   <li>docs: Add CHANGELOG.md with auto-update workflow by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2690";>koxudaxi/datamodel-code-generator#2690</a></li>
   <li>feat: Add --enum-field-as-literal none option and respect user settings 
for TypedDict by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2691";>koxudaxi/datamodel-code-generator#2691</a></li>
   <li>docs: Clarify default encoding behavior in documentation by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2693";>koxudaxi/datamodel-code-generator#2693</a></li>
   <li>ci: Improve CLI docs generation workflow by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2695";>koxudaxi/datamodel-code-generator#2695</a></li>
   <li>feat(docs): Group CLI examples by schema type with tabs by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2696";>koxudaxi/datamodel-code-generator#2696</a></li>
   <li>feat: Add --ignore-enum-constraints option by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2694";>koxudaxi/datamodel-code-generator#2694</a></li>
   <li>Add zensical.toml configuration by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2697";>koxudaxi/datamodel-code-generator#2697</a></li>
   <li>fix: Make docs generation deterministic by sorting glob results and dict 
iterations by <a href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> 
in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2698";>koxudaxi/datamodel-code-generator#2698</a></li>
   <li>feat: Drop Python 3.9 support, require Python 3.10+  by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2692";>koxudaxi/datamodel-code-generator#2692</a></li>
   <li>fix: Update zensical dependency version to 0.0.13 for Python 3.10+ by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2700";>koxudaxi/datamodel-code-generator#2700</a></li>
   <li>feat: Default to native list/dict type hints instead of typing.List/Dict 
by <a href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2699";>koxudaxi/datamodel-code-generator#2699</a></li>
   <li>fix: Remove unnecessary pass statement when nested class exists by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2704";>koxudaxi/datamodel-code-generator#2704</a></li>
   <li>build: Replace pre-commit with prek by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2702";>koxudaxi/datamodel-code-generator#2702</a></li>
   <li>fix: Improve state management in Imports, DataType, and DataModel 
classes by <a href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in 
<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2705";>koxudaxi/datamodel-code-generator#2705</a></li>
   <li>feat: Default to union operator for type hints by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2703";>koxudaxi/datamodel-code-generator#2703</a></li>
   <li>fix: handle fork PRs in lint workflow by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2706";>koxudaxi/datamodel-code-generator#2706</a></li>
   <li>fix: handle fork PRs in readme and cli-docs workflows by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2707";>koxudaxi/datamodel-code-generator#2707</a></li>
   <li>Nullable required fields should not have default value by <a 
href="https://github.com/raymondbutcher";><code>@​raymondbutcher</code></a> in 
<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2520";>koxudaxi/datamodel-code-generator#2520</a></li>
   <li>Add support for prefixItems to emit tuples by <a 
href="https://github.com/saulshanabrook";><code>@​saulshanabrook</code></a> in 
<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2537";>koxudaxi/datamodel-code-generator#2537</a></li>
   <li>Remove unnecessary flags from --check test by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2708";>koxudaxi/datamodel-code-generator#2708</a></li>
   <li>fix: update expected files to use modern union type syntax (<code>str | 
None</code>) by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2709";>koxudaxi/datamodel-code-generator#2709</a></li>
   <li>fix: trigger docs build after changelog update by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2710";>koxudaxi/datamodel-code-generator#2710</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a 
href="https://github.com/raymondbutcher";><code>@​raymondbutcher</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2520";>koxudaxi/datamodel-code-generator#2520</a></li>
   <li><a 
href="https://github.com/saulshanabrook";><code>@​saulshanabrook</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/2537";>koxudaxi/datamodel-code-generator#2537</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.45.0...0.46.0";>https://github.com/koxudaxi/datamodel-code-generator/compare/0.45.0...0.46.0</a></p>
   <hr />
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/95736ad38657fab0ae6f44d30344f0b66cd22365";><code>95736ad</code></a>
 fix: trigger docs build after changelog update (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2710";>#2710</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/fba47131026b4eaf590a0b7708b5f4e58f46ff99";><code>fba4713</code></a>
 fix: update type annotations to use modern syntax (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2709";>#2709</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/8ecc4582c47bd1afa292ba4f1db4652553ae9a61";><code>8ecc458</code></a>
 Remove unnecessary flags from --check test (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2708";>#2708</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/66769b18cdc44d54a7e6d8a336a772717ee79962";><code>66769b1</code></a>
 docs: update CLI reference documentation</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/930fa97a75952be15f985c2b54a759c5f5f87dac";><code>930fa97</code></a>
 fix: use modern type format in --check option documentation example</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/25e0f6a63cd445047881fcfec485c71dc1e14ad2";><code>25e0f6a</code></a>
 docs: update CLI reference documentation</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/6fefde7c282e72fc2cea430212bd2e7b37f60a03";><code>6fefde7</code></a>
 Add support for prefixItems to emit tuples (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2537";>#2537</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/4423a49d4c9bedc36214e84a7016aec1919df618";><code>4423a49</code></a>
 Nullable required fields should not have default value (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2520";>#2520</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/590e5686130c012498c2b50bff572c8003be79d5";><code>590e568</code></a>
 fix: handle fork PRs in readme and cli-docs workflows (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2707";>#2707</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/e52e1e0e355734e25caab67e2e8f57d357f3017c";><code>e52e1e0</code></a>
 fix: handle fork PRs in lint workflow (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/2706";>#2706</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.43.1...0.46.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=datamodel-code-generator&package-manager=pip&previous-version=0.43.1&new-version=0.46.0)](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>


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to