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

   Bumps 
[datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator)
 from 0.57.0 to 0.59.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.59.0</h2>
   <h2>Breaking Changes</h2>
   <h3>Code Generation Changes</h3>
   <ul>
   <li>Pattern key constraints now include <code>propertyNames</code> 
constraints - When a JSON Schema uses both <code>patternProperties</code> and 
<code>propertyNames</code>, the generated dict key type now merges constraints 
from both. Previously, <code>propertyNames</code> constraints such as 
<code>minLength</code>, <code>maxLength</code>, and <code>$ref</code> could be 
ignored when <code>patternProperties</code> was present. Regenerated code may 
produce stricter key types and reject data that was previously accepted by 
less-strict generated models. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3192";>#3192</a>)</li>
   <li>Typed <code>additionalProperties</code> now generates a typed 
<code>__pydantic_extra__</code> field for Pydantic v2 models - When a JSON 
Schema defines schema-valued <code>additionalProperties</code>, generated 
Pydantic v2 models now include <code>__pydantic_extra__: dict[str, 
&lt;type&gt;]</code>. Previously, these models only allowed extra fields 
without typing their values. This changes generated output and makes Pydantic 
validate extra field values at runtime. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3205";>#3205</a>)</li>
   <li>Dataclass field ordering with <code>--use-annotated</code> may change - 
Dataclass field assignment detection now accounts for constraints moved into 
<code>Annotated[...]</code>. Generated dataclass fields may be reordered so 
fields without defaults come before fields with defaults. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3203";>#3203</a>)</li>
   </ul>
   <h3>Default Behavior Changes</h3>
   <ul>
   <li>Auto-detection (<code>--input-file-type auto</code>) now recognizes 
AsyncAPI, Avro, and Protocol Buffers inputs - Inputs that previously fell back 
to JSON/YAML handling or failed detection may now be detected as one of these 
formats. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3194";>#3194</a>,
 <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3195";>#3195</a>,
 <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3198";>#3198</a>)</li>
   </ul>
   <h3>Compatibility Notes</h3>
   <ul>
   <li>The temporary Pydantic minimum-version change from 
<code>pydantic&gt;=2,&lt;3</code> to <code>pydantic&gt;=2.6,&lt;3</code> was 
reverted before this release. The final dependency range for Python &lt; 3.14 
remains <code>pydantic&gt;=2,&lt;3</code>. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3210";>#3210</a>,
 <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3215";>#3215</a>)</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>Update CHANGELOG for 0.58.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/3187";>koxudaxi/datamodel-code-generator#3187</a></li>
   <li>Add deprecation registry and docs by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3188";>koxudaxi/datamodel-code-generator#3188</a></li>
   <li>Add XML Schema parser by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3183";>koxudaxi/datamodel-code-generator#3183</a></li>
   <li>Fix null-only type arrays by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3189";>koxudaxi/datamodel-code-generator#3189</a></li>
   <li>Fix contains default minContains by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3190";>koxudaxi/datamodel-code-generator#3190</a></li>
   <li>Sync generated docs 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/3193";>koxudaxi/datamodel-code-generator#3193</a></li>
   <li>Fix fixed prefixItems tuples by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3191";>koxudaxi/datamodel-code-generator#3191</a></li>
   <li>Fix pattern key constraints by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3192";>koxudaxi/datamodel-code-generator#3192</a></li>
   <li>Fix propertyNames ref constraints by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3197";>koxudaxi/datamodel-code-generator#3197</a></li>
   <li>Add Apache Avro schema input type by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3195";>koxudaxi/datamodel-code-generator#3195</a></li>
   <li>Refactor JSON Schema parser helpers by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3199";>koxudaxi/datamodel-code-generator#3199</a></li>
   <li>Document Avro input support by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3200";>koxudaxi/datamodel-code-generator#3200</a></li>
   <li>Use expected files for schema e2e tests by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3201";>koxudaxi/datamodel-code-generator#3201</a></li>
   <li>Add Protocol Buffers input support by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3198";>koxudaxi/datamodel-code-generator#3198</a></li>
   <li>Add AsyncAPI input file type by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3194";>koxudaxi/datamodel-code-generator#3194</a></li>
   <li>Sync generated docs 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/3204";>koxudaxi/datamodel-code-generator#3204</a></li>
   <li>Fix dataclass field ordering by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3203";>koxudaxi/datamodel-code-generator#3203</a></li>
   <li>Add generated header marker option by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3208";>koxudaxi/datamodel-code-generator#3208</a></li>
   <li>Fix path-absolute local refs by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3207";>koxudaxi/datamodel-code-generator#3207</a></li>
   <li>Fix typed additionalProperties extras by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3205";>koxudaxi/datamodel-code-generator#3205</a></li>
   <li>Require Pydantic 2.6 by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3210";>koxudaxi/datamodel-code-generator#3210</a></li>
   <li>Add experimental feature list by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3211";>koxudaxi/datamodel-code-generator#3211</a></li>
   <li>Fix scoped type-overrides changing more fields then intended by <a 
href="https://github.com/supervirus";><code>@​supervirus</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3213";>koxudaxi/datamodel-code-generator#3213</a></li>
   <li>Copy mapped data types by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3214";>koxudaxi/datamodel-code-generator#3214</a></li>
   <li>Support Pydantic 2.5 by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3215";>koxudaxi/datamodel-code-generator#3215</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/supervirus";><code>@​supervirus</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3213";>koxudaxi/datamodel-code-generator#3213</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.58.0...0.59.0";>https://github.com/koxudaxi/datamodel-code-generator/compare/0.58.0...0.59.0</a></p>
   <h2>0.58.0</h2>
   <h2>New Features</h2>
   <ul>
   <li>Added <code>--serialization-aliases</code> for Pydantic v2 serialization 
alias mapping. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3146";>#3146</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.59.0";>0.59.0</a>
 - 2026-05-29</h2>
   <h2>Breaking Changes</h2>
   <h3>Code Generation Changes</h3>
   <ul>
   <li>Pattern key constraints now include <code>propertyNames</code> 
constraints - When a JSON Schema uses both <code>patternProperties</code> and 
<code>propertyNames</code>, the generated dict key type now merges constraints 
from both. Previously, <code>propertyNames</code> constraints such as 
<code>minLength</code>, <code>maxLength</code>, and <code>$ref</code> could be 
ignored when <code>patternProperties</code> was present. Regenerated code may 
produce stricter key types and reject data that was previously accepted by 
less-strict generated models. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3192";>#3192</a>)</li>
   <li>Typed <code>additionalProperties</code> now generates a typed 
<code>__pydantic_extra__</code> field for Pydantic v2 models - When a JSON 
Schema defines schema-valued <code>additionalProperties</code>, generated 
Pydantic v2 models now include <code>__pydantic_extra__: dict[str, 
&lt;type&gt;]</code>. Previously, these models only allowed extra fields 
without typing their values. This changes generated output and makes Pydantic 
validate extra field values at runtime. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3205";>#3205</a>)</li>
   <li>Dataclass field ordering with <code>--use-annotated</code> may change - 
Dataclass field assignment detection now accounts for constraints moved into 
<code>Annotated[...]</code>. Generated dataclass fields may be reordered so 
fields without defaults come before fields with defaults. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3203";>#3203</a>)</li>
   </ul>
   <h3>Default Behavior Changes</h3>
   <ul>
   <li>Auto-detection (<code>--input-file-type auto</code>) now recognizes 
AsyncAPI, Avro, and Protocol Buffers inputs - Inputs that previously fell back 
to JSON/YAML handling or failed detection may now be detected as one of these 
formats. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3194";>#3194</a>,
 <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3195";>#3195</a>,
 <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3198";>#3198</a>)</li>
   </ul>
   <h3>Compatibility Notes</h3>
   <ul>
   <li>The temporary Pydantic minimum-version change from 
