Skip to content

fix(deps): update dependency sentry-sdk to v2.66.1 - #1039

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/sentry-sdk-2.x
Open

fix(deps): update dependency sentry-sdk to v2.66.1#1039
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/sentry-sdk-2.x

Conversation

@renovate

@renovate renovate Bot commented May 28, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
sentry-sdk (changelog) ==2.60.0==2.66.1 age confidence

Release Notes

getsentry/sentry-python (sentry-sdk)

v2.66.1

Compare Source

Bug Fixes 🐛
Tracing
Internal Changes 🔧

v2.66.0

Compare Source

New Features ✨
Bug Fixes 🐛
Tracing
Internal Changes 🔧

v2.65.0

Compare Source

New Features ✨
Huey
Other
Bug Fixes 🐛
Tracing
Other
Internal Changes 🔧

v2.64.0

Compare Source

The SDK now extracts all gen_ai spans out of a transaction and sends them as v2 envelope items by default. This prevents gen_ai spans from being dropped when the transaction payload exceeds size limits. Because they are no longer constrained by transaction size limits, AI message data is also no longer truncated. To keep the previous behavior, set stream_gen_ai_spans=False.

Self-hosted Sentry users should opt out with stream_gen_ai_spans=False, since streamed gen_ai spans may not be ingested by their Sentry instance.

Bug Fixes 🐛
Documentation 📚
Internal Changes 🔧
Other

v2.63.0

Compare Source

Bug Fixes 🐛
Fastapi
Other
Internal Changes 🔧

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

v2.61.0

Compare Source

New Features ✨
  • Add server.address to transformed spans when stream_gen_ai_spans=True by @​alexander-alderman-webb in #​6307

  • Allow integrations to define control flow exceptions by @​sentrivana in #​6425

  • Disable string truncation for events by default by @​alexander-alderman-webb in #​6290

    Following a previous significant increase of the string truncation limit, we've now completely removed the limit by default.
    In case you have large strings in your events, you should now be able to see them.

    In rare cases, if you have really long strings (or a lot of them), you might see envelopes being dropped because of their size.
    If that happens, you can set the max_value_length init option to the previous value of 100_000:

    sentry_sdk.init(
        ...,
        max_value_length=100_000,
    )
Bug Fixes 🐛
Langchain
Openai Agents
Pydantic AI
Strawberry
Other
  • (anthropic) Do not set gen_ai.response.model to None by @​alexander-alderman-webb in #​6312

  • (asyncpg) Use Sentry span attribute name conventions by @​ericapisani in #​6306

  • (boto3) Guard setting method by @​sentrivana in #​6288

  • (cohere) Stop setting transaction status when child span fails by @​alexander-alderman-webb in #​6300

  • (google-genai) Guard against None response ID and response model by @​alexander-alderman-webb in #​6314

  • (huey) Fix group and chord handling in enqueue by @​ericapisani in #​6392

  • (integrations) Auto-wrap root gen_ai spans for openai, cohere, langgraph, huggingface_hub by @​constantinius in #​6285

  • (serializer) Don't call __iter__ on arbitrary sequences by @​sentrivana in #​6304

    Previously, we'd attempt to serialize any Sequence by walking through it by calling its __iter__ function.
    We've now changed the serializer to only serialize built-in sequences (like lists, tuples, and sets) to avoid
    triggering side-effects from custom __iter__ implementations.

    This might mean some objects might be serialized differently. If you want to continue serializing a specific
    custom sequence class the old way, you can register it via sentry_sdk.serializer.add_repr_sequence_type (see
    here).

  • Memory leak in SentrySpanProcessor by @​volodkindv in #​6271

Documentation 📚
Internal Changes 🔧
Langchain
Openai Agents
Pydantic Ai
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 is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 28, 2026
@renovate
renovate Bot requested a review from rclement May 28, 2026 11:54
@github-actions

Copy link
Copy Markdown
Contributor

Code coverage report

Name Stmts Miss Branch BrPart Cover Missing
mailer/__about__.py 8 0 0 0 100%
mailer/__init__.py 17 0 2 0 100%
mailer/api.py 83 0 10 0 100%
mailer/home.py 10 0 0 0 100%
mailer/mailer.py 99 0 10 0 100%
mailer/recaptcha.py 9 0 4 0 100%
mailer/sentry.py 8 0 0 0 100%
mailer/settings.py 35 0 4 0 100%
tests/__init__.py 0 0 0 0 100%
tests/conftest.py 35 0 0 0 100%
tests/test_api.py 421 0 10 0 100%
tests/test_home.py 36 0 0 0 100%
tests/test_mailer.py 9 0 0 0 100%
tests/test_settings.py 26 0 0 0 100%
tests/utils.py 91 0 2 0 100%
TOTAL 887 0 42 0 100%

Diff Coverage

Diff: origin/master..HEAD

No lines with coverage information in this diff.

@renovate
renovate Bot temporarily deployed to preview/renovate-sentry-sdk-2-x May 28, 2026 11:55 Inactive
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 081ad55 to a47d98f Compare June 1, 2026 17:56
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.61.0 fix(deps): update dependency sentry-sdk to v2.61.1 Jun 1, 2026
@renovate
renovate Bot temporarily deployed to preview/renovate-sentry-sdk-2-x June 1, 2026 17:57 Inactive
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.61.1 fix(deps): update dependency sentry-sdk to v2.62.0 Jun 8, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 6ffb9d9 to 38f51cd Compare June 13, 2026 13:23
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 38f51cd to 7b0a168 Compare June 16, 2026 17:01
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.62.0 fix(deps): update dependency sentry-sdk to v2.63.0 Jun 16, 2026
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.63.0 fix(deps): update dependency sentry-sdk to v2.64.0 Jun 30, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 7b0a168 to 8b1d231 Compare June 30, 2026 11:54
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 8b1d231 to 7354662 Compare July 13, 2026 12:49
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.64.0 fix(deps): update dependency sentry-sdk to v2.65.0 Jul 13, 2026
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.65.0 fix(deps): update dependency sentry-sdk to v2.66.0 Jul 16, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 7354662 to 8aca98a Compare July 16, 2026 23:56
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 8aca98a to 0f93689 Compare July 22, 2026 13:11
@renovate renovate Bot changed the title fix(deps): update dependency sentry-sdk to v2.66.0 fix(deps): update dependency sentry-sdk to v2.66.1 Jul 22, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant