Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 9, 2025

Bumps the python-dependencies group with 46 updates:

Package From To
sentry-sdk 2.19.0 2.25.1
pydantic 2.10.1 2.11.3
pydantic-settings 2.6.1 2.8.1
uvicorn-worker 0.2.0 0.3.0
imsosorry 1.2.1 1.3.0
sphinx 8.1.3 8.2.3
sphinx-autoapi 3.3.3 3.6.0
anyio 4.6.2.post1 4.9.0
argcomplete 3.5.1 3.6.2
astroid 3.3.5 3.3.9
babel 2.16.0 2.17.0
beautifulsoup4 4.12.3 4.13.3
certifi 2024.8.30 2025.1.31
charset-normalizer 3.4.0 3.4.1
click 8.1.7 8.1.8
coverage 7.6.7 7.8.0
faker 33.0.0 37.1.0
filelock 3.16.1 3.18.0
httpx 0.27.2 0.28.1
identify 2.6.2 2.6.9
iniconfig 2.0.0 2.1.0
jinja2 3.1.4 3.1.6
litestar 2.13.0 2.15.2
litestar-htmx 0.3.0 0.4.1
msgspec 0.18.6 0.19.0
multidict 6.1.0 6.2.0
mypy 1.13.0 1.15.0
nox 2024.10.9 2025.2.9
platformdirs 4.3.6 4.3.7
polyfactory 2.18.0 2.20.0
pre-commit 4.0.1 4.2.0
pydantic-core 2.27.1 2.33.1
pygments 2.18.0 2.19.1
pytest 8.3.3 8.3.5
python-dotenv 1.0.1 1.1.0
rich 13.9.4 14.0.0
rich-click 1.8.4 1.8.8
ruff 0.8.0 0.11.4
semantic-version 2.6.0 2.10.0
six 1.16.0 1.17.0
typing-extensions 4.12.2 4.13.1
urllib3 2.2.3 2.3.0
uvicorn 0.32.1 0.34.0
virtualenv 20.27.1 20.30.0
watchfiles 0.24.0 1.0.5
websockets 14.1 15.0.1

Updates sentry-sdk from 2.19.0 to 2.25.1

Release notes

Sourced from sentry-sdk's releases.

2.25.1

Various fixes & improvements

2.25.0

Various fixes & improvements

  • New Beta Feature Enable Sentry logs in logging Integration (#4143) by @​colin-sentry

    You can now send existing log messages to the new Sentry Logs feature.

    For more information see: Logs in Sentry 🚀 - Generally Available getsentry/sentry#86804

    This is how you can use it (Sentry Logs is in beta right now so the API can still change):

    import logging
    import sentry_sdk
    from sentry_sdk.integrations.logging import LoggingIntegration
    Setup Sentry SDK to send log messages with a level of "error" or higher to Sentry.
    sentry_sdk.init(
    dsn="...",
    _experiments={
    "enable_sentry_logs": True
    }
    integrations=[
    LoggingIntegration(sentry_logs_level=logging.ERROR),
    ]
    )
    Your existing logging setup
    some_logger = logging.Logger("some-logger")
    some_logger.info('In this example info events will not be sent to Sentry logs. my_value=%s', my_value)
    some_logger.error('But error events will be sent to Sentry logs. my_value=%s', my_value)

  • Spotlight: Sample everything 100% w/ Spotlight & no DSN set (#4207) by @​BYK

  • Dramatiq: use set_transaction_name (#4175) by @​timdrijvers

  • toxgen: Make it clearer which suites can be migrated (#4196) by @​sentrivana

  • Move Litestar under toxgen (#4197) by @​sentrivana

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.25.1

Various fixes & improvements

2.25.0

Various fixes & improvements

  • New Beta Feature Enable Sentry logs in logging Integration (#4143) by @​colin-sentry

    You can now send existing log messages to the new Sentry Logs feature.

    For more information see: Logs in Sentry 🚀 - Generally Available getsentry/sentry#86804

    This is how you can use it (Sentry Logs is in beta right now so the API can still change):

    import logging
    import sentry_sdk
    from sentry_sdk.integrations.logging import LoggingIntegration
    Setup Sentry SDK to send log messages with a level of "error" or higher to Sentry.
    sentry_sdk.init(
    dsn="...",
    _experiments={
    "enable_sentry_logs": True
    }
    integrations=[
    LoggingIntegration(sentry_logs_level=logging.ERROR),
    ]
    )
    Your existing logging setup
    some_logger = logging.Logger("some-logger")
    some_logger.info('In this example info events will not be sent to Sentry logs. my_value=%s', my_value)
    some_logger.error('But error events will be sent to Sentry logs. my_value=%s', my_value)

  • Spotlight: Sample everything 100% w/ Spotlight & no DSN set (#4207) by @​BYK

  • Dramatiq: use set_transaction_name (#4175) by @​timdrijvers

... (truncated)

Commits
  • d42e632 Updated changelog
  • d7cf510 release: 2.25.1
  • c254ba4 feat(ourlogs): Add a class which batches groups of logs together. (#4229)
  • 438ee01 Debug output from Sentry logs should always be debug level. (#4224)
  • e4b8dae fix(ai): Do not consume anthropic streaming stop (#4232)
  • 8b40aa0 fix(ourlogs): Use repr instead of json for message and arguments (#4227)
  • 2dde2fe build(deps): bump actions/create-github-app-token from 1.11.7 to 1.12.0 (#4214)
  • d0d70a5 feat: Do not spam sentry_sdk.warnings logger w/ Spotlight (#4219)
  • 4dcd538 fixed code snippet (#4218)
  • ee97003 Merge branch 'release/2.25.0'
  • Additional commits viewable in compare view

Updates pydantic from 2.10.1 to 2.11.3

Release notes

Sourced from pydantic's releases.

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

Fixes

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

v2.11.1 2025-03-28

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.0...v2.11.1

v2.11.0 2025-03-27

What's Changed

Packaging

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.11.3 (2025-04-08)

GitHub release

What's Changed

Packaging

Fixes

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

v2.11.2 (2025-04-03)

GitHub release

What's Changed

Fixes

  • Bump pydantic-core to v2.33.1 by @​Viicos in #11678
  • Make sure __pydantic_private__ exists before setting private attributes by @​Viicos in #11666
  • Do not override FieldInfo._complete when using field from parent class by @​Viicos in #11668
  • Provide the available definitions when applying discriminated unions by @​Viicos in #11670
  • Do not expand root type in the mypy plugin for variables by @​Viicos in #11676
  • Mention the attribute name in model fields deprecation message by @​Viicos in #11674
  • Properly validate parameterized mappings by @​Viicos in #11658

v2.11.1 (2025-03-28)

GitHub release

What's Changed

Fixes

  • Do not override 'definitions-ref' schemas containing serialization schemas or metadata by @​Viicos in #11644

v2.11.0 (2025-03-27)

GitHub release

What's Changed

Pydantic v2.11 is a version strongly focused on build time performance of Pydantic models (and core schema generation in general). See the blog post for more details.

Packaging

... (truncated)

Commits

Updates pydantic-settings from 2.6.1 to 2.8.1

Release notes

Sourced from pydantic-settings's releases.

v2.8.1

What's Changed

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

v2.8.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.7.1...v2.8.0

v2.7.1

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.7.0...v2.7.1

v2.7.0

What's Changed

... (truncated)

Commits

Updates uvicorn-worker from 0.2.0 to 0.3.0

Release notes

Sourced from uvicorn-worker's releases.

Version 0.3.0

What's Changed

Full Changelog: Kludex/uvicorn-worker@0.2.0...0.3.0

Commits

Updates imsosorry from 1.2.1 to 1.3.0

Release notes

Sourced from imsosorry's releases.

v1.3.0

What's Changed

Full Changelog: letsbuilda/imsosorry@v1.2.3...v1.3.0

v1.2.3

What's Changed

Full Changelog: letsbuilda/imsosorry@v1.2.2...v1.2.3

v1.2.2

What's Changed

... (truncated)

Commits

Updates sphinx from 8.1.3 to 8.2.3

Release notes

Sourced from sphinx's releases.

Sphinx 8.2.3

Changelog: https://www.sphinx-doc.org/en/master/changes/8.2.html

Sphinx 8.2.2

Changelog: https://www.sphinx-doc.org/en/master/changes/8.2.html

Sphinx 8.2.1

Changelog: https://www.sphinx-doc.org/en/master/changes/8.2.html

Sphinx 8.2.0

Changelog: https://www.sphinx-doc.org/en/master/changes/8.2.html

Dependencies

  • #13000: Drop Python 3.10 support.

Incompatible changes

  • #13044: Remove the internal and undocumented has_equations data from the MathDomain domain. The undocumented MathDomain.has_equations method now unconditionally returns True. These are replaced by the has_maths_elements key of the page context dict. Patch by Adam Turner.
  • #13227: HTML output for sequences of keys in the kbd role no longer uses a <kbd class="kbd compound"> element to wrap the keys and separators, but places them directly in the relevant parent node. This means that CSS rulesets targeting kbd.compound or .kbd.compound will no longer have any effect. Patch by Adam Turner.

Deprecated

  • #13037: Deprecate the SingleHTMLBuilder.fix_refuris method. Patch by James Addison.
  • #13083, #13330: Un-deprecate sphinx.util.import_object. Patch by Matthias Geier.

Features added

  • #13173: Add a new duplicate_declaration warning type, with duplicate_declaration.c and duplicate_declaration.cpp subtypes. Patch by Julien Lecomte and Adam Turner.
  • #11824: linkcode: Allow extensions to add support for a domain by defining the keys that should be present.

... (truncated)

Commits
  • 847ad0c Bump to 8.2.3 final
  • 4091fe3 Add CHANGES for Sphinx 8.2.3
  • c84c21f Correct the date for Sphinx 8.2.2
  • b3881bb Fix _CurrentDocument membership testing with '{c,cpp}:parent_symbol'
  • 92b5303 Define _StrPath.__radd__()
  • 5739a9d Bump version
  • ee96ef3 Bump to 8.2.2 final
  • 3e0021c Move Sphinx 8.2.2 CHANGES to doc/changes
  • 1a62f31 Fix apidoc extension not setting default header/package name (#13391)
  • 13d2899 Replace None filename with '' in Sphinx.add_js_file() (#13402)
  • Additional commits viewable in compare view

Updates sphinx-autoapi from 3.3.3 to 3.6.0

Release notes

Sourced from sphinx-autoapi's releases.

v3.6.0

Features

  • Render type aliases properly rather than as an assignment (#414)

Misc

  • Drop support for Python 3.8
  • Fix readthedocs build

v3.5.0

Features

  • Can exclude directories from being documented (#312)

Bugfixes

  • Fix exception when calling a function imported from a wildcard (#508)
  • Remove usage of astroid alpha builds (#512)

Misc

v3.4.0

Features

  • NamedTuples that have been created with functional syntax are documented as a class (#485)

Misc

Changelog

Sourced from sphinx-autoapi's changelog.

v3.6.0 (2025-02-17)

Features ^^^^^^^^

  • Render type aliases properly rather than as an assignment (#414)

Misc ^^^^

  • Drop support for Python 3.8
  • Fix readthedocs build

v3.5.0 (2025-02-09)

Features ^^^^^^^^

  • Can exclude directories from being documented (#312)

Bugfixes ^^^^^^^^

  • Fix exception when calling a function imported from a wildcard (#508)
  • Remove usage of astroid alpha builds (#512)

Misc ^^^^

v3.4.0 (2024-11-29)

Features ^^^^^^^^

  • NamedTuples that have been created with functional syntax are documented as a class (#485)

Misc ^^^^

... (truncated)

Commits
  • 6dae5a3 Version 3.6.0
  • b846a0c Render type aliases properly rather than as an assignment
  • 5af3ffe Drop support for Python 3.8
  • 2adc083 Use latest OS and Python on readthedocs
  • 3ec34fe Fix readthedocs build
  • 26bd172 Version 3.5.0
  • 086dff8 Fixes for PR #503
  • b4c75f7 Allow skipping entire directories
  • a7a973d Make _need_to_load not assume that file ordering remained the same
  • 6fdc914 Fix inclusion of tests in the sdist
  • Additional commits viewable in compare view

Updates anyio from 4.6.2.post1 to 4.9.0

Release notes

Sourced from anyio's releases.

4.9.0

  • Added async support for temporary file handling (#344; PR by @​11kkw)
  • Added 4 new fixtures for the AnyIO pytest plugin:
    • free_tcp_port_factory: session scoped fixture returning a callable that generates unused TCP port numbers
    • free_udp_port_factory: session scoped fixture returning a callable that generates unused UDP port numbers
    • free_tcp_port: function scoped fixture that invokes the free_tcp_port_factory fixture to generate a free TCP port number
    • free_udp_port: function scoped fixture that invokes the free_udp_port_factory fixture to generate a free UDP port number
  • Added stdin argument to anyio.run_process() akin to what anyio.open_process(), asyncio.create_subprocess(), trio.run_process(), and subprocess.run() already accept (PR by @​jmehnle)
  • Added the info property to anyio.Path on Python 3.14
  • Changed anyio.getaddrinfo() to ignore (invalid) IPv6 name resolution results when IPv6 support is disabled in Python
  • Changed EndOfStream raised from MemoryObjectReceiveStream.receive() to leave out the AttributeError from the exception chain which was merely an implementation detail and caused some confusion
  • Fixed traceback formatting growing quadratically with level of TaskGroup nesting on asyncio due to exception chaining when raising ExceptionGroups in TaskGroup.__aexit__ (#863; PR by @​tapetersen)
  • Fixed anyio.Path.iterdir() making a blocking call in Python 3.13 (#873; PR by @​cbornet and @​agronholm)
  • Fixed connect_tcp() producing cyclic references in tracebacks when raising exceptions (#809; PR by @​graingert)
  • Fixed anyio.to_thread.run_sync() needlessly holding on to references of the context, function, arguments and others until the next work item on asyncio (PR by @​Wankupi)

4.8.0

  • Added experimental support for running functions in subinterpreters on Python 3.13 and later
  • Added support for the copy(), copy_into(), move() and move_into() methods in anyio.Path, available in Python 3.14
  • Changed TaskGroup on asyncio to always spawn tasks non-eagerly, even if using a task factory created via asyncio.create_eager_task_factory(), to preserve expected Trio-like task scheduling semantics (PR by @​agronholm and @​graingert)
  • Configure SO_RCVBUF, SO_SNDBUF and TCP_NODELAY on the selector thread waker socket pair (this should improve the performance of wait_readable() and wait_writable() when using the ProactorEventLoop) (#836; PR by @​graingert)
  • Fixed AssertionError when using nest-asyncio (#840)
  • Fixed return type annotation of various context managers' __exit__ method (#847; PR by @​Enegg)

4.7.0

  • Updated TaskGroup to work with asyncio's eager task factories (#764)
  • Added the wait_readable() and wait_wri...

    Description has been truncated

Bumps the python-dependencies group with 46 updates:

| Package | From | To |
| --- | --- | --- |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.19.0` | `2.25.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.1` | `2.11.3` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.6.1` | `2.8.1` |
| [uvicorn-worker](https://github.com/Kludex/uvicorn-worker) | `0.2.0` | `0.3.0` |
| [imsosorry](https://github.com/letsbuilda/imsosorry) | `1.2.1` | `1.3.0` |
| [sphinx](https://github.com/sphinx-doc/sphinx) | `8.1.3` | `8.2.3` |
| [sphinx-autoapi](https://github.com/readthedocs/sphinx-autoapi) | `3.3.3` | `3.6.0` |
| [anyio](https://github.com/agronholm/anyio) | `4.6.2.post1` | `4.9.0` |
| [argcomplete](https://github.com/kislyuk/argcomplete) | `3.5.1` | `3.6.2` |
| [astroid](https://github.com/pylint-dev/astroid) | `3.3.5` | `3.3.9` |
| [babel](https://github.com/python-babel/babel) | `2.16.0` | `2.17.0` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.12.3` | `4.13.3` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.8.30` | `2025.1.31` |
| [charset-normalizer](https://github.com/jawah/charset_normalizer) | `3.4.0` | `3.4.1` |
| [click](https://github.com/pallets/click) | `8.1.7` | `8.1.8` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.7` | `7.8.0` |
| [faker](https://github.com/joke2k/faker) | `33.0.0` | `37.1.0` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.16.1` | `3.18.0` |
| [httpx](https://github.com/encode/httpx) | `0.27.2` | `0.28.1` |
| [identify](https://github.com/pre-commit/identify) | `2.6.2` | `2.6.9` |
| [iniconfig](https://github.com/pytest-dev/iniconfig) | `2.0.0` | `2.1.0` |
| [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.6` |
| [litestar](https://github.com/litestar-org/litestar) | `2.13.0` | `2.15.2` |
| litestar-htmx | `0.3.0` | `0.4.1` |
| [msgspec](https://github.com/jcrist/msgspec) | `0.18.6` | `0.19.0` |
| [multidict](https://github.com/aio-libs/multidict) | `6.1.0` | `6.2.0` |
| [mypy](https://github.com/python/mypy) | `1.13.0` | `1.15.0` |
| [nox](https://github.com/wntrblm/nox) | `2024.10.9` | `2025.2.9` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.3.6` | `4.3.7` |
| [polyfactory](https://github.com/litestar-org/polyfactory) | `2.18.0` | `2.20.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.0.1` | `4.2.0` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.27.1` | `2.33.1` |
| [pygments](https://github.com/pygments/pygments) | `2.18.0` | `2.19.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.5` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.1` | `1.1.0` |
| [rich](https://github.com/Textualize/rich) | `13.9.4` | `14.0.0` |
| [rich-click](https://github.com/ewels/rich-click) | `1.8.4` | `1.8.8` |
| [ruff](https://github.com/astral-sh/ruff) | `0.8.0` | `0.11.4` |
| [semantic-version](https://github.com/rbarrois/python-semanticversion) | `2.6.0` | `2.10.0` |
| [six](https://github.com/benjaminp/six) | `1.16.0` | `1.17.0` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.12.2` | `4.13.1` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.2.3` | `2.3.0` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.32.1` | `0.34.0` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.27.1` | `20.30.0` |
| [watchfiles](https://github.com/samuelcolvin/watchfiles) | `0.24.0` | `1.0.5` |
| [websockets](https://github.com/python-websockets/websockets) | `14.1` | `15.0.1` |


Updates `sentry-sdk` from 2.19.0 to 2.25.1
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.19.0...2.25.1)

Updates `pydantic` from 2.10.1 to 2.11.3
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.10.1...v2.11.3)

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

Updates `uvicorn-worker` from 0.2.0 to 0.3.0
- [Release notes](https://github.com/Kludex/uvicorn-worker/releases)
- [Commits](Kludex/uvicorn-worker@0.2.0...0.3.0)

Updates `imsosorry` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/letsbuilda/imsosorry/releases)
- [Commits](letsbuilda/imsosorry@v1.2.1...v1.3.0)

Updates `sphinx` from 8.1.3 to 8.2.3
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v8.1.3...v8.2.3)

Updates `sphinx-autoapi` from 3.3.3 to 3.6.0
- [Release notes](https://github.com/readthedocs/sphinx-autoapi/releases)
- [Changelog](https://github.com/readthedocs/sphinx-autoapi/blob/main/CHANGELOG.rst)
- [Commits](readthedocs/sphinx-autoapi@v3.3.3...v3.6.0)

Updates `anyio` from 4.6.2.post1 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.6.2.post1...4.9.0)

Updates `argcomplete` from 3.5.1 to 3.6.2
- [Release notes](https://github.com/kislyuk/argcomplete/releases)
- [Changelog](https://github.com/kislyuk/argcomplete/blob/main/Changes.rst)
- [Commits](kislyuk/argcomplete@v3.5.1...v3.6.2)

Updates `astroid` from 3.3.5 to 3.3.9
- [Release notes](https://github.com/pylint-dev/astroid/releases)
- [Changelog](https://github.com/pylint-dev/astroid/blob/main/ChangeLog)
- [Commits](pylint-dev/astroid@v3.3.5...v3.3.9)

Updates `babel` from 2.16.0 to 2.17.0
- [Release notes](https://github.com/python-babel/babel/releases)
- [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst)
- [Commits](python-babel/babel@v2.16.0...v2.17.0)

Updates `beautifulsoup4` from 4.12.3 to 4.13.3

Updates `certifi` from 2024.8.30 to 2025.1.31
- [Commits](certifi/python-certifi@2024.08.30...2025.01.31)

Updates `charset-normalizer` from 3.4.0 to 3.4.1
- [Release notes](https://github.com/jawah/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.4.0...3.4.1)

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

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

Updates `faker` from 33.0.0 to 37.1.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v33.0.0...v37.1.0)

Updates `filelock` from 3.16.1 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.16.1...3.18.0)

Updates `httpx` from 0.27.2 to 0.28.1
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.27.2...0.28.1)

Updates `identify` from 2.6.2 to 2.6.9
- [Commits](pre-commit/identify@v2.6.2...v2.6.9)

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 `jinja2` from 3.1.4 to 3.1.6
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.4...3.1.6)

Updates `litestar` from 2.13.0 to 2.15.2
- [Release notes](https://github.com/litestar-org/litestar/releases)
- [Commits](litestar-org/litestar@v2.13.0...v2.15.2)

Updates `litestar-htmx` from 0.3.0 to 0.4.1

Updates `msgspec` from 0.18.6 to 0.19.0
- [Release notes](https://github.com/jcrist/msgspec/releases)
- [Commits](jcrist/msgspec@0.18.6...0.19.0)

Updates `multidict` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/aio-libs/multidict/releases)
- [Changelog](https://github.com/aio-libs/multidict/blob/master/CHANGES.rst)
- [Commits](aio-libs/multidict@v6.1.0...v6.2.0)

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

Updates `nox` from 2024.10.9 to 2025.2.9
- [Release notes](https://github.com/wntrblm/nox/releases)
- [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md)
- [Commits](wntrblm/nox@2024.10.09...2025.02.09)

Updates `platformdirs` from 4.3.6 to 4.3.7
- [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.7)

Updates `polyfactory` from 2.18.0 to 2.20.0
- [Release notes](https://github.com/litestar-org/polyfactory/releases)
- [Changelog](https://github.com/litestar-org/polyfactory/blob/main/docs/changelog.rst)
- [Commits](litestar-org/polyfactory@v2.18.0...v2.20.0)

Updates `pre-commit` from 4.0.1 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.0.1...v4.2.0)

Updates `pydantic-core` from 2.27.1 to 2.33.1
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.27.1...v2.33.1)

Updates `pygments` from 2.18.0 to 2.19.1
- [Release notes](https://github.com/pygments/pygments/releases)
- [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES)
- [Commits](pygments/pygments@2.18.0...2.19.1)

Updates `pytest` from 8.3.3 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.3...8.3.5)

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 `rich` from 13.9.4 to 14.0.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.9.4...v14.0.0)

Updates `rich-click` from 1.8.4 to 1.8.8
- [Release notes](https://github.com/ewels/rich-click/releases)
- [Changelog](https://github.com/ewels/rich-click/blob/main/CHANGELOG.md)
- [Commits](ewels/rich-click@v1.8.4...v1.8.8)

Updates `ruff` from 0.8.0 to 0.11.4
- [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.8.0...0.11.4)

Updates `semantic-version` from 2.6.0 to 2.10.0
- [Changelog](https://github.com/rbarrois/python-semanticversion/blob/master/ChangeLog)
- [Commits](rbarrois/python-semanticversion@v2.6.0...2.10.0)

Updates `six` from 1.16.0 to 1.17.0
- [Changelog](https://github.com/benjaminp/six/blob/main/CHANGES)
- [Commits](benjaminp/six@1.16.0...1.17.0)

Updates `typing-extensions` from 4.12.2 to 4.13.1
- [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.1)

Updates `urllib3` from 2.2.3 to 2.3.0
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.2.3...2.3.0)

Updates `uvicorn` from 0.32.1 to 0.34.0
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.32.1...0.34.0)

Updates `virtualenv` from 20.27.1 to 20.30.0
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.27.1...20.30.0)

Updates `watchfiles` from 0.24.0 to 1.0.5
- [Release notes](https://github.com/samuelcolvin/watchfiles/releases)
- [Commits](samuelcolvin/watchfiles@v0.24.0...v1.0.5)

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

---
updated-dependencies:
- dependency-name: sentry-sdk
  dependency-version: 2.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pydantic
  dependency-version: 2.11.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pydantic-settings
  dependency-version: 2.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: uvicorn-worker
  dependency-version: 0.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: imsosorry
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: sphinx
  dependency-version: 8.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: sphinx-autoapi
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: anyio
  dependency-version: 4.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: argcomplete
  dependency-version: 3.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: astroid
  dependency-version: 3.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: babel
  dependency-version: 2.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: beautifulsoup4
  dependency-version: 4.13.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: certifi
  dependency-version: 2025.1.31
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: charset-normalizer
  dependency-version: 3.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: click
  dependency-version: 8.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: coverage
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: faker
  dependency-version: 37.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: filelock
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: httpx
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: identify
  dependency-version: 2.6.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: iniconfig
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: jinja2
  dependency-version: 3.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: litestar
  dependency-version: 2.15.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: litestar-htmx
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: msgspec
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: multidict
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: mypy
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: nox
  dependency-version: 2025.2.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: platformdirs
  dependency-version: 4.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: polyfactory
  dependency-version: 2.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pre-commit
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pydantic-core
  dependency-version: 2.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pygments
  dependency-version: 2.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: python-dotenv
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: rich
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: rich-click
  dependency-version: 1.8.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.11.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: semantic-version
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: six
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: typing-extensions
  dependency-version: 4.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: urllib3
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: uvicorn
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: virtualenv
  dependency-version: 20.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: watchfiles
  dependency-version: 1.0.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: websockets
  dependency-version: 15.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-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 Apr 9, 2025
@shenanigansd
Copy link
Member

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 9, 2025

The dependabot.yml entry that created this PR has been deleted so this PR can't be rebased. Please close the PR so Dependabot can create a new one with the current dependabot.yml.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 9, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/pip/python-dependencies-c14718f6b7 branch April 9, 2025 04:13
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.

2 participants