Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Bump the all-dependencies group with 36 updates #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
dependabot wants to merge 1 commit into main from dependabot/pip/all-dependencies-6251e80530

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 1, 2025
edited
Loading

Bumps the all-dependencies group with 36 updates:

Package From To
alembic 1.14.1 1.16.1
fastapi 0.115.10 0.115.12
pydantic 2.10.6 2.11.5
pydantic-settings 2.8.1 2.9.1
sqlalchemy 2.0.38 2.0.41
coverage 7.6.12 7.8.2
freezegun 1.5.1 1.5.2
greenlet 3.1.1 3.2.2
mypy 1.15.0 1.16.0
pre-commit 4.1.0 4.2.0
pytest 8.3.4 8.3.5
pytest-asyncio 0.25.3 0.26.0
pytest-cov 6.0.0 6.1.1
pytest-xdist 3.6.1 3.7.0
ruff 0.9.9 0.11.12
uvicorn 0.34.0 0.34.3
anyio 4.8.0 4.9.0
certifi 2025年1月31日 2025年4月26日
click 8.1.8 8.2.1
filelock 3.17.0 3.18.0
h11 0.14.0 0.16.0
httpcore 1.0.7 1.0.9
identify 2.6.8 2.6.12
iniconfig 2.0.0 2.1.0
mako 1.3.9 1.3.10
mypy-extensions 1.0.0 1.1.0
packaging 24.2 25.0
platformdirs 4.3.6 4.3.8
pluggy 1.5.0 1.6.0
pydantic-core 2.27.2 2.33.2
python-dotenv 1.0.1 1.1.0
starlette 0.46.0 0.46.2
typing-extensions 4.12.2 4.13.2
virtualenv 20.29.2 20.31.2
watchfiles 1.0.4 1.0.5
websockets 15.0 15.0.1

Updates alembic from 1.14.1 to 1.16.1

Release notes

Sourced from alembic's releases.

1.16.1

Released: May 21, 2025

bug

  • [bug] [command] Fixed regression caused by the pathlib refactoring that removed the use of Config.get_template_directory() as the canonical source of templates; the method is still present however it no longer would be consulted for a custom config subclass, as was the case with flask-migrate.

    References: #1660

  • [bug] [command] Fixed regression caused by the pathlib refactoring where the "missing template" error message failed to render the name of the template that could not be found.

    References: #1659

1.16.0

Released: May 21, 2025

feature

  • [feature] [environment] Added optional PEP 621 support to Alembic, allowing all source code related configuration (e.g. local file paths, post write hook configurations, etc) to be configured in the project's pyproject.toml file. A new init template pyproject is added which illustrates a basic PEP 621 setup.

    Besides being better integrated with a Python project's existing source code configuration, the TOML format allows for more flexible structures, allowing configuration items like version_locations and prepend_sys_path to be configured as lists of path strings without the need for path separator characters used by ConfigParser format. The feature continues to support the %(here)s token which can substitute the absolute parent directory of the pyproject.toml file when consumed.

    The PEP 621 feature supports configuration values that are relevant to source code organization and generation only; it does not accommodate configuration of database connectivity or logging, which remain under the category of "deployment" configuration and continue to be part of alembic.ini, or whatever configurational method is established by the env.py file. Using the combination of pyproject.toml for source code configuration along with a custom database/logging configuration method established in env.py will allow the alembic.ini file to be

... (truncated)

Commits

Updates fastapi from 0.115.10 to 0.115.12

Release notes

Sourced from fastapi's releases.

0.115.12

Fixes

  • 🐛 Fix convert_underscores=False for header Pydantic models. PR #13515 by @​tiangolo.

Docs

Translations

Internal

0.115.11

Fixes

Translations

  • 🌐 Add Russian translation for docs/ru/docs/tutorial/middleware.md. PR #13412 by @​alv2017.

Internal

Commits
  • 628c34e 🔖 Release version 0.115.12
  • 8e76d4e 📝 Update release notes
  • 2537d9d 🐛 Fix convert_underscores=False for header Pydantic models (#13515)
  • c08a3e8 📝 Update release notes
  • 241de23 📝 Update docs/en/docs/tutorial/middleware.md (#13444)
  • 4e40e1e 📝 Update release notes
  • ecf6e7e 🌐 Add Ukrainian translation for docs/uk/docs/tutorial/metadata.md page (#13...
  • 3afd733 📝 Update release notes
  • 8557a88 🌐 Add Ukrainian translation for `docs/uk/docs/tutorial/response-status-code.m...
  • e4c1dd7 📝 Update release notes
  • Additional commits viewable in compare view

Updates pydantic from 2.10.6 to 2.11.5

Release notes

Sourced from pydantic's releases.

v2.11.5 2025年05月22日

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.4...v2.11.5

v2.11.4 2025年04月29日

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

v2.11.3 2025年04月08日

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.11.2...v2.11.3

v2.11.2 2025年04月03日

What's Changed

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.11.5 (2025年05月22日)

GitHub release

What's Changed

Fixes

v2.11.4 (2025年04月29日)

GitHub release

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

v2.11.3 (2025年04月08日)

GitHub release

What's Changed

Packaging

Fixes

  • Preserve field description when rebuilding model fields by @​Viicos in #11698

... (truncated)

Commits
  • 5e6d1dc Prepare release v2.11.5
  • 1b63218 Do not duplicate metadata on model rebuild (#11902)
  • 5aefad8 Do not delete mock validator/serializer in model_rebuild()
  • 8fbe658 Check if FieldInfo is complete after applying type variable map
  • 12b371a Update documentation about @dataclass_transform support
  • 3a6aef4 Fix missing link in documentation
  • 0506b9c Fix light/dark mode documentation toggle
  • 58078c8 Fix typo in documentation
  • d444cd1 Prepare release v2.11.4
  • 828fc48 Add documentation note about common pitfall with the annotated pattern
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.8.1 to 2.9.1

Release notes

Sourced from pydantic-settings's releases.

v2.9.1

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.9.0...v2.9.1

v2.9.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.8.1...v2.9.0

Commits

Updates sqlalchemy from 2.0.38 to 2.0.41

Release notes

Sourced from sqlalchemy's releases.

2.0.41

Released: May 14, 2025

platform

  • [platform] [bug] Adjusted the test suite as well as the ORM's method of scanning classes for annotations to work under current beta releases of Python 3.14 (currently 3.14.0b1) as part of an ongoing effort to support the production release of this Python release. Further changes to Python's means of working with annotations is expected in subsequent beta releases for which SQLAlchemy's test suite will need further adjustments.

    References: #12405

engine

  • [engine] [bug] The error message that is emitted when a URL cannot be parsed no longer includes the URL itself within the error message.

    References: #12579

typing

  • [typing] [bug] Removed __getattr__() rule from sqlalchemy/__init__.py that appeared to be trying to correct for a previous typographical error in the imports. This rule interferes with type checking and is removed.

    References: #12588

postgresql

  • [postgresql] [usecase] Added support for postgresql_include keyword argument to _schema.UniqueConstraint and _schema.PrimaryKeyConstraint. Pull request courtesy Denis Laxalde.

    References: #10665

mysql

  • [mysql] [bug] Fixed regression caused by the DEFAULT rendering changes in version 2.0.40 via #12425 where using lowercase on update in a MySQL server default would incorrectly apply parenthesis, leading to errors when MySQL interpreted the rendered DDL. Pull request courtesy Alexander Ruehe.

... (truncated)

Commits

Updates coverage from 7.6.12 to 7.8.2

Changelog

Sourced from coverage's changelog.

Version 7.8.2 — 2025年05月23日

  • Wheels are provided for Windows ARM64 on Python 3.11, 3.12, and 3.13. Thanks, Finn Womack <pull 1972_>_.

.. _issue 1971: nedbat/coveragepy#1971 .. _pull 1972: nedbat/coveragepy#1972

.. _changes_7-8-1:

Version 7.8.1 — 2025年05月21日

  • A number of EncodingWarnings were fixed that could appear if you've enabled PYTHONWARNDEFAULTENCODING, fixing issue 1966. Thanks, Henry Schreiner <pull 1967_>.

  • Fixed a race condition when using sys.monitoring with free-threading Python, closing issue 1970_.

.. _issue 1966: nedbat/coveragepy#1966 .. _pull 1967: nedbat/coveragepy#1967 .. _issue 1970: nedbat/coveragepy#1970

.. _changes_7-8-0:

Version 7.8.0 — 2025年03月30日

  • Added a new source_dirs setting for symmetry with the existing source_pkgs setting. It's preferable to the existing source setting, because you'll get a clear error when directories don't exist. Fixes issue 1942. Thanks, Jeremy Fleischman <pull 1943_>.

  • Fix: the PYTHONSAFEPATH environment variable new in Python 3.11 is properly supported, closing issue 1696. Thanks, Philipp A. <pull 1700_>. This works properly except for a detail when using the coverage command on Windows. There you can use python -m coverage instead if you need exact emulation.

.. _issue 1696: nedbat/coveragepy#1696 .. _pull 1700: nedbat/coveragepy#1700 .. _issue 1942: nedbat/coveragepy#1942 .. _pull 1943: nedbat/coveragepy#1943

.. _changes_7-7-1:

Version 7.7.1 — 2025年03月21日

... (truncated)

Commits
  • 51ab2e5 build: have to keep expected dist counts in sync
  • be7bbf2 docs: sample HTML for 7.8.2
  • 3cee850 docs: prep for 7.8.2
  • 39bc6b0 docs: provide more details if the kit matrix is edited.
  • a608fb3 build: add support for Windows arm64 (#1972)
  • 2fe6225 build: run tox lint if actions have changed
  • 3d93a78 docs: docs need scriv for making github releases
  • 0c443a2 build: bump version to 7.8.2
  • ed98b87 docs: sample HTML for 7.8.1
  • b98bc9b docs: prep for 7.8.1
  • Additional commits viewable in compare view

Updates freezegun from 1.5.1 to 1.5.2

Changelog

Sourced from freezegun's changelog.

1.5.2

  • Remove support for Python 3.7
  • Explicitly marks support for Python 3.13
  • Improved project documentation
Commits
  • ba06fa4 Increase version number
  • da2885d Merge pull request #572 from jayaddison/debian-bug-1106274/tests-datetime-tod...
  • 695aa15 Merge branch 'master' into debian-bug-1106274/tests-datetime-today-tz-localiz...
  • 132ecdb Merge pull request #573 from spulec/admin/indicate-py-13-compat
  • f9235ae Mark support for Python 3.13
  • 9072d08 Merge pull request #544 from spulec/remove-py-37-support
  • 74a6914 Merge pull request #565 from joethesaint/improve-documentation
  • 1343509 README: update example code for consistency with tests
  • 9468f70 Tests: fixup: replace datetime.today method calls with datetime.date clas...
  • 9e4012a Tests: restore some datetime.date-based comparisons
  • Additional commits viewable in compare view

Updates greenlet from 3.1.1 to 3.2.2

Changelog

Sourced from greenlet's changelog.

3.2.2 (2025年05月09日)

  • Make greenlet build and run on Python 3.14 beta 1. It will not run on earlier versions of 3.14; it should run on subsequent versions. See PR 445 <https://github.com/python-greenlet/greenlet/pull/445>_.

3.2.1 (2025年04月22日)

  • Fix a crash regression for Riscv64. See issue 443 <https://github.com/python-greenlet/greenlet/issues/443>_.

3.2.0 (2025年04月15日)

  • Remove support for Python 3.7 and 3.8.
  • Add untested, community supported implementation for RiscV 32. See PR 438 <https://github.com/python-greenlet/greenlet/pull/439>_.
  • Make greenlet build and run on Python 3.14a7. It will not build on earlier 3.14 alpha releases, and may not build on later 3.14 releases.
  • Packaging: Use :pep:639 license expressions and include license files.
Commits
  • 097bca9 Preparing release 3.2.2
  • 19673c7 Add change note for 3.14b1
  • 228dd59 Merge pull request #445 from vstinner/python314b1
  • a2f98dc GitHub Actions: Update to beta1
  • 3662688 Update to Python 3.14 beta 1
  • 9195828 Back to development: 3.2.2
  • 89be6d6 Preparing release 3.2.1
  • fc66f71 Change note for #444
  • e6237db Merge pull request #444 from python-greenlet/testing-riscv
  • d9eba21 MANIFEST.in: Include the new script, per check-manifest.
  • Additional commits viewable in compare view

Updates mypy from 1.15.0 to 1.16.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Mypy 1.16

We’ve just uploaded mypy 1.16 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Different Property Getter and Setter Types

Mypy now supports using different types for a property getter and setter:

class A:
 _value: int
@property
def foo(self) -&gt; int:
 return self._value
@foo.setter
def foo(self, x: str | int) -&gt; None:
try:
self._value = int(x)
except ValueError:
raise Exception(f&quot;'{x}' is not a valid value for 'foo'&quot;)

This was contributed by Ivan Levkivskyi (PR 18510).

Flexible Variable Redefinitions (Experimental)

Mypy now allows unannotated variables to be freely redefined with different types when using the experimental --allow-redefinition-new flag. You will also need to enable --local-partial-types. Mypy will now infer a union type when different types are assigned to a variable:

# mypy: allow-redefinition-new, local-partial-types
def f(n: int, b: bool) -> int | str:
if b:
x = n
else:
</tr></table>

... (truncated)

Commits
  • 9e72e96 Update version to 1.16.0
  • 8fe719f Add changelog for 1.16 (#19138)
  • 2a036e7 Revert "Infer correct types with overloads of Type[Guard | Is] (#19161)
  • b6da4fc Allow enum members to have type objects as values (#19160)
  • 334469f [mypyc] Improve documentation of native and non-native classes (#19154)
  • a499d9f Document --allow-redefinition-new (#19153)
  • 96525a2 Merge commit '9e45dadcf6d8dbab36f83d9df94a706c0b4f9207' into release-1.16
  • 9e45dad Clear more data in TypeChecker.reset() instead of asserting (#19087)
  • 772cd0c Add --strict-bytes to --strict (#19049)
  • 0b65f21 Admit that Final variables are never redefined (#19083)
  • Additional commits viewable in compare view

Updates pre-commit from 4.1.0 to 4.2.0

Release notes

Sourced from pre-commit's releases.

pre-commit v4.2.0

Features

  • For language: python first attempt a versioned python executable for the default language version before consulting a potentially unversioned sys.executable.

Fixes

Changelog

Sourced from pre-commit's changelog.

4.2.0 - 2025年03月18日

Features

  • For language: python first attempt a versioned python executable for the default language version before consulting a potentially unversioned sys.executable.

Fixes

Commits
  • aa48766 v4.2.0
  • bf6f11d Merge pull request #3430 from pre-commit/preferential-sys-impl
  • 3e8d0f5 adjust python default_language_version to prefer versioned exe
  • ff7256c Merge pull request #3425 from tusharsadhwani/ambiguous-ref
  • b7eb412 fix: crash on ambiguous ref 'HEAD'
  • 7b88c63 Merge pull request #3404 from pre-commit/pre-commit-ci-update-config
  • 94b97e2 [pre-commit.ci] pre-commit autoupdate
  • 2f93b80 Merge pull request #3401 from pre-commit/pre-commit-ci-update-config
  • 4f90a1e [pre-commit.ci] pre-commit autoupdate
  • aba1ce0 Merge pull request #3396 from pre-commit/all-repos_autofix_all-repos-sed
  • Additional commits viewable in compare view

Updates pytest from 8.3.4 to 8.3.5

Release notes

Sourced from pytest's releases.

8.3.5

pytest 8.3.5 (2025年03月02日)

Bug fixes

  • #11777: Fixed issue where sequences were still being shortened even with -vv verbosity.
  • #12888: Fixed broken input when using Python 3.13+ and a libedit build of Python, such as on macOS or with uv-managed Python binaries from the python-build-standalone project. This could manifest e.g. by a broken prompt when using Pdb, or seeing empty inputs with manual usage of input() and suspended capturing.
  • #13026: Fixed AttributeError{.interpreted-text role="class"} crash when using --import-mode=importlib when top-level directory same name as another module of the standard library.
  • #13053: Fixed a regression in pytest 8.3.4 where, when using --import-mode=importlib, a directory containing py file with the same name would cause an ImportError
  • #13083: Fixed issue where pytest could crash if one of the collected directories got removed during collection.

Improved documentation

  • #12842: Added dedicated page about using types with pytest.

    See types{.interpreted-text role="ref"} for detailed usage.

Contributor-facing changes

  • #13112: Fixed selftest failures in test_terminal.py with Pygments >= 2.19.0
  • #13256: Support for Towncrier versions released in 2024 has been re-enabled when building Sphinx docs -- by webknjaz{.interpreted-text role="user"}.
Commits

Updates pytest-asyncio from 0.25.3 to 0.26.0

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio 0.26.0

  • Adds configuration option that sets default event loop scope for all tests #793
  • Improved type annotations for pytest_asyncio.fixture #1045
  • Added typing-extensions as additional dependency for Python <3.10 #1045
Commits
  • 4f8ce45 docs: Prepare release of v0.26.0.
  • 498e8a7 Build(deps): Bump attrs from 25.1.0 to 25.3.0 in /dependencies/default
  • 01c22ff build: Update project metadata to use SPDX license identifier
  • 78191c9 [pre-commit.ci] pre-commit autoupdate
  • 9a45551 Build(deps): Bump hypothesis in /dependencies/default
  • 6680409 Build(deps): Bump coverage from 7.7.0 to 7.7.1 in /dependencies/default
  • aa82c57 Build(deps): Bump iniconfig from 2.0.0 to 2.1.0 in /dependencies/default
  • cca587e [pre-commit.ci] pre-commit autoupdate
  • 5d90b29 Build(deps): Bump hypothesis in /dependencies/default
  • c262262 Build(deps): Bump coverage from 7.6.12 to 7.7.0 in /dependencies/default
  • Additional commits viewable in compare view

Updates pytest-cov from 6.0.0 to 6.1.1

Changelog

Sourced from pytest-cov's changelog.

6.1.1 (2025年04月05日)

  • Fixed breakage that occurs when --cov-context and the no_cover marker are used together.

6.1.0 (2025年04月01日)

  • Change terminal output to use full width lines for the coverage header. Contributed by Tsvika Shapira in [#678](https://github.com/pytest-dev/pytest-cov/issues/678) <https://github.com/pytest-dev/pytest-cov/pull/678>_.
  • Removed unnecessary CovFailUnderWarning. Fixes [#675](https://github.com/pytest-dev/pytest-cov/issues/675) <https://github.com/pytest-dev/pytest-cov/issues/675>_.
  • Fixed the term report not using the precision specified via --cov-precision.
Commits
  • 9463242 Bump version: 6.1.0 → 6.1.1
  • 7f2781b Update changelog.
  • a59548f Allow the context plugin to check if the controller is running or not. Fixes ...
  • 10f8cde Bump version: 6.0.0 → 6.1.0
  • 10b14af Update changelog.
  • aa57aed Refactor a bit the internals to be a bit less boilerplatey and have more clar...
  • e760099 Make sure the CLI precision is used when creating report. Fixes #674.
  • 44540e1 Remove unnecessary CovFailUnderWarning. Closes

Bumps the all-dependencies group with 36 updates:
| Package | From | To |
| --- | --- | --- |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.14.1` | `1.16.1` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.10` | `0.115.12` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.6` | `2.11.5` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.8.1` | `2.9.1` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.38` | `2.0.41` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.12` | `7.8.2` |
| [freezegun](https://github.com/spulec/freezegun) | `1.5.1` | `1.5.2` |
| [greenlet](https://github.com/python-greenlet/greenlet) | `3.1.1` | `3.2.2` |
| [mypy](https://github.com/python/mypy) | `1.15.0` | `1.16.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.1.0` | `4.2.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.4` | `8.3.5` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.3` | `0.26.0` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.0.0` | `6.1.1` |
| [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) | `3.6.1` | `3.7.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.9.9` | `0.11.12` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.34.0` | `0.34.3` |
| [anyio](https://github.com/agronholm/anyio) | `4.8.0` | `4.9.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2025年1月31日` | `2025年4月26日` |
| [click](https://github.com/pallets/click) | `8.1.8` | `8.2.1` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.17.0` | `3.18.0` |
| [h11](https://github.com/python-hyper/h11) | `0.14.0` | `0.16.0` |
| [httpcore](https://github.com/encode/httpcore) | `1.0.7` | `1.0.9` |
| [identify](https://github.com/pre-commit/identify) | `2.6.8` | `2.6.12` |
| [iniconfig](https://github.com/pytest-dev/iniconfig) | `2.0.0` | `2.1.0` |
| [mako](https://github.com/sqlalchemy/mako) | `1.3.9` | `1.3.10` |
| [mypy-extensions](https://github.com/python/mypy_extensions) | `1.0.0` | `1.1.0` |
| [packaging](https://github.com/pypa/packaging) | `24.2` | `25.0` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.3.6` | `4.3.8` |
| [pluggy](https://github.com/pytest-dev/pluggy) | `1.5.0` | `1.6.0` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.27.2` | `2.33.2` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.1` | `1.1.0` |
| [starlette](https://github.com/encode/starlette) | `0.46.0` | `0.46.2` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.12.2` | `4.13.2` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.29.2` | `20.31.2` |
| [watchfiles](https://github.com/samuelcolvin/watchfiles) | `1.0.4` | `1.0.5` |
| [websockets](https://github.com/python-websockets/websockets) | `15.0` | `15.0.1` |
Updates `alembic` from 1.14.1 to 1.16.1
- [Release notes](https://github.com/sqlalchemy/alembic/releases)
- [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/alembic/commits)
Updates `fastapi` from 0.115.10 to 0.115.12
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.10...0.115.12)
Updates `pydantic` from 2.10.6 to 2.11.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.10.6...v2.11.5)
Updates `pydantic-settings` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.8.1...v2.9.1)
Updates `sqlalchemy` from 2.0.38 to 2.0.41
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)
Updates `coverage` from 7.6.12 to 7.8.2
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.12...7.8.2)
Updates `freezegun` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/spulec/freezegun/releases)
- [Changelog](https://github.com/spulec/freezegun/blob/master/CHANGELOG)
- [Commits](spulec/freezegun@1.5.1...1.5.2)
Updates `greenlet` from 3.1.1 to 3.2.2
- [Changelog](https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst)
- [Commits](python-greenlet/greenlet@3.1.1...3.2.2)
Updates `mypy` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.16.0)
Updates `pre-commit` from 4.1.0 to 4.2.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.2.0)
Updates `pytest` from 8.3.4 to 8.3.5
- [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.4...8.3.5)
Updates `pytest-asyncio` from 0.25.3 to 0.26.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.25.3...v0.26.0)
Updates `pytest-cov` from 6.0.0 to 6.1.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.0.0...v6.1.1)
Updates `pytest-xdist` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/pytest-dev/pytest-xdist/releases)
- [Changelog](https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-xdist@v3.6.1...v3.7.0)
Updates `ruff` from 0.9.9 to 0.11.12
- [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.9.9...0.11.12)
Updates `uvicorn` from 0.34.0 to 0.34.3
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.34.0...0.34.3)
Updates `anyio` from 4.8.0 to 4.9.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.8.0...4.9.0)
Updates `certifi` from 2025年1月31日 to 2025年4月26日
- [Commits](certifi/python-certifi@2025年01月31日...2025年04月26日)
Updates `click` from 8.1.8 to 8.2.1
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.1.8...8.2.1)
Updates `filelock` from 3.17.0 to 3.18.0
- [Release notes](https://github.com/tox-dev/py-filelock/releases)
- [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
- [Commits](tox-dev/filelock@3.17.0...3.18.0)
Updates `h11` from 0.14.0 to 0.16.0
- [Commits](python-hyper/h11@v0.14.0...v0.16.0)
Updates `httpcore` from 1.0.7 to 1.0.9
- [Release notes](https://github.com/encode/httpcore/releases)
- [Changelog](https://github.com/encode/httpcore/blob/master/CHANGELOG.md)
- [Commits](encode/httpcore@1.0.7...1.0.9)
Updates `identify` from 2.6.8 to 2.6.12
- [Commits](pre-commit/identify@v2.6.8...v2.6.12)
Updates `iniconfig` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/pytest-dev/iniconfig/releases)
- [Changelog](https://github.com/pytest-dev/iniconfig/blob/main/CHANGELOG)
- [Commits](pytest-dev/iniconfig@v2.0.0...v2.1.0)
Updates `mako` from 1.3.9 to 1.3.10
- [Release notes](https://github.com/sqlalchemy/mako/releases)
- [Changelog](https://github.com/sqlalchemy/mako/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/mako/commits)
Updates `mypy-extensions` from 1.0.0 to 1.1.0
- [Commits](python/mypy_extensions@1.0.0...1.1.0)
Updates `packaging` from 24.2 to 25.0
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@24.2...25.0)
Updates `platformdirs` from 4.3.6 to 4.3.8
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@4.3.6...4.3.8)
Updates `pluggy` from 1.5.0 to 1.6.0
- [Changelog](https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pluggy@1.5.0...1.6.0)
Updates `pydantic-core` from 2.27.2 to 2.33.2
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.27.2...v2.33.2)
Updates `python-dotenv` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.1...v1.1.0)
Updates `starlette` from 0.46.0 to 0.46.2
- [Release notes](https://github.com/encode/starlette/releases)
- [Changelog](https://github.com/encode/starlette/blob/master/docs/release-notes.md)
- [Commits](Kludex/starlette@0.46.0...0.46.2)
Updates `typing-extensions` from 4.12.2 to 4.13.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.12.2...4.13.2)
Updates `virtualenv` from 20.29.2 to 20.31.2
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.29.2...20.31.2)
Updates `watchfiles` from 1.0.4 to 1.0.5
- [Release notes](https://github.com/samuelcolvin/watchfiles/releases)
- [Commits](samuelcolvin/watchfiles@v1.0.4...v1.0.5)
Updates `websockets` from 15.0 to 15.0.1
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@15.0...15.0.1)
---
updated-dependencies:
- dependency-name: alembic
 dependency-version: 1.16.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: fastapi
 dependency-version: 0.115.12
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: pydantic
 dependency-version: 2.11.5
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: pydantic-settings
 dependency-version: 2.9.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: sqlalchemy
 dependency-version: 2.0.41
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: coverage
 dependency-version: 7.8.2
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: freezegun
 dependency-version: 1.5.2
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: greenlet
 dependency-version: 3.2.2
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: mypy
 dependency-version: 1.16.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: pre-commit
 dependency-version: 4.2.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: pytest
 dependency-version: 8.3.5
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: pytest-asyncio
 dependency-version: 0.26.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: pytest-cov
 dependency-version: 6.1.1
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: pytest-xdist
 dependency-version: 3.7.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: ruff
 dependency-version: 0.11.12
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: uvicorn
 dependency-version: 0.34.3
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: anyio
 dependency-version: 4.9.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: certifi
 dependency-version: 2025年4月26日
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: click
 dependency-version: 8.2.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: filelock
 dependency-version: 3.18.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: h11
 dependency-version: 0.16.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: httpcore
 dependency-version: 1.0.9
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: identify
 dependency-version: 2.6.12
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: iniconfig
 dependency-version: 2.1.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: mako
 dependency-version: 1.3.10
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: mypy-extensions
 dependency-version: 1.1.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: packaging
 dependency-version: '25.0'
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: all-dependencies
- dependency-name: platformdirs
 dependency-version: 4.3.8
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: pluggy
 dependency-version: 1.6.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: pydantic-core
 dependency-version: 2.33.2
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: python-dotenv
 dependency-version: 1.1.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: starlette
 dependency-version: 0.46.2
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: typing-extensions
 dependency-version: 4.13.2
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: virtualenv
 dependency-version: 20.31.2
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: watchfiles
 dependency-version: 1.0.5
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: websockets
 dependency-version: 15.0.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
...
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 Jun 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 2, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot deleted the dependabot/pip/all-dependencies-6251e80530 branch June 2, 2025 20:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

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

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant

AltStyle によって変換されたページ (->オリジナル) /