Update dependency pydantic to ~=2.12.5 #39

Open
Renovate wants to merge 1 commit from renovate/pydantic-2.x into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
pydantic (changelog) ~=2.11.0 -> ~=2.12.5 age confidence

Release Notes

pydantic/pydantic (pydantic)

v2.12.5

Compare Source

GitHub release

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing
the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #​12522.
  • Several updates to the documentation by @​Viicos.

v2.12.4

Compare Source

GitHub release

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method
of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release
will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that
should be used in most cases in place of serialize as any.

v2.12.3

Compare Source

GitHub release

What's Changed

This is the third 2.12 patch release, fixing issues related to the FieldInfo class, and reverting a change to the supported
after model validator function signatures.

  • Raise a warning when an invalid after model validator function signature is raised by @​Viicos in #​12414.
    Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided
    to emit a deprecation warning instead.
  • Add FieldInfo.asdict() method, improve documentation around FieldInfo by @​Viicos in #​12411.
    This also add back support for mutations on FieldInfo classes, that are reused as Annotated metadata. However, note that this is still
    not a supported pattern. Instead, please refer to the added example in the documentation.

The blog post section on changes was also updated to document the changes related to serialize_as_any.

v2.12.2

Compare Source

GitHub release

What's Changed
Fixes
  • Release a new pydantic-core version, as a corrupted CPython 3.10 manylinux2014_aarch64 wheel got uploaded (pydantic-core#1843).
  • Fix issue with recursive generic models with a parent model class by @​Viicos in #​12398

v2.12.1

Compare Source

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes
New Contributors

v2.12.0

Compare Source

GitHub release

What's Changed

This is the final 2.12 release. It features the work of 20 external contributors and provides useful new features, along with initial Python 3.14 support.
Several minor changes (considered non-breaking changes according to our versioning policy)
are also included in this release. Make sure to look into them before upgrading.

Note that Pydantic V1 is not compatible with Python 3.14 and greater.

Changes (see the alpha and beta releases for additional changes since 2.11):

Packaging
New Features
Fixes
New Contributors

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [pydantic](https://github.com/pydantic/pydantic) ([changelog](https://docs.pydantic.dev/latest/changelog/)) | `~=2.11.0` -> `~=2.12.5` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/pydantic/2.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pydantic/2.11.10/2.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>pydantic/pydantic (pydantic)</summary> ### [`v2.12.5`](https://github.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v2125-2025-11-26) [Compare Source](https://github.com/pydantic/pydantic/compare/v2.12.4...v2.12.5) [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.12.5) This is the fifth 2.12 patch release, addressing an issue with the `MISSING` sentinel and providing several documentation improvements. The next 2.13 minor release will be published in a couple weeks, and will include a new *polymorphic serialization* feature addressing the remaining unexpected changes to the *serialize as any* behavior. - Fix pickle error when using `model_construct()` on a model with `MISSING` as a default value by [@&#8203;ornariece](https://github.com/ornariece) in [#&#8203;12522](https://github.com/pydantic/pydantic/pull/12522). - Several updates to the documentation by [@&#8203;Viicos](https://github.com/Viicos). ### [`v2.12.4`](https://github.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v2124-2025-11-05) [Compare Source](https://github.com/pydantic/pydantic/compare/v2.12.3...v2.12.4) [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.12.4) This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the `build()` method of the [`AnyUrl` and Dsn types](https://docs.pydantic.dev/latest/api/networks/). This patch release also fixes an issue with the serialization of IP address types, when `serialize_as_any` is used. The next patch release will try to address the remaining issues with *serialize as any* behavior by introducing a new *polymorphic serialization* feature, that should be used in most cases in place of *serialize as any*. - Fix issue with forward references in parent `TypedDict` classes by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12427](https://github.com/pydantic/pydantic/pull/12427). This issue is only relevant on Python 3.14 and greater. - Exclude fields with `exclude_if` from JSON Schema required fields by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12430](https://github.com/pydantic/pydantic/pull/12430) - Revert URL percent-encoding of credentials in the `build()` method of the [`AnyUrl` and Dsn types](https://docs.pydantic.dev/latest/api/networks/) by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1833](https://github.com/pydantic/pydantic-core/pull/1833). This was initially considered as a bugfix, but caused regressions and as such was fully reverted. The next release will include an opt-in option to percent-encode components of the URL. - Add type inference for IP address types by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1868](https://github.com/pydantic/pydantic-core/pull/1868). The 2.12 changes to the `serialize_as_any` behavior made it so that IP address types could not properly serialize to JSON. - Avoid getting default values from defaultdict by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1853](https://github.com/pydantic/pydantic-core/pull/1853). This fixes a subtle regression in the validation behavior of the [`collections.defaultdict`](https://docs.python.org/3/library/collections.html#collections.defaultdict) type. - Fix issue with field serializers on nested typed dictionaries by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1879](https://github.com/pydantic/pydantic-core/pull/1879). - Add more `pydantic-core` builds for the three-threaded version of Python 3.14 by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1864](https://github.com/pydantic/pydantic-core/pull/1864). ### [`v2.12.3`](https://github.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v2123-2025-10-17) [Compare Source](https://github.com/pydantic/pydantic/compare/v2.12.2...v2.12.3) [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.12.3) ##### What's Changed This is the third 2.12 patch release, fixing issues related to the `FieldInfo` class, and reverting a change to the supported [*after* model validator](https://docs.pydantic.dev/latest/concepts/validators/#model-validators) function signatures. - Raise a warning when an invalid after model validator function signature is raised by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12414](https://github.com/pydantic/pydantic/pull/12414). Starting in 2.12.0, using class methods for *after* model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead. - Add [`FieldInfo.asdict()`](https://docs.pydantic.dev/latest/api/fields/#pydantic.fields.FieldInfo.asdict) method, improve documentation around `FieldInfo` by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12411](https://github.com/pydantic/pydantic/pull/12411). This also add back support for mutations on `FieldInfo` classes, that are reused as `Annotated` metadata. **However**, note that this is still *not* a supported pattern. Instead, please refer to the [added example](https://docs.pydantic.dev/latest/examples/dynamic_models/) in the documentation. The [blog post](https://pydantic.dev/articles/pydantic-v2-12-release#changes) section on changes was also updated to document the changes related to `serialize_as_any`. ### [`v2.12.2`](https://github.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v2122-2025-10-14) [Compare Source](https://github.com/pydantic/pydantic/compare/v2.12.1...v2.12.2) [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.12.2) ##### What's Changed ##### Fixes - Release a new `pydantic-core` version, as a corrupted CPython 3.10 `manylinux2014_aarch64` wheel got uploaded ([pydantic-core#1843](https://github.com/pydantic/pydantic-core/pull/1843)). - Fix issue with recursive generic models with a parent model class by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12398](https://github.com/pydantic/pydantic/pull/12398) ### [`v2.12.1`](https://github.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v2121-2025-10-13) [Compare Source](https://github.com/pydantic/pydantic/compare/v2.12.0...v2.12.1) [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.12.1) ##### What's Changed This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release. ##### Fixes - Do not evaluate annotations when inspecting validators and serializers by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12355](https://github.com/pydantic/pydantic/pull/12355) - Make sure `None` is converted as `NoneType` in Python 3.14 by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12370](https://github.com/pydantic/pydantic/pull/12370) - Backport V1 runtime warning when using Python 3.14 by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12367](https://github.com/pydantic/pydantic/pull/12367) - Fix error message for invalid validator signatures by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12366](https://github.com/pydantic/pydantic/pull/12366) - Populate field name in `ValidationInfo` for validation of default value by [@&#8203;Viicos](https://github.com/Viicos) in [pydantic-core#1826](https://github.com/pydantic/pydantic-core/pull/1826) - Encode credentials in `MultiHostUrl` builder by [@&#8203;willswire](https://github.com/willswire) in [pydantic-core#1829](https://github.com/pydantic/pydantic-core/pull/1829) - Respect field serializers when using `serialize_as_any` serialization flag by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1829](https://github.com/pydantic/pydantic-core/pull/1829) - Fix various `RootModel` serialization issues by [@&#8203;davidhewitt](https://github.com/davidhewitt) in [pydantic-core#1836](https://github.com/pydantic/pydantic-core/pull/1836) ##### New Contributors - [@&#8203;willswire](https://github.com/willswire) made their first contribution in [pydantic-core#1829](https://github.com/pydantic/pydantic-core/pull/1829) ### [`v2.12.0`](https://github.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v2120-2025-10-07) [Compare Source](https://github.com/pydantic/pydantic/compare/v2.11.10...v2.12.0) [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.12.0) ##### What's Changed This is the final 2.12 release. It features the work of 20 external contributors and provides useful new features, along with initial Python 3.14 support. Several minor changes (considered non-breaking changes according to our [versioning policy](https://docs.pydantic.dev/2.12/version-policy/#pydantic-v2)) are also included in this release. Make sure to look into them before upgrading. **Note that Pydantic V1 is not compatible with Python 3.14 and greater**. Changes (see the alpha and beta releases for additional changes since 2.11): ##### Packaging - Update V1 copy to v1.10.24 by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12338](https://github.com/pydantic/pydantic/pull/12338) ##### New Features - Add `extra` parameter to the validate functions by [@&#8203;anvilpete](https://github.com/anvilpete) in [#&#8203;12233](https://github.com/pydantic/pydantic/pull/12233) - Add `exclude_computed_fields` serialization option by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12334](https://github.com/pydantic/pydantic/pull/12334) - Add `preverse_empty_path` URL options by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12336](https://github.com/pydantic/pydantic/pull/12336) - Add `union_format` parameter to JSON Schema generation by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12147](https://github.com/pydantic/pydantic/pull/12147) - Add `__qualname__` parameter for `create_model` by [@&#8203;Atry](https://github.com/Atry) in [#&#8203;12001](https://github.com/pydantic/pydantic/pull/12001) ##### Fixes - Do not try to infer name from lambda definitions in pipelines API by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12289](https://github.com/pydantic/pydantic/pull/12289) - Use proper namespace for functions in `TypeAdapter` by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12324](https://github.com/pydantic/pydantic/pull/12324) - Use `Any` for context type annotation in `TypeAdapter` by [@&#8203;inducer](https://github.com/inducer) in [#&#8203;12279](https://github.com/pydantic/pydantic/pull/12279) - Expose `FieldInfo` in `pydantic.fields.__all__` by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12339](https://github.com/pydantic/pydantic/pull/12339) - Respect `validation_alias` in `@validate_call` by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12340](https://github.com/pydantic/pydantic/pull/12340) - Use `Any` as context annotation in plugin API by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12341](https://github.com/pydantic/pydantic/pull/12341) - Use proper `stacklevel` in warnings when possible by [@&#8203;Viicos](https://github.com/Viicos) in [#&#8203;12342](https://github.com/pydantic/pydantic/pull/12342) ##### New Contributors - [@&#8203;anvilpete](https://github.com/anvilpete) made their first contribution in [#&#8203;12233](https://github.com/pydantic/pydantic/pull/12233) - [@&#8203;JonathanWindell](https://github.com/JonathanWindell) made their first contribution in [#&#8203;12327](https://github.com/pydantic/pydantic/pull/12327) - [@&#8203;inducer](https://github.com/inducer) made their first contribution in [#&#8203;12279](https://github.com/pydantic/pydantic/pull/12279) - [@&#8203;Atry](https://github.com/Atry) made their first contribution in [#&#8203;12001](https://github.com/pydantic/pydantic/pull/12001) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjQyLjE5LjMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Update dependency pydantic to ~=2.12.2
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build Documentation (pull_request) Failing after 11s
Actions / Build (pull_request) Failing after 21s
Actions / Run Tests (pull_request) Failing after 22s
Actions / Lint (pull_request) Failing after 22s
ba48c1b846
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: uv.lock
Command failed: uv lock --upgrade-package pydantic
Using CPython 3.11.14 interpreter at: /opt/containerbase/tools/python/3.11.14/bin/python3
  × No solution found when resolving dependencies:
  ╰─▶ Because only the following versions of red-discordbot are available:
          red-discordbot<=3.5.6
          red-discordbot==3.5.7
          red-discordbot==3.5.8
          red-discordbot==3.5.9
          red-discordbot==3.5.10
          red-discordbot==3.5.11
          red-discordbot==3.5.12
          red-discordbot==3.5.13
          red-discordbot==3.5.14
          red-discordbot==3.5.15
          red-discordbot==3.5.16
          red-discordbot==3.5.17
          red-discordbot==3.5.18
          red-discordbot==3.5.19
          red-discordbot==3.5.20
          red-discordbot==3.5.21
          red-discordbot==3.5.22
      and red-discordbot>=3.5.6,<=3.5.9 depends on typing-extensions==4.10.0,
      we can conclude that red-discordbot>=3.5.6,<3.5.10 depends on
      typing-extensions==4.10.0.
      And because red-discordbot>=3.5.10,<=3.5.17 depends on
      typing-extensions==4.12.2 and typing-extensions==4.13.0, we can conclude
      that red-discordbot>=3.5.6,<3.5.19 depends on one of:
          typing-extensions==4.10.0
          typing-extensions>=4.12.2,<=4.13.0

      And because red-discordbot>=3.5.19 depends on typing-extensions==4.13.2
      and pydantic==2.12.5 depends on typing-extensions>=4.14.1, we
      can conclude that pydantic==2.12.5 and red-discordbot>=3.5.6 are
      incompatible.
      And because only pydantic<=2.12.5 is available and your project depends
      on pydantic>=2.12.5, we can conclude that red-discordbot>=3.5.6 and your
      project are incompatible.
      And because your project depends on red-discordbot>=3.5.6 and your
      project requires red-tidegear[sentinel], we can conclude that your
      project's requirements are unsatisfiable.

      hint: `pydantic` was requested with a pre-release marker (e.g.,
      pydantic>2.12.5,<2.13.dev0), but pre-releases weren't enabled (try:
      `--prerelease=allow`)

      hint: `red-discordbot` was requested with a pre-release marker (e.g.,
      all of:
          red-discordbot>3.5.6,<3.5.7
          red-discordbot>3.5.7,<3.5.8
          red-discordbot>3.5.8,<3.5.9
          red-discordbot>3.5.9,<3.5.10
          red-discordbot>3.5.10,<3.5.11
          red-discordbot>3.5.11,<3.5.12
          red-discordbot>3.5.12,<3.5.13
          red-discordbot>3.5.13,<3.5.14
          red-discordbot>3.5.14,<3.5.15
          red-discordbot>3.5.15,<3.5.16
          red-discordbot>3.5.16,<3.5.17
          red-discordbot>3.5.17,<3.5.18
          red-discordbot>3.5.18,<3.5.19
          red-discordbot>3.5.19,<3.5.20
          red-discordbot>3.5.20,<3.5.21
          red-discordbot>3.5.21,<3.5.22
          red-discordbot>3.5.22,<3.6.dev0
      ), but pre-releases weren't enabled (try: `--prerelease=allow`)

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: uv.lock ``` Command failed: uv lock --upgrade-package pydantic Using CPython 3.11.14 interpreter at: /opt/containerbase/tools/python/3.11.14/bin/python3 × No solution found when resolving dependencies: ╰─▶ Because only the following versions of red-discordbot are available: red-discordbot<=3.5.6 red-discordbot==3.5.7 red-discordbot==3.5.8 red-discordbot==3.5.9 red-discordbot==3.5.10 red-discordbot==3.5.11 red-discordbot==3.5.12 red-discordbot==3.5.13 red-discordbot==3.5.14 red-discordbot==3.5.15 red-discordbot==3.5.16 red-discordbot==3.5.17 red-discordbot==3.5.18 red-discordbot==3.5.19 red-discordbot==3.5.20 red-discordbot==3.5.21 red-discordbot==3.5.22 and red-discordbot>=3.5.6,<=3.5.9 depends on typing-extensions==4.10.0, we can conclude that red-discordbot>=3.5.6,<3.5.10 depends on typing-extensions==4.10.0. And because red-discordbot>=3.5.10,<=3.5.17 depends on typing-extensions==4.12.2 and typing-extensions==4.13.0, we can conclude that red-discordbot>=3.5.6,<3.5.19 depends on one of: typing-extensions==4.10.0 typing-extensions>=4.12.2,<=4.13.0 And because red-discordbot>=3.5.19 depends on typing-extensions==4.13.2 and pydantic==2.12.5 depends on typing-extensions>=4.14.1, we can conclude that pydantic==2.12.5 and red-discordbot>=3.5.6 are incompatible. And because only pydantic<=2.12.5 is available and your project depends on pydantic>=2.12.5, we can conclude that red-discordbot>=3.5.6 and your project are incompatible. And because your project depends on red-discordbot>=3.5.6 and your project requires red-tidegear[sentinel], we can conclude that your project's requirements are unsatisfiable. hint: `pydantic` was requested with a pre-release marker (e.g., pydantic>2.12.5,<2.13.dev0), but pre-releases weren't enabled (try: `--prerelease=allow`) hint: `red-discordbot` was requested with a pre-release marker (e.g., all of: red-discordbot>3.5.6,<3.5.7 red-discordbot>3.5.7,<3.5.8 red-discordbot>3.5.8,<3.5.9 red-discordbot>3.5.9,<3.5.10 red-discordbot>3.5.10,<3.5.11 red-discordbot>3.5.11,<3.5.12 red-discordbot>3.5.12,<3.5.13 red-discordbot>3.5.13,<3.5.14 red-discordbot>3.5.14,<3.5.15 red-discordbot>3.5.15,<3.5.16 red-discordbot>3.5.16,<3.5.17 red-discordbot>3.5.17,<3.5.18 red-discordbot>3.5.18,<3.5.19 red-discordbot>3.5.19,<3.5.20 red-discordbot>3.5.20,<3.5.21 red-discordbot>3.5.21,<3.5.22 red-discordbot>3.5.22,<3.6.dev0 ), but pre-releases weren't enabled (try: `--prerelease=allow`) ```
Owner

Pending Red 3.6.

Pending Red 3.6.
Renovate bot force-pushed renovate/pydantic-2.x from ba48c1b846
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build Documentation (pull_request) Failing after 11s
Actions / Build (pull_request) Failing after 21s
Actions / Run Tests (pull_request) Failing after 22s
Actions / Lint (pull_request) Failing after 22s
to 8e44d301a3
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Lint (pull_request) Failing after 14s
Actions / Run Tests (pull_request) Failing after 21s
Actions / Build (pull_request) Failing after 22s
Actions / Build Documentation (pull_request) Failing after 21s
2025-10-17 11:25:04 -04:00
Compare
Renovate bot changed title from Update dependency pydantic to ~=2.12.2 to Update dependency pydantic to ~=2.12.3 2025-10-17 11:25:08 -04:00
Renovate bot force-pushed renovate/pydantic-2.x from 8e44d301a3
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Lint (pull_request) Failing after 14s
Actions / Run Tests (pull_request) Failing after 21s
Actions / Build (pull_request) Failing after 22s
Actions / Build Documentation (pull_request) Failing after 21s
to ad790cc52b
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build Documentation (pull_request) Failing after 11s
Actions / Build (pull_request) Failing after 22s
Actions / Lint (pull_request) Failing after 22s
Actions / Run Tests (pull_request) Failing after 21s
2025-10-18 23:24:51 -04:00
Compare
Renovate bot changed title from Update dependency pydantic to ~=2.12.3 to Update dependency pydantic to ~=2.12.4 2025-11-22 09:32:24 -05:00
Renovate bot force-pushed renovate/pydantic-2.x from ad790cc52b
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build Documentation (pull_request) Failing after 11s
Actions / Build (pull_request) Failing after 22s
Actions / Lint (pull_request) Failing after 22s
Actions / Run Tests (pull_request) Failing after 21s
to 62f3b73d54
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build (pull_request) Failing after 22s
Actions / Lint (pull_request) Failing after 21s
Actions / Run Tests (pull_request) Failing after 21s
Actions / Build Documentation (pull_request) Failing after 20s
2025-11-22 09:32:25 -05:00
Compare
Renovate bot force-pushed renovate/pydantic-2.x from 62f3b73d54
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build (pull_request) Failing after 22s
Actions / Lint (pull_request) Failing after 21s
Actions / Run Tests (pull_request) Failing after 21s
Actions / Build Documentation (pull_request) Failing after 20s
to c6780b2a82
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build (pull_request) Failing after 11s
Actions / Build Documentation (pull_request) Failing after 9s
Actions / Run Tests (pull_request) Failing after 20s
Actions / Lint (pull_request) Failing after 22s
2025-11-26 10:43:05 -05:00
Compare
Renovate bot changed title from Update dependency pydantic to ~=2.12.4 to Update dependency pydantic to ~=2.12.5 2025-11-26 10:43:07 -05:00
Renovate bot force-pushed renovate/pydantic-2.x from c6780b2a82
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build (pull_request) Failing after 11s
Actions / Build Documentation (pull_request) Failing after 9s
Actions / Run Tests (pull_request) Failing after 20s
Actions / Lint (pull_request) Failing after 22s
to 111f7a6c1f
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build (pull_request) Failing after 20s
Actions / Lint (pull_request) Failing after 21s
Actions / Run Tests (pull_request) Failing after 11s
Actions / Build Documentation (pull_request) Failing after 20s
2025-12-08 17:43:45 -05:00
Compare
Some checks failed
renovate/artifacts Artifact file update failure
Actions / Build (pull_request) Failing after 20s
Required
Details
Actions / Lint (pull_request) Failing after 21s
Required
Details
Actions / Run Tests (pull_request) Failing after 11s
Required
Details
Actions / Build Documentation (pull_request) Failing after 20s
Required
Details
Some required checks were not successful.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/pydantic-2.x:renovate/pydantic-2.x
git switch renovate/pydantic-2.x
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
cswimr/tidegear!39
No description provided.