Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2025

Bumps the python-minor-versions group with 6 updates in the /12087 directory:

Package From To
fastapi 0.115.14 0.123.8
sentry-sdk 2.46.0 2.47.0
botocore 1.41.2 1.42.2
opentelemetry-propagator-jaeger 1.38.0 1.39.0
asyncpg 0.30.0 0.31.0
mypy 1.18.2 1.19.0

Updates fastapi from 0.115.14 to 0.123.8

Release notes

Sourced from fastapi's releases.

0.123.8

Fixes

  • 🐛 Fix OpenAPI security scheme OAuth2 scopes declaration, deduplicate security schemes with different scopes. PR #14455 by @​tiangolo.

0.123.7

Fixes

  • 🐛 Fix evaluating stringified annotations in Python 3.10. PR #11355 by @​chaen.

0.123.6

Fixes

  • 🐛 Fix support for functools wraps and partial combined, for async and regular functions and classes in path operations and dependencies. PR #14448 by @​tiangolo.

0.123.5

Features

  • ✨ Allow using dependables with functools.partial(). PR #9753 by @​lieryan.
  • ✨ Add support for wrapped functions (e.g. @functools.wraps()) used with forward references. PR #5077 by @​lucaswiman.
  • ✨ Handle wrapped dependencies. PR #9555 by @​phy1729.

Fixes

  • 🐛 Fix optional sequence handling with new union syntax from Python 3.10. PR #14430 by @​Viicos.

Refactors

  • 🔥 Remove dangling extra condiitonal no longer needed. PR #14435 by @​tiangolo.
  • ♻️ Refactor internals, update is_coroutine check to reuse internal supported variants (unwrap, check class). PR #14434 by @​tiangolo.

Translations

0.123.4

Fixes

  • 🐛 Fix OpenAPI schema support for computed fields when using separate_input_output_schemas=False. PR #13207 by @​vgrafe.

Docs

0.123.3

Fixes

... (truncated)

