Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Updates the requirements on ag2, markdownify, click, mesop, fastapi-code-generator, asyncer, websockets, faststream[nats], mkdocs-autorefs, mkdocs-material, mkdocs-static-i18n, mkdocstrings[python], mkdocs-literate-nav, mkdocs-git-revision-date-localized-plugin, mkdocs-macros-plugin, mkdocs-glightbox, pillow, cairosvg, griffe, mypy, ruff, bandit, semgrep, coverage[toml], pytest, pytest-asyncio, dirty-equals, pytest-rerunfailures, pydantic-settings, pyyaml, watchfiles, email-validator, pyjwt and pre-commit to permit the latest version.
Updates ag2 from 0.9.9 to 0.9.10

Release notes

Sourced from ag2's releases.

v0.9.10

Highlights

🛡️ Maris Security Framework - Introducing policy-guided safeguards for multi-agent systems with configurable communication flow guardrails, supporting both regex and LLM-based detection methods for comprehensive security controls across agent-to-agent and agent-to-environment interactions. Get started

🏗️ YepCode Secure Sandbox - New secure, serverless code execution platform integration enabling production-grade sandboxed Python and JavaScript execution with automatic dependency management. Get started

🔧 Enhanced Azure OpenAI Support - Added new "minimal" reasoning effort support for Azure OpenAI, expanding model capabilities and configuration options.

🐛 Security & Stability Fixes - Multiple security vulnerability mitigations (CVE-2025-59343, CVE-2025-58754) and critical bug fixes including memory overwrite issues in DocAgent and async processor improvements.

📚 Documentation & Examples - New web scraping tutorial with Oxylabs and updated API references

⚠️ LLMConfig API Updates - Important deprecation of legacy LLMConfig contextmanager, .current, and .default methods in future release v0.11.0

What's Changed

... (truncated)

Commits

Updates markdownify from 0.14.1 to 1.2.0

Release notes

Sourced from markdownify's releases.

1.2.0

What's Changed

New Contributors

Full Changelog: matthewwithanm/python-markdownify@1.1.0...1.2.0

1.1.0

What's Changed

New Contributors

Full Changelog: matthewwithanm/python-markdownify@1.0.0...1.1.0

1.0.0

Breaking Changes

If you are using custom tag conversion functions (convert_*()), note that the function interface has changed. See #191 for details.

What's Changed

... (truncated)

Commits

Updates click from 8.1.3 to 8.3.0

Release notes

Sourced from click's releases.

8.3.0

This is the Click 8.3.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecation, or introduce potentially breaking changes.

We encourage everyone to upgrade. You can read more about our Version Support Policy on our website.

PyPI: https://pypi.org/project/click/8.3.0/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-0 Milestone https://github.com/pallets/click/milestone/27

  • Improved flag option handling: Reworked the relationship between flag_value and default parameters for better consistency:

    • The default parameter value is now preserved as-is and passed directly to CLI functions (no more unexpected transformations)
    • Exception: flag options with default=True maintain backward compatibility by defaulting to their flag_value
    • The default parameter can now be any type (bool, None, etc.)
    • Fixes inconsistencies reported in: #1992 #2514 #2610 #3024 #3030
  • Allow default to be set on Argument for nargs = -1. #2164 #3030

  • Show correct auto complete value for nargs option in combination with flag option #2813

  • Show correct auto complete value for nargs option in combination with flag option #2813

  • Fix handling of quoted and escaped parameters in Fish autocompletion. #2995 #3013

  • Lazily import shutil. #3023

  • Properly forward exception information to resources registered with click.core.Context.with_resource(). #2447 #3058

  • Fix regression related to EOF handling in CliRunner. #2939 #2940

8.2.2

This is the Click 8.2.2 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.2.2/ Changes: https://click.palletsprojects.com/page/changes/#version-8-2-2 Milestone: https://github.com/pallets/click/milestone/25

  • Fix reconciliation of default, flag_value and type parameters for flag options, as well as parsing and normalization of environment variables. #2952 #2956
  • Fix typing issue in BadParameter and MissingParameter exceptions for the parameter param_hint that did not allow for a sequence of string where the underlying functino _join_param_hints allows for it. #2777 #2990
  • Use the value of Enum choices to render their default value in help screen. #2911 #3004
  • Fix completion for the Z shell (zsh) for completion items containing colons. #2703 #2846
  • Don't include envvar in error hint when not configured. #2971 #2972

... (truncated)

Changelog

Sourced from click's changelog.

Version 8.3.0

Released 2025-09-17

  • Improved flag option handling: Reworked the relationship between flag_value and default parameters for better consistency:

    • The default parameter value is now preserved as-is and passed directly to CLI functions (no more unexpected transformations)
    • Exception: flag options with default=True maintain backward compatibility by defaulting to their flag_value
    • The default parameter can now be any type (bool, None, etc.)
    • Fixes inconsistencies reported in: :issue:1992 :issue:2514 :issue:2610 :issue:3024 :pr:3030
  • Allow default to be set on Argument for nargs = -1. :issue:2164 :pr:3030

  • Show correct auto complete value for nargs option in combination with flag option :issue:2813

  • Fix handling of quoted and escaped parameters in Fish autocompletion. :issue:2995 :pr:3013

  • Lazily import shutil. :pr:3023

  • Properly forward exception information to resources registered with click.core.Context.with_resource(). :issue:2447 :pr:3058

  • Fix regression related to EOF handling in CliRunner. :issue:2939 :pr:2940

Version 8.2.2

Released 2025-07-31

  • Fix reconciliation of default, flag_value and type parameters for flag options, as well as parsing and normalization of environment variables. :issue:2952 :pr:2956
  • Fix typing issue in BadParameter and MissingParameter exceptions for the parameter param_hint that did not allow for a sequence of string where the underlying function _join_param_hints allows for it. :issue:2777 :pr:2990
  • Use the value of Enum choices to render their default value in help screen. Refs :issue:2911 :pr:3004
  • Fix completion for the Z shell (zsh) for completion items containing colons. :issue:2703 :pr:2846
  • Don't include envvar in error hint when not configured. :issue:2971 :pr:2972
  • Fix a rare race in click.testing.StreamMixer's finalization that manifested as a ValueError on close in a multi-threaded test session. :issue:2993 :pr:2991

Version 8.2.1

Released 2025-05-20

... (truncated)

