Update dependency sentry-sdk to >=2.62.0 #546

Merged
tobru merged 1 commit from renovate/sentry-sdk-2.x into main 2026-06-09 15:25:13 +00:00
Member

This PR contains the following updates:

Package Change Age Confidence
sentry-sdk (changelog) >=2.61.0>=2.62.0 age confidence

Release Notes

getsentry/sentry-python (sentry-sdk)

v2.62.0

Compare Source

New Features
  • Add integration for aiomysql by @​tonal in #​4703

    We're adding support for the aiomysql package. To enable the integration, add it to your integrations list:

    import sentry_sdk
    from sentry_sdk.integrations.aiomysql import AioMySQLIntegration
    
    sentry_sdk.init(
        traces_sample_rate=1.0,
        integrations=[AioMySQLIntegration()],
    )
    
  • Support HTTPX2 by @​sentrivana in #​6463

    We're adding out-of-the-box support for HTTPX2. As long as use the package, the Sentry integration
    will be enabled automatically and you should see your requests instrumented in Sentry.

    import httpx2
    import sentry_sdk
    
    sentry_sdk.init(...)
    
    with sentry_sdk.start_transaction(name="testing_sentry"):
        httpx2.get("https://sentry.io/")
    
Bug Fixes 🐛
Internal Changes 🔧

v2.61.1

Compare Source

