Skip to content

meta: update pydantic requirement from >=2.12.5 to >=2.13.0#10

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/pip/pydantic-gte-2.13.0
Apr 14, 2026
Merged

meta: update pydantic requirement from >=2.12.5 to >=2.13.0#10
github-actions[bot] merged 1 commit intomainfrom
dependabot/pip/pydantic-gte-2.13.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2026

Updates the requirements on pydantic to permit the latest version.

Release notes

Sourced from pydantic's releases.

v2.13.0 2026-04-13

v2.13.0 (2026-04-13)

The highlights of the v2.13 release are available in the blog post. 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.

This release contains the updated pydantic.v1 namespace, matching version 1.10.26 which includes support for Python 3.14.

What's Changed

See the beta releases for all changes sinces 2.12.

Packaging

  • Add zizmor for GitHub Actions workflow linting by @​Viicos in #13039
  • Update jiter to v0.14.0 to fix a segmentation fault on musl Linux by @​Viicos in #13064

New Features

  • Allow default factories of private attributes to take validated model data by @​Viicos in #13013

Changes

Fixes

  • Change type of Any when synthesizing _build_sources for BaseSettings.__init__() signature in the mypy plugin by @​Viicos in #13049
  • Fix model equality when using runtime extra configuration by @​Viicos in #13062

New Contributors

Full Changelog: pydantic/pydantic@v2.12.0...v2.13.0

Changelog

Sourced from pydantic's changelog.

v2.13.0 (2026-04-13)

GitHub release

The highlights of the v2.13 release are available in the blog post. 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.

This release contains the updated pydantic.v1 namespace, matching version 1.10.26 which includes support for Python 3.14.

What's Changed

See the beta releases for all changes sinces 2.12.

New Features

  • Allow default factories of private attributes to take validated model data by @​Viicos in #13013

Changes

Fixes

  • Change type of Any when synthesizing _build_sources for BaseSettings.__init__() signature in the mypy plugin by @​Viicos in #13049
  • Fix model equality when using runtime extra configuration by @​Viicos in #13062

Packaging

  • Add zizmor for GitHub Actions workflow linting by @​Viicos in #13039
  • Update jiter to v0.14.0 to fix a segmentation fault on musl Linux by @​Viicos in #13064

New Contributors

v2.13.0b3 (2026-03-31)

GitHub release

What's Changed

New Features

Changes

... (truncated)

Commits

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 commands and options

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)

Updates the requirements on [pydantic](https://github.com/pydantic/pydantic) to permit the latest version.
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.12.5...v2.13.0)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-version: 2.13.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Apr 14, 2026
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ Title is too vague for Autobot

Your PR title "meta: update pydantic requirement from >=2.12.5 to >=2.13.0" does not contain any keywords that trigger automation.

Please include at least one keyword from these categories in your title:

  • Bug

  • Feature

  • Docs

  • Breaking

  • UI

  • Perf

  • Security

  • Refactor

  • Test

  • CI

  • Deps

  • DB

    Example: "Optimized database queries" (Perf/DB) or "Fixed login crash" (Bug)

Copy link
Copy Markdown
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Automated approval for security update.

@github-actions github-actions bot merged commit d27b84d into main Apr 14, 2026
6 of 14 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

🎉 Congrats for opening a Pull Request! Please make sure you have run ruff check . && ruff format before submitting.

@dependabot dependabot bot deleted the dependabot/pip/pydantic-gte-2.13.0 branch April 14, 2026 09:29
@github-actions github-actions bot added breaking-change Incompatible API changes compatibility Compatibility work, shims, polyfills runtime Runtime/platform compatibility changes labels Apr 14, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Autobot — Changes Analysis

PR #10 · dependabot/pip/pydantic-gte-2.13.0 → main · 2026-04-14


## Autobot Summary

### What Changed
This pull request updates the minimum required version of the `pydantic` dependency from `2.12.5` to `2.13.0` in the `pyproject.toml` file. The change is contained entirely within this configuration file, with no impact on other files or functionalities.

### Release Relevance
- Ensures alignment with upstream updates, affecting dependency management in both runtime and development environments.
- Addresses potential improvements and bug fixes included in the `2.13.0` release of `pydantic`.
- Impacts environments where the library is used extensively for data modeling and validation.

### Risks And Testing
- **Backward Compatibility**: Potential for subtle regressions if code depends on deprecated behavior from `pydantic<2.13.0`.
- **Staging Validation**: Risk of runtime failures if environment-specific testing is overlooked.
- **Broad Testing**: Necessary to confirm compatibility with all dependent systems.

### Classification Signals
- **Breaking-Change Risk**: Dependency upgrade could introduce subtle changes in handling of edge cases or invalid data.
- **Runtime Impact**: The updated dependency may alter dynamic behavior in production environments using `pydantic`.
- **Testing Dependency Adjustment**: Ensuring compatibility across environments necessitates updates to test configurations and cases.
- **Developer Workflow Impact**: Requires alignment of developer environments to incorporate the updated dependency version.

🏷️ AI Label Classification

Applied labels: breaking-change compatibility runtime dependencies

Labels were determined by AI analysis of the code diff — not the PR title or description.

@github-actions github-actions bot added this to the v1.0.0 milestone Apr 14, 2026
@github-actions
Copy link
Copy Markdown
Contributor

🚨 MAJOR RELEASE ALERT 🚨

@YaronKoresh This PR triggers a major version bump due to breaking changes detected by AI analysis.

@github-actions
Copy link
Copy Markdown
Contributor

Autobot — Milestone Update

This PR was moved to v1.0.0 based on the current semantic-version impact of the PR and the canonical open release milestone.

Retained older milestones for manual review: v0.0.2 (1 remaining)

This only moves compatible open AI-managed PRs. Issues, closed items, manual milestones, and incompatible PRs stay where they are.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

breaking-change Incompatible API changes compatibility Compatibility work, shims, polyfills dependencies Pull requests that update a dependency file python Pull requests that update python code runtime Runtime/platform compatibility changes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants