dependabot[bot] opened a new pull request, #18083: URL: https://github.com/apache/iceberg/pull/18083
Bumps [datamodel-code-generator](https://github.com/datamodel-code-generator/datamodel-code-generator) from 0.76.0 to 0.76.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/datamodel-code-generator/datamodel-code-generator/releases">datamodel-code-generator's releases</a>.</em></p> <blockquote> <h2>0.76.2</h2> <h2>Breaking Changes</h2> <p>These corrections change generated output or existing configuration behavior for the affected cases. Regenerate and review affected models before upgrading snapshots or downstream integrations.</p> <h3>Code Generation Changes</h3> <ul> <li><strong>Avro field defaults are now honored.</strong> Fields with schema defaults are no longer always treated as required; generated fields receive those defaults. Top-level <code>bytes</code> and <code>fixed</code> defaults become Python bytes using Avro's code-point mapping, including named fixed types. Review constructor requirements and default values. This release does not yet recursively decode nested bytes defaults. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>)</li> <li><strong>GraphQL operation roots are identified from the schema.</strong> Actual query, mutation, and subscription roots are omitted even when they have custom names; ordinary types named <code>Query</code> or <code>Mutation</code> are no longer excluded solely by name. References to omitted operation roots become <code>Any</code> instead of unresolved class names. Review imports of previously emitted root classes and affected annotations. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>)</li> <li><strong>Backend-specific fields render differently.</strong> Pydantic v2 dataclasses use factories for mutable defaults. Msgspec null fields retain <code>None</code> alongside <code>UnsetType</code>, and boolean enum values use supported non-literal types rather than boolean <code>Literal</code> annotations. TypedDict extra-item types now bring their required imports. Review generated annotations, default factories, and snapshots. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3840">#3840</a>)</li> <li><strong>Root collapsing and model reuse preserve more schema information.</strong> Root wrappers are retained where collapsing would lose container constraints or mishandle cyclic dictionary-key references. Field renaming retains existing source aliases, msgspec inherited fields retain unique wire aliases, and dataclass/msgspec constructor fields are reordered when necessary. Generated module contents and imports also change where reuse previously overwrote package initializers or lost module ownership. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3841">#3841</a>)</li> <li><strong>OpenAPI parameter overrides and discriminator mappings are corrected.</strong> Operation-level parameters override matching path-level parameters by name and location, including referenced parameters, rather than producing duplicates. Short discriminator mappings are recognized, and OpenAPI/AsyncAPI discriminator state is cleared between documents. Review parameter fields and discriminated-union output. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3843">#3843</a>)</li> <li><strong>External JSON Schema anchors take precedence over legacy shorthand pointers.</strong> A reference such as <code>other.json#name</code> resolves a matching anchor within that schema resource before falling back to the legacy <code>/name</code> pointer. Schemas that relied on the old pointer interpretation when an anchor also exists can resolve to a different definition. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3838">#3838</a>)</li> </ul> <h3>Configuration and Error Handling Changes</h3> <ul> <li><strong>Relative paths in <code>pyproject.toml</code> resolve from the configuration file's directory.</strong> This applies to input, output, custom headers/templates, comparison output, model metadata, local HTTP references, and lockfiles, including batch jobs. When invoking from another directory, adjust relative values or use absolute paths if you previously relied on the working directory. Explicit CLI paths retain their command-line interpretation. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> <li><strong>Msgspec CLI defaults are applied after configuration merging.</strong> Msgspec enables annotations when that setting is implicit, including when selected through configuration; an explicit <code>use-annotated = false</code> is respected. Implicit field constraints follow the final annotation setting. Review output if CLI, presets, and <code>pyproject.toml</code> previously supplied conflicting options. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> <li><strong>Invalid inputs produce more specific failures.</strong> Avro bytes/fixed defaults containing code points above 255 are rejected. Invalid special-field-name prefixes and references with multiple fragment delimiters are rejected explicitly. Directory references, directory file-output targets, unreadable custom headers, and custom-formatter import failures now produce generator <code>Error</code> diagnostics rather than leaking the previous lower-level exceptions. CLI configuration validation and input-decoding failures report concise errors. Update exception handlers or exact-error assertions where applicable. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3838">#3838</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> </ul> <h2>Compatibility Notes</h2> <ul> <li>Explicit default HTTP/HTTPS ports are normalized in remote-lock URL handling; review persisted lockfile comparisons if they distinguish <code>:80</code> or <code>:443</code> from an omitted port. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3844">#3844</a>)</li> <li>Generation temporarily raises the process-wide young-generation garbage-collection threshold and restores it when the outermost generation finishes. Existing disabled-GC state is respected. Hosts inspecting GC thresholds during generation will observe this temporary change. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3848">#3848</a>)</li> </ul> <h2>What's Changed</h2> <ul> <li>Harden JSON Schema resolution by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3838">datamodel-code-generator/datamodel-code-generator#3838</a></li> <li>Preserve reference naming invariants by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3839">datamodel-code-generator/datamodel-code-generator#3839</a></li> <li>Correct model backend output by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3840">datamodel-code-generator/datamodel-code-generator#3840</a></li> <li>Preserve parser model reuse by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3841">datamodel-code-generator/datamodel-code-generator#3841</a></li> <li>Correct input format semantics by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3842">datamodel-code-generator/datamodel-code-generator#3842</a></li> <li>Correct OpenAPI and AsyncAPI generation by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3843">datamodel-code-generator/datamodel-code-generator#3843</a></li> <li>Harden runtime edge cases by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3844">datamodel-code-generator/datamodel-code-generator#3844</a></li> <li>Harden CLI configuration and errors by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3845">datamodel-code-generator/datamodel-code-generator#3845</a></li> <li>Tune GC thresholds during generation by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3848">datamodel-code-generator/datamodel-code-generator#3848</a></li> <li>Speed up PyYAML document construction by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3849">datamodel-code-generator/datamodel-code-generator#3849</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/datamodel-code-generator/datamodel-code-generator/compare/0.76.1...0.76.2">https://github.com/datamodel-code-generator/datamodel-code-generator/compare/0.76.1...0.76.2</a></p> <h2>0.76.1</h2> <h2>Highlights</h2> <ul> <li>Parser source loading, run state, output-model capabilities, field-name policies, and input-model transport have been separated to clarify internal ownership. Compatibility imports and the public field-name resolver mapping are retained. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3818">#3818</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3820">#3820</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3821">#3821</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3822">#3822</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3823">#3823</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3824">#3824</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator /issues/3825">#3825</a>)</li> <li>Root-model collapsing tracks references incrementally, and the built-in formatter skips unnecessary string normalization. These optimizations retain the existing generated-output behavior. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3826">#3826</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3827">#3827</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3828">#3828</a>)</li> <li><code>x-enum-descriptions</code> now accepts null entries, allowing schemas with missing individual enum descriptions to generate successfully. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3835">#3835</a>)</li> </ul> <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/datamodel-code-generator/datamodel-code-generator/blob/main/CHANGELOG.md">datamodel-code-generator's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/releases/tag/0.76.2">0.76.2</a> - 2026-09-04</h2> <h2>Breaking Changes</h2> <p>These corrections change generated output or existing configuration behavior for the affected cases. Regenerate and review affected models before upgrading snapshots or downstream integrations.</p> <h3>Code Generation Changes</h3> <ul> <li><strong>Avro field defaults are now honored.</strong> Fields with schema defaults are no longer always treated as required; generated fields receive those defaults. Top-level <code>bytes</code> and <code>fixed</code> defaults become Python bytes using Avro's code-point mapping, including named fixed types. Review constructor requirements and default values. This release does not yet recursively decode nested bytes defaults. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>)</li> <li><strong>GraphQL operation roots are identified from the schema.</strong> Actual query, mutation, and subscription roots are omitted even when they have custom names; ordinary types named <code>Query</code> or <code>Mutation</code> are no longer excluded solely by name. References to omitted operation roots become <code>Any</code> instead of unresolved class names. Review imports of previously emitted root classes and affected annotations. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>)</li> <li><strong>Backend-specific fields render differently.</strong> Pydantic v2 dataclasses use factories for mutable defaults. Msgspec null fields retain <code>None</code> alongside <code>UnsetType</code>, and boolean enum values use supported non-literal types rather than boolean <code>Literal</code> annotations. TypedDict extra-item types now bring their required imports. Review generated annotations, default factories, and snapshots. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3840">#3840</a>)</li> <li><strong>Root collapsing and model reuse preserve more schema information.</strong> Root wrappers are retained where collapsing would lose container constraints or mishandle cyclic dictionary-key references. Field renaming retains existing source aliases, msgspec inherited fields retain unique wire aliases, and dataclass/msgspec constructor fields are reordered when necessary. Generated module contents and imports also change where reuse previously overwrote package initializers or lost module ownership. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3841">#3841</a>)</li> <li><strong>OpenAPI parameter overrides and discriminator mappings are corrected.</strong> Operation-level parameters override matching path-level parameters by name and location, including referenced parameters, rather than producing duplicates. Short discriminator mappings are recognized, and OpenAPI/AsyncAPI discriminator state is cleared between documents. Review parameter fields and discriminated-union output. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3843">#3843</a>)</li> <li><strong>External JSON Schema anchors take precedence over legacy shorthand pointers.</strong> A reference such as <code>other.json#name</code> resolves a matching anchor within that schema resource before falling back to the legacy <code>/name</code> pointer. Schemas that relied on the old pointer interpretation when an anchor also exists can resolve to a different definition. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3838">#3838</a>)</li> </ul> <h3>Configuration and Error Handling Changes</h3> <ul> <li><strong>Relative paths in <code>pyproject.toml</code> resolve from the configuration file's directory.</strong> This applies to input, output, custom headers/templates, comparison output, model metadata, local HTTP references, and lockfiles, including batch jobs. When invoking from another directory, adjust relative values or use absolute paths if you previously relied on the working directory. Explicit CLI paths retain their command-line interpretation. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> <li><strong>Msgspec CLI defaults are applied after configuration merging.</strong> Msgspec enables annotations when that setting is implicit, including when selected through configuration; an explicit <code>use-annotated = false</code> is respected. Implicit field constraints follow the final annotation setting. Review output if CLI, presets, and <code>pyproject.toml</code> previously supplied conflicting options. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> <li><strong>Invalid inputs produce more specific failures.</strong> Avro bytes/fixed defaults containing code points above 255 are rejected. Invalid special-field-name prefixes and references with multiple fragment delimiters are rejected explicitly. Directory references, directory file-output targets, unreadable custom headers, and custom-formatter import failures now produce generator <code>Error</code> diagnostics rather than leaking the previous lower-level exceptions. CLI configuration validation and input-decoding failures report concise errors. Update exception handlers or exact-error assertions where applicable. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3838">#3838</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> </ul> <h2>Compatibility Notes</h2> <ul> <li>Explicit default HTTP/HTTPS ports are normalized in remote-lock URL handling; review persisted lockfile comparisons if they distinguish <code>:80</code> or <code>:443</code> from an omitted port. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3844">#3844</a>)</li> <li>Generation temporarily raises the process-wide young-generation garbage-collection threshold and restores it when the outermost generation finishes. Existing disabled-GC state is respected. Hosts inspecting GC thresholds during generation will observe this temporary change. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3848">#3848</a>)</li> </ul> <h2>What's Changed</h2> <ul> <li>Harden JSON Schema resolution by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3838">datamodel-code-generator/datamodel-code-generator#3838</a></li> <li>Preserve reference naming invariants by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3839">datamodel-code-generator/datamodel-code-generator#3839</a></li> <li>Correct model backend output by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3840">datamodel-code-generator/datamodel-code-generator#3840</a></li> <li>Preserve parser model reuse by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3841">datamodel-code-generator/datamodel-code-generator#3841</a></li> <li>Correct input format semantics by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3842">datamodel-code-generator/datamodel-code-generator#3842</a></li> <li>Correct OpenAPI and AsyncAPI generation by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3843">datamodel-code-generator/datamodel-code-generator#3843</a></li> <li>Harden runtime edge cases by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3844">datamodel-code-generator/datamodel-code-generator#3844</a></li> <li>Harden CLI configuration and errors by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3845">datamodel-code-generator/datamodel-code-generator#3845</a></li> <li>Tune GC thresholds during generation by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3848">datamodel-code-generator/datamodel-code-generator#3848</a></li> <li>Speed up PyYAML document construction by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a> in <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/pull/3849">datamodel-code-generator/datamodel-code-generator#3849</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/datamodel-code-generator/datamodel-code-generator/compare/0.76.1...0.76.2">https://github.com/datamodel-code-generator/datamodel-code-generator/compare/0.76.1...0.76.2</a></p> <hr /> <h2><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/releases/tag/0.76.1">0.76.1</a> - 2026-09-02</h2> <h2>Highlights</h2> <ul> <li>Parser source loading, run state, output-model capabilities, field-name policies, and input-model transport have been separated to clarify internal ownership. Compatibility imports and the public field-name resolver mapping are retained. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3818">#3818</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3820">#3820</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3821">#3821</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3822">#3822</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3823">#3823</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3824">#3824</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator /issues/3825">#3825</a>)</li> <li>Root-model collapsing tracks references incrementally, and the built-in formatter skips unnecessary string normalization. These optimizations retain the existing generated-output behavior. (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3826">#3826</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3827">#3827</a>, <a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3828">#3828</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/113865e5c16b5e67f92f1d32eefc275b6d63ee7b"><code>113865e</code></a> Skip unnecessary release analysis (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3853">#3853</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/278b85f9588baa97958236e8f9f40614c575a912"><code>278b85f</code></a> Bump the github-actions group with 4 updates (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3851">#3851</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/f42bfbebb5e4b6306d062679fe101ed95019360c"><code>f42bfbe</code></a> Speed up PyYAML document construction (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3849">#3849</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/f5a9e0d156ccbbf2c28fc57afbcbdc82e3d09f19"><code>f5a9e0d</code></a> Tune GC thresholds during generation (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3848">#3848</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/ee31a2ef61e98bd514d6adb7132865a2bc9f6f0d"><code>ee31a2e</code></a> Harden CLI configuration and errors (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3845">#3845</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/4f844058d154428abf1e043e0cfd06652f4fdae6"><code>4f84405</code></a> Harden runtime edge cases (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3844">#3844</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/61c2eef92a32abd2d0ee94d410cc028811e1dee1"><code>61c2eef</code></a> Correct OpenAPI and AsyncAPI generation (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3843">#3843</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/4cd5607194eb73b0e8a8748502873968e292252f"><code>4cd5607</code></a> Correct input format semantics (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3842">#3842</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/ecdada71f06b3884fbfa4d71d9fa54de8a933a9d"><code>ecdada7</code></a> Preserve parser model reuse (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3841">#3841</a>)</li> <li><a href="https://github.com/datamodel-code-generator/datamodel-code-generator/commit/5644f8182d5393033ebd62419decaac5fcdced9e"><code>5644f81</code></a> Correct model backend output (<a href="https://redirect.github.com/datamodel-code-generator/datamodel-code-generator/issues/3840">#3840</a>)</li> <li>Additional commits viewable in <a href="https://github.com/datamodel-code-generator/datamodel-code-generator/compare/0.76.0...0.76.2">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