<code>pydantic&gt;=2,&lt;3</code> to <code>pydantic&gt;=2.6,&lt;3</code> was 
reverted before this release. The final dependency range for Python &lt; 3.14 
remains <code>pydantic&gt;=2,&lt;3</code>. (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3210";>#3210</a>,
 <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3215";>#3215</a>)</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>Update CHANGELOG for 0.58.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/3187";>koxudaxi/datamodel-code-generator#3187</a></li>
   <li>Add deprecation registry and docs by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3188";>koxudaxi/datamodel-code-generator#3188</a></li>
   <li>Add XML Schema parser by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3183";>koxudaxi/datamodel-code-generator#3183</a></li>
   <li>Fix null-only type arrays by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3189";>koxudaxi/datamodel-code-generator#3189</a></li>
   <li>Fix contains default minContains by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3190";>koxudaxi/datamodel-code-generator#3190</a></li>
   <li>Sync generated docs 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/3193";>koxudaxi/datamodel-code-generator#3193</a></li>
   <li>Fix fixed prefixItems tuples by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3191";>koxudaxi/datamodel-code-generator#3191</a></li>
   <li>Fix pattern key constraints by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3192";>koxudaxi/datamodel-code-generator#3192</a></li>
   <li>Fix propertyNames ref constraints by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3197";>koxudaxi/datamodel-code-generator#3197</a></li>
   <li>Add Apache Avro schema input type by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3195";>koxudaxi/datamodel-code-generator#3195</a></li>
   <li>Refactor JSON Schema parser helpers by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3199";>koxudaxi/datamodel-code-generator#3199</a></li>
   <li>Document Avro input support by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3200";>koxudaxi/datamodel-code-generator#3200</a></li>
   <li>Use expected files for schema e2e tests by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3201";>koxudaxi/datamodel-code-generator#3201</a></li>
   <li>Add Protocol Buffers input support by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3198";>koxudaxi/datamodel-code-generator#3198</a></li>
   <li>Add AsyncAPI input file type by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3194";>koxudaxi/datamodel-code-generator#3194</a></li>
   <li>Sync generated docs 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/3204";>koxudaxi/datamodel-code-generator#3204</a></li>
   <li>Fix dataclass field ordering by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3203";>koxudaxi/datamodel-code-generator#3203</a></li>
   <li>Add generated header marker option by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3208";>koxudaxi/datamodel-code-generator#3208</a></li>
   <li>Fix path-absolute local refs by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3207";>koxudaxi/datamodel-code-generator#3207</a></li>
   <li>Fix typed additionalProperties extras by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3205";>koxudaxi/datamodel-code-generator#3205</a></li>
   <li>Require Pydantic 2.6 by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3210";>koxudaxi/datamodel-code-generator#3210</a></li>
   <li>Add experimental feature list by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3211";>koxudaxi/datamodel-code-generator#3211</a></li>
   <li>Fix scoped type-overrides changing more fields then intended by <a 
href="https://github.com/supervirus";><code>@​supervirus</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3213";>koxudaxi/datamodel-code-generator#3213</a></li>
   <li>Copy mapped data types by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3214";>koxudaxi/datamodel-code-generator#3214</a></li>
   <li>Support Pydantic 2.5 by <a 
href="https://github.com/koxudaxi";><code>@​koxudaxi</code></a> in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3215";>koxudaxi/datamodel-code-generator#3215</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/supervirus";><code>@​supervirus</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/pull/3213";>koxudaxi/datamodel-code-generator#3213</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.58.0...0.59.0";>https://github.com/koxudaxi/datamodel-code-generator/compare/0.58.0...0.59.0</a></p>
   <hr />
   <h2><a 
href="https://github.com/koxudaxi/datamodel-code-generator/releases/tag/0.58.0";>0.58.0</a>
 - 2026-05-25</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/4278b9c215dceef604573ab62fe0d51343670d07";><code>4278b9c</code></a>
 Support Pydantic 2.5 (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3215";>#3215</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/05383f2785ce6850d9a4f9c2e00a72caec989912";><code>05383f2</code></a>
 Copy mapped data types (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3214";>#3214</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/43f80a3a8c581ef2feaffcd025b4efdc2e7f3c2a";><code>43f80a3</code></a>
 Fix scoped type-overrides changing more fields then intended (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3213";>#3213</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/5b21af639c477f50af641728bcc15904035c8684";><code>5b21af6</code></a>
 Add experimental feature list (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3211";>#3211</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/a5a9da9d3c22a6d92c1ffd9dbc90697f665e6f17";><code>a5a9da9</code></a>
 Require Pydantic 2.6 (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3210";>#3210</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/8f9c1f0f63d8f2ea9eba587218b37d93e45065ee";><code>8f9c1f0</code></a>
 Fix typed additionalProperties extras (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3205";>#3205</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/145477ca9a0b947bf1f6cd4c58700658ca3fd536";><code>145477c</code></a>
 Fix path-absolute local refs (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3207";>#3207</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/9a06eb2ec339f91571a5a7f56c00b0a9de6b5722";><code>9a06eb2</code></a>
 Add generated header marker option (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3208";>#3208</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/a29745c988ee83dc428592fef0e4aafcfc3259e7";><code>a29745c</code></a>
 Fix dataclass field ordering (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3203";>#3203</a>)</li>
   <li><a 
href="https://github.com/koxudaxi/datamodel-code-generator/commit/ed3258a46bd5c1e44abfcd6ebbf4955701828fa0";><code>ed3258a</code></a>
 docs: sync generated docs (<a 
href="https://redirect.github.com/koxudaxi/datamodel-code-generator/issues/3204";>#3204</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/koxudaxi/datamodel-code-generator/compare/0.57.0...0.59.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.57.0&new-version=0.59.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