Commits
  • eb1d504 🔖 Release version 0.123.8
  • e248a4d 📝 Update release notes
  • 0ec4baf 🐛 Fix OpenAPI security scheme OAuth2 scopes declaration, deduplicate security...
  • 603df6e 🔖 Release version 0.123.7
  • 6c56548 📝 Update release notes
  • 861598b 🐛 Fix evaluating stringified annotations in Python 3.10 (#11355)
  • 811fa89 🔖 Release version 0.123.6
  • 6c6b9d7 📝 Update release notes
  • bba4d4c 🐛 Fix support for functools wraps and partial combined, for async and regular...
  • c57ac7b 🔖 Release version 0.123.5
  • Additional commits viewable in compare view

Updates sentry-sdk from 2.46.0 to 2.47.0

Release notes

Sourced from sentry-sdk's releases.

2.47.0

Bug Fixes 🐛

New Features ✨

Deprecations

Build / dependencies / internal 🔧

Changelog

Sourced from sentry-sdk's changelog.

2.47.0

Bug Fixes 🐛

New Features ✨

Deprecations

Build / dependencies / internal 🔧

Commits
  • a1e3004 Update CHANGELOG.md
  • 9aa07c5 release: 2.47.0
  • 8d0b6cc fix(openai-agents): Avoid double span exit on exception (#5174)
  • d2d3d35 test: Import integrations with empty shadow modules (#5150)
  • 9a9fbfe fix: Make PropagationContext.from_incoming_data always return a PropagationCo...
  • 9c9510d feat(integrations): openai-agents: add usage and response model reporting for...
  • 4df0056 fix(integrations): anthropic set GEN_AI_OPERATION_NAME (#5185)
  • 6c6705a fix(spotlight): align behavior with SDK spec (#5169)
  • 7449603 feat(openai-agents): Truncate long messages (#5141)
  • 996f935 fix(openai-agents): Store invoke_agent span on agents.RunContextWrapper (...
  • Additional commits viewable in compare view

Updates botocore from 1.41.2 to 1.42.2

Commits

Updates opentelemetry-propagator-jaeger from 1.38.0 to 1.39.0

Changelog

Sourced from opentelemetry-propagator-jaeger's changelog.

Version 1.39.0/0.60b0 (2025-12-03)

  • opentelemetry-api: Convert objects of any type other than AnyValue in attributes to string to be exportable (#4808)

  • docs: Added sqlcommenter example (#4734)

  • build: bump ruff to 0.14.1 (#4782)

  • Add opentelemetry-exporter-credential-provider-gcp as an optional dependency to opentelemetry-exporter-otlp-proto-grpc and opentelemetry-exporter-otlp-proto-http (#4760)

  • semantic-conventions: Bump to 1.38.0 (#4791)

  • [BREAKING] Remove LogData and extend SDK LogRecord to have instrumentation scope (#4676)

  • [BREAKING] Rename several classes from Log to LogRecord (#4647)

    Migration Guide:

    LogData has been removed. Users should update their code as follows:

    • For Log Exporters: Change from Sequence[LogData] to Sequence[ReadableLogRecord]

      # Before
      from opentelemetry.sdk._logs import LogData
      def export(self, batch: Sequence[LogData]) -> LogRecordExportResult:
          ...
      After
      from opentelemetry.sdk._logs import ReadableLogRecord
      def export(self, batch: Sequence[ReadableLogRecord]) -> LogRecordExportResult:
      ...

    • For Log Processors: Use ReadWriteLogRecord for processing, ReadableLogRecord for exporting

      # Before
      from opentelemetry.sdk._logs import LogData
      def on_emit(self, log_data: LogData):
          ...
      After
      from opentelemetry.sdk._logs import ReadWriteLogRecord, ReadableLogRecord
      def on_emit(self, log_record: ReadWriteLogRecord):
      # Convert to ReadableLogRecord before exporting
      readable = ReadableLogRecord(
      log_record=log_record.log_record,
      resource=log_record.resource or Resource.create({}),
      instrumentation_scope=log_record.instrumentation_scope,

... (truncated)

Commits
  • dc0a9b3 Prepare release 1.39.0/0.60b0 (#4833)
  • cd150c3 Fix changelog before the release (#4831)
  • 382fa46 Mark events API/SDK as deprecated (#4654)
  • 5307dd0 Fix errors on serialization of values that are not AnyValue in LogRecord attr...
  • 8615ba0 Fix type checking for built in metric exporters (#4820)
  • 62da90e Add lmolkova to approvers (#4812)
  • 61bda60 Fix meeting and typos (#4817)
  • 546e47b [logs-api/sdk] Rename several classes from Log to LogRecord (#4647)
  • 5ddb8e7 [logs-sdk] Remove LogData and extend SDK LogRecord to have instrumentation sc...
  • 20dedf5 Add gcp auth package as optional dependency to the HTTP/GRPC OTLP Exporters (...
  • Additional commits viewable in compare view

Updates asyncpg from 0.30.0 to 0.31.0

Release notes

Sourced from asyncpg's releases.

v0.31.0

Enable Python 3.14 with experimental subinterpreter/freethreading support.

Improvements

  • Add Python 3.14 support, experimental subinterpreter/freethreading support (#1279) (by @​elprans in 9e42642b)

  • Avoid performing type introspection on known types (#1243) (by @​elprans in 5c9986c4)

  • Make prepare() not use named statements by default when cache is disabled (#1245) (by @​elprans in 5b14653e)

  • Implement connection service file functionality (#1223) (by @​AndrewJackson2020 in 1d63bb15)

Fixes

Other

Commits

Updates mypy from 1.18.2 to 1.19.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Drop Support for Python 3.9

Mypy no longer supports running with Python 3.9, which has reached end-of-life. When running mypy with Python 3.10+, it is still possible to type check code that needs to support Python 3.9 with the --python-version 3.9 argument. Support for this will be dropped in the first half of 2026!

Contributed by Marc Mueller (PR 20156).

Mypy 1.19

We’ve just uploaded mypy 1.19.0 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements 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.

Python 3.9 Support Ending Soon

This is the last mypy feature release that supports Python 3.9, which reached end of life in October 2025.

Performance Improvements

  • Switch to a more dynamic SCC processing logic (Ivan Levkivskyi, PR 20053)
  • Speed up type aliases (Ivan Levkivskyi, PR 19810)

Fixed‑Format Cache Improvements

Mypy uses a cache by default to speed up incremental runs by reusing partial results from earlier runs. Mypy 1.18 added a new binary fixed-format cache representation as an experimental feature. The feature is no longer experimental, and we are planning to enable it by default in a future mypy release (possibly 1.20), since it's faster and uses less space than the original, JSON-based cache format. Use --fixed-format-cache to enable the fixed-format cache.

Mypy now has an extra dependency on the librt PyPI package, as it's needed for cache serialization and deserialization.

Mypy ships with a tool to convert fixed-format cache files to the old JSON format. Example of how to use this:

$ python -m mypy.exportjson .mypy_cache/.../my_module.data.ff

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Dec 4, 2025
@dependabot dependabot bot force-pushed the dependabot/uv/12087/python-minor-versions-a9b27d5991 branch 4 times, most recently from 5c4fd05 to d2a2a4d Compare December 5, 2025 15:31
@dependabot dependabot bot force-pushed the dependabot/uv/12087/python-minor-versions-a9b27d5991 branch 4 times, most recently from 6758ce7 to a0417cc Compare December 19, 2025 13:34
@dependabot dependabot bot force-pushed the dependabot/uv/12087/python-minor-versions-a9b27d5991 branch 4 times, most recently from d9f94e0 to 304c2c5 Compare January 8, 2026 13:42
Bumps the python-minor-versions group with 6 updates in the /12087 directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.14` | `0.123.8` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.46.0` | `2.47.0` |
| [botocore](https://github.com/boto/botocore) | `1.41.2` | `1.42.2` |
| [opentelemetry-propagator-jaeger](https://github.com/open-telemetry/opentelemetry-python) | `1.38.0` | `1.39.0` |
| [asyncpg](https://github.com/MagicStack/asyncpg) | `0.30.0` | `0.31.0` |
| [mypy](https://github.com/python/mypy) | `1.18.2` | `1.19.0` |



Updates `fastapi` from 0.115.14 to 0.123.8
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.14...0.123.8)

Updates `sentry-sdk` from 2.46.0 to 2.47.0
- [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.46.0...2.47.0)

Updates `botocore` from 1.41.2 to 1.42.2
- [Commits](boto/botocore@1.41.2...1.42.2)

Updates `opentelemetry-propagator-jaeger` from 1.38.0 to 1.39.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-python/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-python@v1.38.0...v1.39.0)

Updates `asyncpg` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/MagicStack/asyncpg/releases)
- [Commits](MagicStack/asyncpg@v0.30.0...v0.31.0)

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

---
updated-dependencies:
- dependency-name: fastapi
  dependency-version: 0.123.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-versions
- dependency-name: sentry-sdk
  dependency-version: 2.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-versions
- dependency-name: botocore
  dependency-version: 1.42.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-versions
- dependency-name: opentelemetry-propagator-jaeger
  dependency-version: 1.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-versions
- dependency-name: asyncpg
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-versions
- dependency-name: mypy
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/uv/12087/python-minor-versions-a9b27d5991 branch from 304c2c5 to 3b8a976 Compare January 9, 2026 10:00
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 23, 2026

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

@dependabot dependabot bot closed this Jan 23, 2026
@dependabot dependabot bot deleted the dependabot/uv/12087/python-minor-versions-a9b27d5991 branch January 23, 2026 09:38
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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant