Bump the python-minor group with 2 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 2
(2 months ago)
(about 1 month ago)
(about 1 month ago)
Bumps the python-minor group with 2 updates: sentry-sdk and ruff.
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
- feat(ai): add cache writes for gen_ai by
@shellmayrin #5319- feat(ai): add parse_data_uri function to parse a data URI by
@constantiniusin #5311Other
feat(asyncio): Add on-demand way to enable AsyncioIntegration by
@sentrivanain #5288You can now enable the
AsyncioIntegrationon demand, after callingsentry_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_integrationInitializing the SDK as early as possible, when there is no event loop yet
sentry_sdk.init(
...
# No AsyncioIntegration in explicitly providedintegrations
)async def main():
enable_asyncio_integration() # instruments the current event loop
# ...your code...
- feat(openai-agents): Inject propagation headers for
HostedMCPToolby@alexander-alderman-webbin #5297- feat(stdlib): Handle proxy tunnels in httlib integration by
@sl0thentr0pyin #5303- feat: Support array types for logs and metrics attributes by
@alexander-alderman-webbin #5314Bug Fixes 🐛
Integrations
- fix(integrations): google genai report image inputs by
@constantiniusin #5337- fix(integrations): google-genai: reworked
gen_ai.request.messagesextraction from parameters by@constantiniusin #5275- fix(integrations): pydantic-ai: properly format binary input message parts to be conformant with the
gen_ai.request.messagesstructure by@constantiniusin #5251- fix(integrations): Anthropic: add content transformation for images and documents by
@constantiniusin #5276- fix(integrations): langchain add multimodal content transformation functions for images, audio, and files by
@constantiniusin #5278Litellm
- fix(litellm): fix
gen_ai.request.messagesto be as expected by@constantiniusin #5255- fix(litellm): Guard against module shadowing by
@alexander-alderman-webbin #5249Other
... (truncated)
Changelog
Sourced from sentry-sdk's changelog.
2.50.0
New Features ✨
Ai
- feat(ai): add cache writes for gen_ai by
@shellmayrin #5319- feat(ai): add parse_data_uri function to parse a data URI by
@constantiniusin #5311Other
feat(asyncio): Add on-demand way to enable AsyncioIntegration by
@sentrivanain #5288You can now enable the
AsyncioIntegrationon demand, after callingsentry_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_integrationInitializing the SDK as early as possible, when there is no event loop yet
sentry_sdk.init(
...
# No AsyncioIntegration in explicitly providedintegrations
)async def main():
enable_asyncio_integration() # instruments the current event loop
# ...your code...
- feat(openai-agents): Inject propagation headers for
HostedMCPToolby@alexander-alderman-webbin #5297- feat(stdlib): Handle proxy tunnels in httlib integration by
@sl0thentr0pyin #5303- feat: Support array types for logs and metrics attributes by
@alexander-alderman-webbin #5314Bug Fixes 🐛
Integrations
- fix(integrations): google genai report image inputs by
@constantiniusin #5337- fix(integrations): google-genai: reworked
gen_ai.request.messagesextraction from parameters by@constantiniusin #5275- fix(integrations): pydantic-ai: properly format binary input message parts to be conformant with the
gen_ai.request.messagesstructure by@constantiniusin #5251- fix(integrations): Anthropic: add content transformation for images and documents by
@constantiniusin #5276- fix(integrations): langchain add multimodal content transformation functions for images, audio, and files by
@constantiniusin #5278Litellm
- fix(litellm): fix
gen_ai.request.messagesto be as expected by@constantiniusin #5255- fix(litellm): Guard against module shadowing by
@alexander-alderman-webbin #5249
... (truncated)
Commits
27b0bfdUpdate CHANGELOG.md73857b4release: 2.50.0d38b378test(fastmcp): NarrowAttributeErrortry-except (#5339)e73e600test(fastmcp): Stop accessing non-existent attribute (#5338)e0d42b9chore(repo): Add Claude Code settings with basic permissions (#5342)2585678feat(stdlib): Handle proxy tunnels in httlib integration (#5303)e171009fix(integrations): google genai report image inputs (#5337)749d8e5fix(integrations): google-genai: reworkedgen_ai.request.messagesextractio...ab5cddefeat(ai): add cache writes for gen_ai (#5319)1970486build(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 toAsset/Datasetshould 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] ApplyUP045to string arguments oftyping.cast(#22320)- [
flake8-pie] Detect duplicated declared class fields inPIE794(#22717)Rule changes
- [
flake8-pyi] Fix inconsistent handling of forward references for__new__,__enter__,__aenter__inPYI034(#22798)- [
flake8-pytest-style] Supportcheckparameter inPT011(#22725)- [
ruff] Add exception forctypes.Structure._fields_(RUF012) (#22559)- Many fixes are now marked unsafe if they would remove comments:
Documentation
- Add
--exit-non-zero-on-formatto formatter exit codes section (#22761)- Update contributing guide for adding a new rule (#22779)
- [
FastAPI] Document fix safety forFAST001(#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 toAsset/Datasetshould 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] ApplyUP045to string arguments oftyping.cast(#22320)- [
flake8-pie] Detect duplicated declared class fields inPIE794(#22717)Rule changes
- [
flake8-pyi] Fix inconsistent handling of forward references for__new__,__enter__,__aenter__inPYI034(#22798)- [
flake8-pytest-style] Supportcheckparameter inPT011(#22725)- [
ruff] Add exception forctypes.Structure._fields_(RUF012) (#22559)- Many fixes are now marked unsafe if they would remove comments:
Documentation
- Add
--exit-non-zero-on-formatto formatter exit codes section (#22761)- Update contributing guide for adding a new rule (#22779)
- [
FastAPI] Document fix safety forFAST001(#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
8b2e7b3Prepare release v0.14.14 (#22813)4c7d1f5[ty] InferTypedDicttypes with >=1 required key as being always truthy (#2...b7de434add CCfW hooks (#22803)b912dfc[pyupgrade] ApplyUP045to string arguments oftyping.cast(#22320)1ff062d[ty] Improve completion rankings for raise-from/except contexts (#22775)7e408a5Update 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)f516d47Update contributing guide for adding a new rule (#22779)- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Package Dependencies
Technical Details
| ID: | 14310681 |
| UUID: | 3855504045 |
| Node ID: | PR_kwDOCLb_9c6_V6z_ |
| Host: | GitHub |
| Repository: | OperationCode/operationcode-pybot |