Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

Bumps the minor-patch-dependencies group with 3 updates: sentry-sdk, ruff and ty.

Updates sentry-sdk from 2.49.0 to 2.50.0

Release notes

Sourced from sentry-sdk's releases.

2.50.0

New Features ✨

Ai

Other

  • feat(asyncio): Add on-demand way to enable AsyncioIntegration by @​sentrivana in #5288

    You can now enable the AsyncioIntegration on demand, after calling sentry_sdk.init(). This is useful in scenarios where you don't have the event loop running early on, or when you need to instrument multiple event loops.

import sentry_sdk
from sentry_sdk.integrations.asyncio import enable_asyncio_integration
Initializing the SDK as early as possible, when there is no event loop yet
sentry_sdk.init(
...
# No AsyncioIntegration in explicitly provided integrations
)
async def main():
enable_asyncio_integration()  # instruments the current event loop
# ...your code...

Bug Fixes 🐛

Integrations

  • fix(integrations): google genai report image inputs by @​constantinius in #5337
  • fix(integrations): google-genai: reworked gen_ai.request.messages extraction from parameters by @​constantinius in #5275
  • fix(integrations): pydantic-ai: properly format binary input message parts to be conformant with the gen_ai.request.messages structure by @​constantinius in #5251
  • fix(integrations): Anthropic: add content transformation for images and documents by @​constantinius in #5276
  • fix(integrations): langchain add multimodal content transformation functions for images, audio, and files by @​constantinius in #5278

Litellm

Other

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.50.0

New Features ✨

Ai

Other

  • feat(asyncio): Add on-demand way to enable AsyncioIntegration by @​sentrivana in #5288

    You can now enable the AsyncioIntegration on demand, after calling sentry_sdk.init(). This is useful in scenarios where you don't have the event loop running early on, or when you need to instrument multiple event loops.

import sentry_sdk
from sentry_sdk.integrations.asyncio import enable_asyncio_integration
Initializing the SDK as early as possible, when there is no event loop yet
sentry_sdk.init(
...
# No AsyncioIntegration in explicitly provided integrations
)
async def main():
enable_asyncio_integration()  # instruments the current event loop
# ...your code...

Bug Fixes 🐛

Integrations

  • fix(integrations): google genai report image inputs by @​constantinius in #5337
  • fix(integrations): google-genai: reworked gen_ai.request.messages extraction from parameters by @​constantinius in #5275
  • fix(integrations): pydantic-ai: properly format binary input message parts to be conformant with the gen_ai.request.messages structure by @​constantinius in #5251
  • fix(integrations): Anthropic: add content transformation for images and documents by @​constantinius in #5276
  • fix(integrations): langchain add multimodal content transformation functions for images, audio, and files by @​constantinius in #5278

Litellm

... (truncated)

Commits
  • 27b0bfd Update CHANGELOG.md
  • 73857b4 release: 2.50.0
  • d38b378 test(fastmcp): Narrow AttributeError try-except (#5339)
  • e73e600 test(fastmcp): Stop accessing non-existent attribute (#5338)
  • e0d42b9 chore(repo): Add Claude Code settings with basic permissions (#5342)
  • 2585678 feat(stdlib): Handle proxy tunnels in httlib integration (#5303)
  • e171009 fix(integrations): google genai report image inputs (#5337)
  • 749d8e5 fix(integrations): google-genai: reworked gen_ai.request.messages extractio...
  • ab5cdde feat(ai): add cache writes for gen_ai (#5319)
  • 1970486 build(deps): bump getsentry/craft from 2.18.3 to 2.19.0 (#5331)
  • Additional commits viewable in compare view

Updates ruff from 0.14.13 to 0.14.14

Release notes

Sourced from ruff's releases.

0.14.14

Release Notes

Released on 2026-01-22.

Preview features

  • Preserve required parentheses in lambda bodies (#22747)
  • Combine range suppression code diagnostics (#22613)
  • [airflow] Second positional argument to Asset/Dataset should not be a dictionary (AIR303) (#22453)
  • [ruff] Detect duplicate entries in __all__ (RUF068) (#22114)

Bug fixes

  • [pyupgrade] Allow shadowing non-builtin bindings (UP029) (#22749)
  • [pyupgrade] Apply UP045 to string arguments of typing.cast (#22320)
  • [flake8-pie] Detect duplicated declared class fields in PIE794 (#22717)

Rule changes

Documentation

  • Add --exit-non-zero-on-format to formatter exit codes section (#22761)
  • Update contributing guide for adding a new rule (#22779)
  • [FastAPI] Document fix safety for FAST001 (#22655)
  • [flake8-async] Tweak explanation to focus on latency/efficiency tradeoff (ASYNC110) (#22715)
  • [pandas-vet] Make example error out-of-the-box (PD002) (#22561)
  • [refurb] Make the example work out of box (FURB101) (#22770)
  • [refurb] Make the example work out of box (FURB103) (#22769)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.14.14

Released on 2026-01-22.

Preview features

  • Preserve required parentheses in lambda bodies (#22747)
  • Combine range suppression code diagnostics (#22613)
  • [airflow] Second positional argument to Asset/Dataset should not be a dictionary (AIR303) (#22453)
  • [ruff] Detect duplicate entries in __all__ (RUF068) (#22114)

Bug fixes

  • [pyupgrade] Allow shadowing non-builtin bindings (UP029) (#22749)
  • [pyupgrade] Apply UP045 to string arguments of typing.cast (#22320)
  • [flake8-pie] Detect duplicated declared class fields in PIE794 (#22717)

Rule changes

Documentation

  • Add --exit-non-zero-on-format to formatter exit codes section (#22761)
  • Update contributing guide for adding a new rule (#22779)
  • [FastAPI] Document fix safety for FAST001 (#22655)
  • [flake8-async] Tweak explanation to focus on latency/efficiency tradeoff (ASYNC110) (#22715)
  • [pandas-vet] Make example error out-of-the-box (PD002) (#22561)
  • [refurb] Make the example work out of box (FURB101) (#22770)
  • [refurb] Make the example work out of box (FURB103) (#22769)

Contributors

... (truncated)

Commits
  • 8b2e7b3 Prepare release v0.14.14 (#22813)
  • 4c7d1f5 [ty] Infer TypedDict types with >=1 required key as being always truthy (#2...
  • b7de434 add CCfW hooks (#22803)
  • b912dfc [pyupgrade] Apply UP045 to string arguments of typing.cast (#22320)
  • 1ff062d [ty] Improve completion rankings for raise-from/except contexts (#22775)
  • 7e408a5 Update dependency wrangler to v4.59.1 (#22793)
  • ceb876b [flake8-pyi] Fix inconsistent handling of forward references for __new__,...
  • c5b4ee6 [ty] Support solving generics involving PEP 695 type aliases (#22678)
  • b9a6129 [ty] Improve support for kwarg splats in dictionary literals (#22781)
  • f516d47 Update contributing guide for adding a new rule (#22779)
  • Additional commits viewable in compare view

Updates ty from 0.0.12 to 0.0.13

Release notes

Sourced from ty's releases.

0.0.13

Release Notes

Released on 2026-01-21.

Bug fixes

  • Fix --force-exclude when excluding entire directories (#22595)
  • Fix missing syntax highlighting for aliased import names (#22675)
  • Highlight interpolated-parts in t-strings (#22674)
  • Fix the inferred MRO of functional namedtuple classes (#22722)
  • Make special cases for subscript inference exhaustive, ensuring that the special casing for tuple subscripts is applied when a union of tuples or an alias to a tuple type is subscripted (#22035)

LSP server

  • Improve completion suggestions inside class definitions (#22571)
  • Improve performance of completions (#22630)
  • Remove completion suggestions for redundant re-exports that share the same top-most module (#22581)

Core type checking

  • Add basic support for overloads in ParamSpec (#21946)
  • Allow ... as a default value for any parameter if the function is in an if TYPE_CHECKING block (#22624)
  • Allow if type(x) is Y narrowing for types other than class-literal types (#22729)
  • Avoid overload errors when detecting dataclass-on-tuple (#22687)
  • Avoid reporting overload errors for successful union variants (#22688)
  • Ban NewTypes with generic bases (#22653)
  • Fix PEP 695 type aliases not expanding in overload resolution (#22589)
  • Fix the return type for synthesized NamedTuple.__new__ methods (#22625)
  • Emit diagnostics for NamedTuple, TypedDict, Enum or Protocol classes decorated with @dataclass (#22672)
  • Emit invalid-type-form diagnostics for stringified annotations where the quoted expression is invalid (#22752)
  • Infer the implicit type of cls in __new__ methods (#22584)
  • Make ModuleType and object attributes available on namespace packages (#22606)
  • Make NamedTuple(...) and namedtuple(...) calls stricter (#22601)
  • Narrow on bool and byte subscripts (#22684)
  • Narrow on negative subscript indexing (#22682)
  • Override __file__ to str when applicable on imported modules (#22333)
  • Add bidirectional inference for comprehensions (#22564)
  • Recognize string-literal types as subtypes of Sequence[Literal[chars]] (#22415)
  • Add right-hand-side narrowing for if Foo is type(x) expressions (#22608)
  • Add simple syntactic validation for the right-hand side of PEP-613 type aliases (#22652)
  • Add support for passing typename and field_names by keyword argument to collections.namedtuple() calls (#22660)
  • Add support for starred unpacking in class bases (#22591)
  • Validate constructor arguments when a class is used as a decorator (#22377)
  • Validate field names for typing.NamedTuple(...) (#22599)
  • Add diagnostic on overridden __setattr__ and __delattr__ in frozen dataclasses (#21430)
  • Fix unary operators on NewTypes of float or complex (#22605)

Configuration

... (truncated)

Changelog

Sourced from ty's changelog.

0.0.13

Released on 2026-01-21.

Bug fixes

  • Fix --force-exclude when excluding entire directories (#22595)
  • Fix missing syntax highlighting for aliased import names (#22675)
  • Highlight interpolated-parts in t-strings (#22674)
  • Fix the inferred MRO of functional namedtuple classes (#22722)
  • Make special cases for subscript inference exhaustive, ensuring that the special casing for tuple subscripts is applied when a union of tuples or an alias to a tuple type is subscripted (#22035)

LSP server

  • Improve completion suggestions inside class definitions (#22571)
  • Improve performance of completions (#22630)
  • Remove completion suggestions for redundant re-exports that share the same top-most module (#22581)

Core type checking

  • Add basic support for overloads in ParamSpec (#21946)
  • Allow ... as a default value for any parameter if the function is in an if TYPE_CHECKING block (#22624)
  • Allow if type(x) is Y narrowing for types other than class-literal types (#22729)
  • Avoid overload errors when detecting dataclass-on-tuple (#22687)
  • Avoid reporting overload errors for successful union variants (#22688)
  • Ban NewTypes with generic bases (#22653)
  • Fix PEP 695 type aliases not expanding in overload resolution (#22589)
  • Fix the return type for synthesized NamedTuple.__new__ methods (#22625)
  • Emit diagnostics for NamedTuple, TypedDict, Enum or Protocol classes decorated with @dataclass (#22672)
  • Emit invalid-type-form diagnostics for stringified annotations where the quoted expression is invalid (#22752)
  • Infer the implicit type of cls in __new__ methods (#22584)
  • Make ModuleType and object attributes available on namespace packages (#22606)
  • Make NamedTuple(...) and namedtuple(...) calls stricter (#22601)
  • Narrow on bool and byte subscripts (#22684)
  • Narrow on negative subscript indexing (#22682)
  • Override __file__ to str when applicable on imported modules (#22333)
  • Add bidirectional inference for comprehensions (#22564)
  • Recognize string-literal types as subtypes of Sequence[Literal[chars]] (#22415)
  • Add right-hand-side narrowing for if Foo is type(x) expressions (#22608)
  • Add simple syntactic validation for the right-hand side of PEP-613 type aliases (#22652)
  • Add support for passing typename and field_names by keyword argument to collections.namedtuple() calls (#22660)
  • Add support for starred unpacking in class bases (#22591)
  • Validate constructor arguments when a class is used as a decorator (#22377)
  • Validate field names for typing.NamedTuple(...) (#22599)
  • Add diagnostic on overridden __setattr__ and __delattr__ in frozen dataclasses (#21430)
  • Fix unary operators on NewTypes of float or complex (#22605)

Configuration

  • Support overriding respect-type-ignore-comments (#22615)

... (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

Bumps the minor-patch-dependencies group with 3 updates: [sentry-sdk](https://github.com/getsentry/sentry-python), [ruff](https://github.com/astral-sh/ruff) and [ty](https://github.com/astral-sh/ty).


Updates `sentry-sdk` from 2.49.0 to 2.50.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.49.0...2.50.0)

Updates `ruff` from 0.14.13 to 0.14.14
- [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.14.13...0.14.14)

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

---
updated-dependencies:
- dependency-name: sentry-sdk
  dependency-version: 2.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: ruff
  dependency-version: 0.14.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: ty
  dependency-version: 0.0.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jan 26, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 26, 2026 17:43
@github-actions github-actions bot enabled auto-merge (squash) January 26, 2026 17:44
@github-actions
Copy link

The minor update of this production dependency was not automatically approved. For production dependencies, these semver updates can be automatically approved: patch

@github-actions github-actions bot merged commit a773efa into main Jan 26, 2026
7 checks passed
@github-actions github-actions bot deleted the dependabot/uv/minor-patch-dependencies-c1694f9139 branch January 26, 2026 18:10
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