Internal Changes 🔧
Rq
Other

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [sentry-sdk](https://github.com/getsentry/sentry-python) ([changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)) | `>=2.61.0` → `>=2.62.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/sentry-sdk/2.62.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/sentry-sdk/2.61.0/2.62.0?slim=true) | --- ### Release Notes <details> <summary>getsentry/sentry-python (sentry-sdk)</summary> ### [`v2.62.0`](https://github.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#2620) [Compare Source](https://github.com/getsentry/sentry-python/compare/2.61.1...2.62.0) ##### New Features ✨ - Add integration for `aiomysql` by [@&#8203;tonal](https://github.com/tonal) in [#&#8203;4703](https://github.com/getsentry/sentry-python/pull/4703) We're adding support for the `aiomysql` package. To enable the integration, add it to your `integrations` list: ```python import sentry_sdk from sentry_sdk.integrations.aiomysql import AioMySQLIntegration sentry_sdk.init( traces_sample_rate=1.0, integrations=[AioMySQLIntegration()], ) ``` - Support HTTPX2 by [@&#8203;sentrivana](https://github.com/sentrivana) in [#&#8203;6463](https://github.com/getsentry/sentry-python/pull/6463) We're adding out-of-the-box support for HTTPX2. As long as use the package, the Sentry integration will be enabled automatically and you should see your requests instrumented in Sentry. ```python import httpx2 import sentry_sdk sentry_sdk.init(...) with sentry_sdk.start_transaction(name="testing_sentry"): httpx2.get("https://sentry.io/") ``` ##### Bug Fixes 🐛 - (arq) Never capture control flow exceptions by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6507](https://github.com/getsentry/sentry-python/pull/6507) - (client) Guard against dotless qualified\_name in \_setup\_instrumentation by [@&#8203;devteamaegis](https://github.com/devteamaegis) in [#&#8203;6452](https://github.com/getsentry/sentry-python/pull/6452) - (pydantic-ai) Only use hooks when `ModelRequestContext.model` exists by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6480](https://github.com/getsentry/sentry-python/pull/6480) - (rq) Restore `functools.wraps()` for patched functions by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6532](https://github.com/getsentry/sentry-python/pull/6532) - (tracing\_utils) Handle baggage values containing '=' in from\_incoming\_header by [@&#8203;devteamaegis](https://github.com/devteamaegis) in [#&#8203;6450](https://github.com/getsentry/sentry-python/pull/6450) - (utils) Handle image\_url string shorthand in \_is\_image\_type\_with\_blob\_content by [@&#8203;devteamaegis](https://github.com/devteamaegis) in [#&#8203;6478](https://github.com/getsentry/sentry-python/pull/6478) ##### Internal Changes 🔧 - (arq) Only pin `fakeredis<2.36.0` in tests by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6444](https://github.com/getsentry/sentry-python/pull/6444) - (flaky) Change env for flaky test detector by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;6492](https://github.com/getsentry/sentry-python/pull/6492) - (pydantic-ai) Create event loop before invoking sync methods by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6475](https://github.com/getsentry/sentry-python/pull/6475) - Use `package-ecosystem: uv` in dependabot by [@&#8203;sentrivana](https://github.com/sentrivana) in [#&#8203;6522](https://github.com/getsentry/sentry-python/pull/6522) - 🤖 Update test matrix with new releases (06/08) by [@&#8203;github-actions](https://github.com/github-actions) in [#&#8203;6519](https://github.com/getsentry/sentry-python/pull/6519) - Raise minimum supported `aiomysql` version and update text matrix by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6496](https://github.com/getsentry/sentry-python/pull/6496) - Deprecate OpenTelemetryIntegration in favor of OTLPIntegration and no-op for span first by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;6494](https://github.com/getsentry/sentry-python/pull/6494) - 🤖 Update test matrix with new releases (06/03) by [@&#8203;github-actions](https://github.com/github-actions) in [#&#8203;6489](https://github.com/getsentry/sentry-python/pull/6489) - Raise `update-tox` timeout to 20 minutes by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6488](https://github.com/getsentry/sentry-python/pull/6488) - Prevent `grpcio-tools` source builds when generating test matrices by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6487](https://github.com/getsentry/sentry-python/pull/6487) - Add weekly flaky test detector workflow by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;6484](https://github.com/getsentry/sentry-python/pull/6484) - Pin transitive dependencies for tests on Python>=3.8 by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6437](https://github.com/getsentry/sentry-python/pull/6437) - Install uv in `update-tox` job by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6453](https://github.com/getsentry/sentry-python/pull/6453) - Only pin `setuptools` in relevant tests by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6467](https://github.com/getsentry/sentry-python/pull/6467) ### [`v2.61.1`](https://github.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#2611) [Compare Source](https://github.com/getsentry/sentry-python/compare/2.61.0...2.61.1) ##### Internal Changes 🔧 ##### Rq - Pin `fakeredis<2.36.0` in tests by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6454](https://github.com/getsentry/sentry-python/pull/6454) - Unpin `redis` and `fakeredis` for tests by [@&#8203;alexander-alderman-webb](https://github.com/alexander-alderman-webb) in [#&#8203;6443](https://github.com/getsentry/sentry-python/pull/6443) ##### Other - (aiohttp) Unfurl spans explicitly instead of using pop() by [@&#8203;sentrivana](https://github.com/sentrivana) in [#&#8203;6435](https://github.com/getsentry/sentry-python/pull/6435) - (tox) Migrate from pip to uv via tox-uv by [@&#8203;sentry-junior](https://github.com/sentry-junior) in [#&#8203;6390](https://github.com/getsentry/sentry-python/pull/6390) - Pin redis<8 for rq by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;6438](https://github.com/getsentry/sentry-python/pull/6438) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMDQuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIxNC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
Update dependency sentry-sdk to >=2.61.1
All checks were successful
Tests / test (push) Successful in 58s
323630e1ed
renovate force-pushed renovate/sentry-sdk-2.x from 323630e1ed
All checks were successful
Tests / test (push) Successful in 58s
to 31652d7f8b
All checks were successful
Tests / test (push) Successful in 59s
2026-06-09 03:02:07 +00:00
Compare
renovate changed title from Update dependency sentry-sdk to >=2.61.1 to Update dependency sentry-sdk to >=2.62.0 2026-06-09 03:02:09 +00:00
tobru merged commit df7c7f95f4 into main 2026-06-09 15:25:13 +00:00
tobru deleted branch renovate/sentry-sdk-2.x 2026-06-09 15:25:13 +00:00
Sign in to join this conversation.
No description provided.