Commits
  • 00fadb8 Release version 8.3.0
  • 2a0e3ba testing/CliRunner: Fix regression related to EOF introduced in 262bdf0 (#2940)
  • e11a1ef Merge branch 'main' into fix-cli-runner-prompt-eof-handling
  • 36deba8 Forward exception information to resources registered in a context (#3058)
  • f2cae7a #2447 Add summary of PR to changelog for 8.3.x
  • 7c7ec36 #2447 Split resource exception handling tests in single and nested
  • 92129c5 #2447 Added exception forwarding to context tests
  • 555fa9b #2447 Forward exception data to exit stack when calling __exit__
  • 16fe802 Add more tests on Enum rendering (#3053)
  • d36de6f Add more tests on Enum rendering their item's names and not values
  • Additional commits viewable in compare view

Updates mesop to 1.1.0

Release notes

Sourced from mesop's releases.

v1.1.0

What's Changed

New Contributors

Full Changelog: mesop-dev/mesop@v1.0.1...v1.1.0

Commits

Updates fastapi-code-generator from 0.5.2 to 0.5.4

Release notes

Sourced from fastapi-code-generator's releases.

0.5.4

What's Changed

Full Changelog: koxudaxi/fastapi-code-generator@0.5.3...0.5.4

0.5.3

What's Changed

New Contributors

Full Changelog: koxudaxi/fastapi-code-generator@0.5.2...0.5.3

0.5.3rc0

What's Changed

New Contributors

Full Changelog: koxudaxi/fastapi-code-generator@0.5.2...0.5.3rc0

Commits
  • 33f7572 Merge pull request #490 from ag2ai/prepare-for-release
  • 65fd711 Bump version
  • c2b0f8c Merge pull request #489 from ag2ai/remove-datamodel-code-generator-patch
  • 10b3f1b Merge branch 'master' into remove-datamodel-code-generator-patch
  • 886a1a7 Remove deprecated datamodel-code-generator patch
  • c9fe474 Merge pull request #486 from ag2ai/master
  • 9ee666e Fix publish in CI (#12)
  • d799476 Merge pull request #485 from ag2ai/master
  • 23d66ae Fix docs build in CI (#11)
  • b2df313 Merge pull request #484 from ag2ai/master
  • Additional commits viewable in compare view

Updates asyncer from 0.0.8 to 0.0.9

Release notes

Sourced from asyncer's releases.

0.0.9

Fixes

Docs

  • 🩺 Take the GH badge only from pushes to the main branch. PR #284 by @​svlandeg.

Internal

... (truncated)

Changelog

Sourced from asyncer's changelog.

0.0.9

Fixes

Docs

  • 🩺 Take the GH badge only from pushes to the main branch. PR #284 by @​svlandeg.

Internal

Updates the requirements on [ag2](https://github.com/ag2ai/ag2), [markdownify](https://github.com/matthewwithanm/python-markdownify), [click](https://github.com/pallets/click), [mesop](https://github.com/mesop-dev/mesop), [fastapi-code-generator](https://github.com/koxudaxi/fastapi-code-generator), [asyncer](https://github.com/fastapi/asyncer), [websockets](https://github.com/python-websockets/websockets), [faststream[nats]](https://github.com/ag2ai/FastStream), [mkdocs-autorefs](https://github.com/mkdocstrings/autorefs), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocs-static-i18n](https://github.com/ultrabug/mkdocs-static-i18n), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [mkdocs-literate-nav](https://github.com/oprypin/mkdocs-literate-nav), [mkdocs-git-revision-date-localized-plugin](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin), [mkdocs-macros-plugin](https://github.com/fralau/mkdocs_macros_plugin), [mkdocs-glightbox](https://github.com/blueswen/mkdocs-glightbox), [pillow](https://github.com/python-pillow/Pillow), [cairosvg](https://github.com/Kozea/CairoSVG), [griffe](https://github.com/mkdocstrings/griffe), [mypy](https://github.com/python/mypy), [ruff](https://github.com/astral-sh/ruff), [bandit](https://github.com/PyCQA/bandit), [semgrep](https://github.com/returntocorp/semgrep), [coverage[toml]](https://github.com/nedbat/coveragepy), [pytest](https://github.com/pytest-dev/pytest), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio), [dirty-equals](https://github.com/samuelcolvin/dirty-equals), [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures), [pydantic-settings](https://github.com/pydantic/pydantic-settings), [pyyaml](https://github.com/yaml/pyyaml), [watchfiles](https://github.com/samuelcolvin/watchfiles), [email-validator](https://github.com/JoshData/python-email-validator), [pyjwt](https://github.com/jpadilla/pyjwt) and [pre-commit](https://github.com/pre-commit/pre-commit) to permit the latest version.

Updates `ag2` from 0.9.9 to 0.9.10
- [Release notes](https://github.com/ag2ai/ag2/releases)
- [Commits](ag2ai/ag2@v0.9.9...v0.9.10)

Updates `markdownify` from 0.14.1 to 1.2.0
- [Release notes](https://github.com/matthewwithanm/python-markdownify/releases)
- [Commits](matthewwithanm/python-markdownify@0.14.1...1.2.0)

Updates `click` from 8.1.3 to 8.3.0
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.1.3...8.3.0)

Updates `mesop` to 1.1.0
- [Release notes](https://github.com/mesop-dev/mesop/releases)
- [Commits](mesop-dev/mesop@v0.12.7...v1.1.0)

Updates `fastapi-code-generator` from 0.5.2 to 0.5.4
- [Release notes](https://github.com/koxudaxi/fastapi-code-generator/releases)
- [Commits](koxudaxi/fastapi-code-generator@0.5.2...0.5.4)

Updates `asyncer` from 0.0.8 to 0.0.9
- [Release notes](https://github.com/fastapi/asyncer/releases)
- [Changelog](https://github.com/fastapi/asyncer/blob/main/docs/release-notes.md)
- [Commits](fastapi/asyncer@0.0.8...0.0.9)

Updates `websockets` to 15.0.1
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@13.0...15.0.1)

Updates `faststream[nats]` to 0.6.0
- [Release notes](https://github.com/ag2ai/FastStream/releases)
- [Changelog](https://github.com/ag2ai/faststream/blob/main/docs/update_releases.py)
- [Commits](ag2ai/faststream@0.5.27...0.6.0)

Updates `mkdocs-autorefs` from 1.2.0 to 1.4.3
- [Release notes](https://github.com/mkdocstrings/autorefs/releases)
- [Changelog](https://github.com/mkdocstrings/autorefs/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/autorefs@1.2.0...1.4.3)

Updates `mkdocs-material` from 9.5.48 to 9.6.21
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.48...9.6.21)

Updates `mkdocs-static-i18n` from 1.2.3 to 1.3.0
- [Changelog](https://github.com/ultrabug/mkdocs-static-i18n/blob/main/docs/changelog.md)
- [Commits](ultrabug/mkdocs-static-i18n@1.2.3...1.3.0)

Updates `mkdocstrings[python]` from 0.27.0 to 0.30.1
- [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases)
- [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/mkdocstrings@0.27.0...0.30.1)

Updates `mkdocs-literate-nav` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/oprypin/mkdocs-literate-nav/releases)
- [Commits](oprypin/mkdocs-literate-nav@v0.6.1...v0.6.2)

Updates `mkdocs-git-revision-date-localized-plugin` from 1.3.0 to 1.4.7
- [Release notes](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases)
- [Commits](timvink/mkdocs-git-revision-date-localized-plugin@v1.3.0...v1.4.7)

Updates `mkdocs-macros-plugin` from 1.3.7 to 1.4.0
- [Release notes](https://github.com/fralau/mkdocs_macros_plugin/releases)
- [Changelog](https://github.com/fralau/mkdocs-macros-plugin/blob/master/CHANGELOG.md)
- [Commits](fralau/mkdocs-macros-plugin@v1.3.7...v1.4.0)

Updates `mkdocs-glightbox` from 0.4.0 to 0.5.1
- [Release notes](https://github.com/blueswen/mkdocs-glightbox/releases)
- [Changelog](https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG)
- [Commits](blueswen/mkdocs-glightbox@v0.4.0...v0.5.1)

Updates `pillow` to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@10.4.0...11.3.0)

Updates `cairosvg` from 2.7.1 to 2.8.2
- [Release notes](https://github.com/Kozea/CairoSVG/releases)
- [Changelog](https://github.com/Kozea/CairoSVG/blob/main/NEWS.rst)
- [Commits](Kozea/CairoSVG@2.7.1...2.8.2)

Updates `griffe` to 1.14.0
- [Release notes](https://github.com/mkdocstrings/griffe/releases)
- [Changelog](https://github.com/mkdocstrings/griffe/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/griffe@0.1.0...1.14.0)

Updates `mypy` from 1.15.0 to 1.18.2
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.18.2)

Updates `ruff` from 0.11.0 to 0.14.0
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.11.0...0.14.0)

Updates `bandit` from 1.8.3 to 1.8.6
- [Release notes](https://github.com/PyCQA/bandit/releases)
- [Commits](PyCQA/bandit@1.8.3...1.8.6)

Updates `semgrep` from 1.112.0 to 1.139.0
- [Release notes](https://github.com/returntocorp/semgrep/releases)
- [Changelog](https://github.com/semgrep/semgrep/blob/develop/CHANGELOG.md)
- [Commits](semgrep/semgrep@v1.112.0...v1.139.0)

Updates `coverage[toml]` from 7.7.0 to 7.10.7
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.7.0...7.10.7)

Updates `pytest` from 8.3.5 to 8.4.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.5...8.4.2)

Updates `pytest-asyncio` from 0.25.3 to 1.2.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.25.3...v1.2.0)

Updates `dirty-equals` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/samuelcolvin/dirty-equals/releases)
- [Commits](samuelcolvin/dirty-equals@v0.9.0...v0.10.0)

Updates `pytest-rerunfailures` from 15.0 to 16.1
- [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst)
- [Commits](pytest-dev/pytest-rerunfailures@15.0...16.1)

Updates `pydantic-settings` from 2.8.1 to 2.11.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.8.1...v2.11.0)

Updates `pyyaml` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/6.0.3/CHANGES)
- [Commits](yaml/pyyaml@6.0.2...6.0.3)

Updates `watchfiles` from 1.0.4 to 1.1.0
- [Release notes](https://github.com/samuelcolvin/watchfiles/releases)
- [Commits](samuelcolvin/watchfiles@v1.0.4...v1.1.0)

Updates `email-validator` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/JoshData/python-email-validator/releases)
- [Changelog](https://github.com/JoshData/python-email-validator/blob/main/CHANGELOG.md)
- [Commits](JoshData/python-email-validator@v2.2.0...v2.3.0)

Updates `pyjwt` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/jpadilla/pyjwt/releases)
- [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst)
- [Commits](jpadilla/pyjwt@2.10.0...2.10.1)

Updates `pre-commit` from 4.1.0 to 4.3.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.1.0...v4.3.0)

---
updated-dependencies:
- dependency-name: ag2
  dependency-version: 0.9.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: markdownify
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: click
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mesop
  dependency-version: 1.1.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: fastapi-code-generator
  dependency-version: 0.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: asyncer
  dependency-version: 0.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: websockets
  dependency-version: 15.0.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: faststream[nats]
  dependency-version: 0.6.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: mkdocs-autorefs
  dependency-version: 1.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-material
  dependency-version: 9.6.21
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-static-i18n
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocstrings[python]
  dependency-version: 0.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-literate-nav
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mkdocs-git-revision-date-localized-plugin
  dependency-version: 1.4.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-macros-plugin
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-glightbox
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: cairosvg
  dependency-version: 2.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: griffe
  dependency-version: 1.14.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: mypy
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: ruff
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: bandit
  dependency-version: 1.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: semgrep
  dependency-version: 1.139.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: coverage[toml]
  dependency-version: 7.10.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pytest
  dependency-version: 8.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pytest-asyncio
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: dirty-equals
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pytest-rerunfailures
  dependency-version: '16.1'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pydantic-settings
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pyyaml
  dependency-version: 6.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: watchfiles
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: email-validator
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pyjwt
  dependency-version: 2.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pre-commit
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 13, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant