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

   Bumps 
[datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator)
 from 0.68.1 to 0.71.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.71.0</h2>
   <h2>Breaking Changes</h2>
   <h3>Default Behavior Changes</h3>
   <ul>
   <li>New warning emitted by default for unresolved local <code>$ref</code> 
pointers - By default, an unresolved local <code>$ref</code> JSON pointer now 
emits a new <code>DanglingRefWarning</code> and generates a fallback 
<code>Any</code> model. Previously such refs resolved to a silent fallback, and 
some cases (e.g., out-of-range JSON pointer array indices) raised a hard error. 
Schemas that previously generated cleanly can now produce warnings, which 
breaks workflows that treat warnings as errors (e.g., <code>python -W 
error</code>). Use <code>--strict-refs</code> to fail on unresolved pointers 
instead, or <code>--disable-warnings</code> to silence them (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3639";>#3639</a>)</li>
   </ul>
   <h3>Error Handling Changes</h3>
   <ul>
   <li><code>$ref</code> to a non-dict file now raises 
<code>InvalidFileFormatError</code> instead of <code>TypeError</code> - 
Resolving a <code>$ref</code> to a JSON/YAML file whose top-level value is not 
a mapping (e.g., a list) now raises 
<code>datamodel_code_generator.InvalidFileFormatError</code> (a subclass of 
<code>Error</code>/<code>Exception</code>) rather than the built-in 
<code>TypeError</code>. Programmatic callers that catch <code>TypeError</code> 
around <code>generate()</code> must catch <code>InvalidFileFormatError</code> 
(or <code>Error</code>) instead (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3639";>#3639</a>)</li>
   <li>Malformed-input diagnostics reworded - Malformed inputs that previously 
surfaced an uncaught traceback now emit a concise message such as <code>Invalid 
file format for &lt;type&gt; at &lt;source&gt;: ...</code>, and the 
missing-file message changed from <code>File not found</code> to <code>File not 
found: &lt;path&gt;</code>. Tooling that matches on the exact previous strings 
needs updating (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3639";>#3639</a>)</li>
   <li>Generation now aborts when output paths would overwrite inputs or 
collide - A new path-conflict validation runs before generation in both the 
<code>generate()</code> Python API and the CLI. Invocations that previously 
succeeded now raise an <code>Error</code> (CLI exits with an error code) in 
these cases: the output path resolves to an existing input file, the 
<code>--emit-model-metadata</code> path resolves to an existing input file, or 
the output and model-metadata paths resolve to the same file. Symlinks and 
hardlinks are resolved before the comparison. Workflows that intentionally 
wrote output over an input path, or that pointed the model-metadata artifact at 
the same path as the output, will now fail with one of:</li>
   </ul>
   <pre lang="text"><code>Output path must not overwrite an input path: 
&lt;path&gt;
   Model metadata path must not overwrite an input path: &lt;path&gt;
   Output and model metadata paths must be different: &lt;path&gt;
   </code></pre>
   <p>(<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3647";>#3647</a>)</p>
   <h2>What's Changed</h2>
   <ul>
   <li>Update CHANGELOG for 0.70.0 by <a 
href="https://github.com/dcg-generated-docs";><code>@​dcg-generated-docs</code></a>[bot]
 in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3619";>koxudaxi/datamodel-code-generator#3619</a></li>
   <li>Decouple RootModel dependency ordering by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3620";>koxudaxi/datamodel-code-generator#3620</a></li>
   <li>Improve README and docs homepage links by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3624";>koxudaxi/datamodel-code-generator#3624</a></li>
   <li>Update release benchmark data by <a 
href="https://github.com/dcg-generated-docs";><code>@​dcg-generated-docs</code></a>[bot]
 in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3625";>koxudaxi/datamodel-code-generator#3625</a></li>
   <li>Move discriminator policies to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3621";>koxudaxi/datamodel-code-generator#3621</a></li>
   <li>Invalidate generation facts for every list mutation by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3622";>koxudaxi/datamodel-code-generator#3622</a></li>
   <li>Document package manager installation options by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3629";>koxudaxi/datamodel-code-generator#3629</a></li>
   <li>Move dict-key dependency policy to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3626";>koxudaxi/datamodel-code-generator#3626</a></li>
   <li>Decouple parser model behavior helpers by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3632";>koxudaxi/datamodel-code-generator#3632</a></li>
   <li>Share model constraints across output backends by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3630";>koxudaxi/datamodel-code-generator#3630</a></li>
   <li>Move Pydantic type rendering to backend by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3627";>koxudaxi/datamodel-code-generator#3627</a></li>
   <li>Move dataclass ordering policies to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3628";>koxudaxi/datamodel-code-generator#3628</a></li>
   <li>Move template reference metadata to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3631";>koxudaxi/datamodel-code-generator#3631</a></li>
   <li>Declare output model construction capabilities by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3623";>koxudaxi/datamodel-code-generator#3623</a></li>
   <li>Fix payload runtime validation exclusions by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3635";>koxudaxi/datamodel-code-generator#3635</a></li>
   <li>Cover output backends across input formats by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3636";>koxudaxi/datamodel-code-generator#3636</a></li>
   <li>Track large schema memory by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3637";>koxudaxi/datamodel-code-generator#3637</a></li>
   <li>Reuse remote schema connections by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3638";>koxudaxi/datamodel-code-generator#3638</a></li>
   <li>Improve malformed input diagnostics by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3639";>koxudaxi/datamodel-code-generator#3639</a></li>
   <li>Bump setuptools from 82.0.1 to 83.0.0 by <a 
href="https://github.com/dependabot";><code>@​dependabot</code></a>[bot] in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3633";>koxudaxi/datamodel-code-generator#3633</a></li>
   <li>Update project usage examples by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3641";>koxudaxi/datamodel-code-generator#3641</a></li>
   <li>Fix vLLM usage link by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3642";>koxudaxi/datamodel-code-generator#3642</a></li>
   <li>Refresh custom template paths by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3640";>koxudaxi/datamodel-code-generator#3640</a></li>
   <li>List project maintainers by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3643";>koxudaxi/datamodel-code-generator#3643</a></li>
   <li>Preserve Unicode line separators by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3644";>koxudaxi/datamodel-code-generator#3644</a></li>
   <li>Fix TypedDict unique item sets by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3645";>koxudaxi/datamodel-code-generator#3645</a></li>
   <li>Defer msgspec forward references by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3646";>koxudaxi/datamodel-code-generator#3646</a></li>
   <li>Validate generation path conflicts by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3647";>koxudaxi/datamodel-code-generator#3647</a></li>
   <li>Enforce dynamic model cache size by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3648";>koxudaxi/datamodel-code-generator#3648</a></li>
   <li>Filter imported dynamic model classes by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3649";>koxudaxi/datamodel-code-generator#3649</a></li>
   </ul>
   <!-- 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.71.0";>0.71.0</a>
 - 2026-07-24</h2>
   <h2>Breaking Changes</h2>
   <h3>Default Behavior Changes</h3>
   <ul>
   <li>New warning emitted by default for unresolved local <code>$ref</code> 
pointers - By default, an unresolved local <code>$ref</code> JSON pointer now 
emits a new <code>DanglingRefWarning</code> and generates a fallback 
<code>Any</code> model. Previously such refs resolved to a silent fallback, and 
some cases (e.g., out-of-range JSON pointer array indices) raised a hard error. 
Schemas that previously generated cleanly can now produce warnings, which 
breaks workflows that treat warnings as errors (e.g., <code>python -W 
error</code>). Use <code>--strict-refs</code> to fail on unresolved pointers 
instead, or <code>--disable-warnings</code> to silence them (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3639";>#3639</a>)</li>
   </ul>
   <h3>Error Handling Changes</h3>
   <ul>
   <li><code>$ref</code> to a non-dict file now raises 
<code>InvalidFileFormatError</code> instead of <code>TypeError</code> - 
Resolving a <code>$ref</code> to a JSON/YAML file whose top-level value is not 
a mapping (e.g., a list) now raises 
<code>datamodel_code_generator.InvalidFileFormatError</code> (a subclass of 
<code>Error</code>/<code>Exception</code>) rather than the built-in 
<code>TypeError</code>. Programmatic callers that catch <code>TypeError</code> 
around <code>generate()</code> must catch <code>InvalidFileFormatError</code> 
(or <code>Error</code>) instead (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3639";>#3639</a>)</li>
   <li>Malformed-input diagnostics reworded - Malformed inputs that previously 
surfaced an uncaught traceback now emit a concise message such as <code>Invalid 
file format for &lt;type&gt; at &lt;source&gt;: ...</code>, and the 
missing-file message changed from <code>File not found</code> to <code>File not 
found: &lt;path&gt;</code>. Tooling that matches on the exact previous strings 
needs updating (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3639";>#3639</a>)</li>
   <li>Generation now aborts when output paths would overwrite inputs or 
collide - A new path-conflict validation runs before generation in both the 
<code>generate()</code> Python API and the CLI. Invocations that previously 
succeeded now raise an <code>Error</code> (CLI exits with an error code) in 
these cases: the output path resolves to an existing input file, the 
<code>--emit-model-metadata</code> path resolves to an existing input file, or 
the output and model-metadata paths resolve to the same file. Symlinks and 
hardlinks are resolved before the comparison. Workflows that intentionally 
wrote output over an input path, or that pointed the model-metadata artifact at 
the same path as the output, will now fail with one of:</li>
   </ul>
   <pre lang="text"><code>Output path must not overwrite an input path: 
&lt;path&gt;
   Model metadata path must not overwrite an input path: &lt;path&gt;
   Output and model metadata paths must be different: &lt;path&gt;
   </code></pre>
   <p>(<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3647";>#3647</a>)</p>
   <h2>What's Changed</h2>
   <ul>
   <li>Update CHANGELOG for 0.70.0 by <a 
href="https://github.com/dcg-generated-docs";><code>@​dcg-generated-docs</code></a>[bot]
 in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3619";>koxudaxi/datamodel-code-generator#3619</a></li>
   <li>Decouple RootModel dependency ordering by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3620";>koxudaxi/datamodel-code-generator#3620</a></li>
   <li>Improve README and docs homepage links by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3624";>koxudaxi/datamodel-code-generator#3624</a></li>
   <li>Update release benchmark data by <a 
href="https://github.com/dcg-generated-docs";><code>@​dcg-generated-docs</code></a>[bot]
 in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3625";>koxudaxi/datamodel-code-generator#3625</a></li>
   <li>Move discriminator policies to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3621";>koxudaxi/datamodel-code-generator#3621</a></li>
   <li>Invalidate generation facts for every list mutation by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3622";>koxudaxi/datamodel-code-generator#3622</a></li>
   <li>Document package manager installation options by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3629";>koxudaxi/datamodel-code-generator#3629</a></li>
   <li>Move dict-key dependency policy to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3626";>koxudaxi/datamodel-code-generator#3626</a></li>
   <li>Decouple parser model behavior helpers by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3632";>koxudaxi/datamodel-code-generator#3632</a></li>
   <li>Share model constraints across output backends by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3630";>koxudaxi/datamodel-code-generator#3630</a></li>
   <li>Move Pydantic type rendering to backend by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3627";>koxudaxi/datamodel-code-generator#3627</a></li>
   <li>Move dataclass ordering policies to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3628";>koxudaxi/datamodel-code-generator#3628</a></li>
   <li>Move template reference metadata to output models by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3631";>koxudaxi/datamodel-code-generator#3631</a></li>
   <li>Declare output model construction capabilities by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3623";>koxudaxi/datamodel-code-generator#3623</a></li>
   <li>Fix payload runtime validation exclusions by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3635";>koxudaxi/datamodel-code-generator#3635</a></li>
   <li>Cover output backends across input formats by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3636";>koxudaxi/datamodel-code-generator#3636</a></li>
   <li>Track large schema memory by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3637";>koxudaxi/datamodel-code-generator#3637</a></li>
   <li>Reuse remote schema connections by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3638";>koxudaxi/datamodel-code-generator#3638</a></li>
   <li>Improve malformed input diagnostics by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3639";>koxudaxi/datamodel-code-generator#3639</a></li>
   <li>Bump setuptools from 82.0.1 to 83.0.0 by <a 
href="https://github.com/dependabot";><code>@​dependabot</code></a>[bot] in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3633";>koxudaxi/datamodel-code-generator#3633</a></li>
   <li>Update project usage examples by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3641";>koxudaxi/datamodel-code-generator#3641</a></li>
   <li>Fix vLLM usage link by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3642";>koxudaxi/datamodel-code-generator#3642</a></li>
   <li>Refresh custom template paths by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3640";>koxudaxi/datamodel-code-generator#3640</a></li>
   <li>List project maintainers by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3643";>koxudaxi/datamodel-code-generator#3643</a></li>
   <li>Preserve Unicode line separators by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3644";>koxudaxi/datamodel-code-generator#3644</a></li>
   <li>Fix TypedDict unique item sets by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3645";>koxudaxi/datamodel-code-generator#3645</a></li>
   <li>Defer msgspec forward references by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3646";>koxudaxi/datamodel-code-generator#3646</a></li>
   <li>Validate generation path conflicts by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3647";>koxudaxi/datamodel-code-generator#3647</a></li>
   <li>Enforce dynamic model cache size by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3648";>koxudaxi/datamodel-code-generator#3648</a></li>
   <li>Filter imported dynamic model classes by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3649";>koxudaxi/datamodel-code-generator#3649</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/599d5dbb30ac1f847219e4cb056c07f333d727a0";><code>599d5db</code></a>
 Isolate generation state (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3652";>#3652</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/c4c64edd6a8d41ed202b92a3319dc817cc3bfe16";><code>c4c64ed</code></a>
 Defer nested model default factories (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3650";>#3650</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/353e1e53e0cfb24e4cfd777d0d4f74e27ab5f526";><code>353e1e5</code></a>
 Filter imported dynamic model classes (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3649";>#3649</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/722de638a06e9e58557a57a48001be7b7a844dad";><code>722de63</code></a>
 Enforce dynamic model cache size (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3648";>#3648</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/ba6187269902763d77d5a0c811b8563484cc301b";><code>ba61872</code></a>
 Validate generation path conflicts (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3647";>#3647</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/94a24f781b2cafe5dc4e72cd1962b350189ccd4e";><code>94a24f7</code></a>
 Defer msgspec forward references (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3646";>#3646</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/f3b97b7179c226f343a91d64e350fca770da9f02";><code>f3b97b7</code></a>
 Fix TypedDict unique item sets (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3645";>#3645</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/953535f0571c3bc785f1a92c56e7da47b8fb4b0b";><code>953535f</code></a>
 Preserve Unicode line separators (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3644";>#3644</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/b1c8355d8e8babae2d11596392b8a11284cc0cd8";><code>b1c8355</code></a>
 List project maintainers (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3643";>#3643</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/b6ea0cf4d6d35f6e691e00f2c43b548e611bed18";><code>b6ea0cf</code></a>
 Refresh custom template paths (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3640";>#3640</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.68.1...0.71.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.68.1&new-version=0.71.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 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