Skip to content

Update dependency sentry-sdk to v2.63.0#2919

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

Update dependency sentry-sdk to v2.63.0#2919
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sentry-sdk-2.x

Conversation

@renovate

@renovate renovate Bot commented Jan 14, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
sentry-sdk (changelog) ==2.19.2==2.63.0 age confidence

Release Notes

getsentry/sentry-python (sentry-sdk)

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

v2.60.0

Compare Source

Adds a new stream_gen_ai_spans option that controls how gen_ai spans are
sent to Sentry. When set, the SDK extracts all gen_ai spans out of a
transaction and sends them as v2 envelope items.

Enable this option if gen_ai spans are being dropped because the transaction payload exceeds size limits.

import sentry_sdk

sentry_sdk.init(
  dsn='https://examplePublicKey@o0.ingest.sentry.io/0',
  stream_gen_ai_spans=True,
)
New Features ✨
Bug Fixes 🐛
Openai
Other
Internal Changes 🔧
Django
Openai
Other

v2.59.0

Compare Source

New Features ✨
Langchain
Other
Bug Fixes 🐛

We've put additional data that might contain sensitive information, like GraphQL documents, behind the send_default_pii option.

Httpx
Langchain
Other
Internal Changes 🔧
Stdlib
Other

v2.58.0

Compare Source

New Features ✨
Bug Fixes 🐛
Anthropic
Pydantic Ai
Other
Internal Changes 🔧
Litellm
Other
Other

v2.57.0

Compare Source

New Features ✨
Langchain
Other
Bug Fixes 🐛
Openai
Other
Internal Changes 🔧
Ai
Langchain
Openai
Other

v2.56.0

Compare Source

New Features ✨
Bug Fixes 🐛
Anthropic
Other
Documentation 📚
Internal Changes 🔧
Other

v2.55.0

Compare Source

New Features ✨
Anthropic
Pydantic Ai
Other
Bug Fixes 🐛
Documentation 📚
Internal Changes 🔧
Anthropic

Note

PR body was truncated to here.


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label Jan 14, 2025
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.20.0 chore(deps): update dependency sentry-sdk to v2.21.0 Feb 12, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 74f3953 to fb1bcbb Compare February 12, 2025 11:43
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.21.0 chore(deps): update dependency sentry-sdk to v2.22.0 Feb 17, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from fb1bcbb to 84ca06f Compare February 17, 2025 16:21
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 84ca06f to f2284ff Compare March 17, 2025 11:52
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.22.0 chore(deps): update dependency sentry-sdk to v2.23.0 Mar 17, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from f2284ff to c7e4279 Compare March 17, 2025 17:29
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.23.0 chore(deps): update dependency sentry-sdk to v2.23.1 Mar 17, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from c7e4279 to 0bc7bf9 Compare March 21, 2025 15:27
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.23.1 chore(deps): update dependency sentry-sdk to v2.24.0 Mar 21, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 0bc7bf9 to 2467dd1 Compare March 24, 2025 11:14
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.24.0 chore(deps): update dependency sentry-sdk to v2.24.1 Mar 24, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 2467dd1 to 0515d79 Compare March 31, 2025 16:47
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.24.1 chore(deps): update dependency sentry-sdk to v2.25.0 Mar 31, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 0515d79 to 9e04fed Compare April 2, 2025 18:07
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.25.0 chore(deps): update dependency sentry-sdk to v2.25.1 Apr 2, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 9e04fed to 701674b Compare April 14, 2025 15:23
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.25.1 chore(deps): update dependency sentry-sdk to v2.26.0 Apr 14, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 701674b to 3e88e3c Compare April 15, 2025 11:40
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.26.0 chore(deps): update dependency sentry-sdk to v2.26.1 Apr 15, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 3e88e3c to c04fbc9 Compare April 24, 2025 10:42
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.26.1 chore(deps): update dependency sentry-sdk to v2.27.0 Apr 24, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from c04fbc9 to 4908b29 Compare May 12, 2025 10:31
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.27.0 chore(deps): update dependency sentry-sdk to v2.28.0 May 12, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 4908b29 to 127b21d Compare May 19, 2025 16:30
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.28.0 chore(deps): update dependency sentry-sdk to v2.29.1 May 19, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 127b21d to d94eade Compare June 12, 2025 14:39
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.29.1 chore(deps): update dependency sentry-sdk to v2.30.0 Jun 12, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from d94eade to fc2b3c6 Compare June 24, 2025 20:54
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from c308d38 to a6691b3 Compare July 30, 2025 17:26
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.34.0 chore(deps): update dependency sentry-sdk to v2.34.1 Jul 30, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 6ba22ba to 86b546c Compare August 14, 2025 17:44
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.34.1 chore(deps): update dependency sentry-sdk to v2.35.0 Aug 14, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 86b546c to 3b124b6 Compare August 26, 2025 17:11
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.35.0 chore(deps): update dependency sentry-sdk to v2.35.1 Aug 26, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 3b124b6 to 9c84fa1 Compare September 1, 2025 12:10
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.35.1 chore(deps): update dependency sentry-sdk to v2.35.2 Sep 1, 2025
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.35.2 chore(deps): update dependency sentry-sdk to v2.36.0 Sep 4, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 8d04258 to eabadb3 Compare September 5, 2025 12:49
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.36.0 chore(deps): update dependency sentry-sdk to v2.37.0 Sep 5, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from eabadb3 to 5cbe626 Compare September 9, 2025 14:53
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.37.0 chore(deps): update dependency sentry-sdk to v2.37.1 Sep 9, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 5cbe626 to ae5572a Compare September 16, 2025 05:55
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.37.1 chore(deps): update dependency sentry-sdk to v2.38.0 Sep 16, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from ae5572a to fe2ab36 Compare September 25, 2025 10:01
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.38.0 chore(deps): update dependency sentry-sdk to v2.39.0 Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from fe2ab36 to 3eeb08b Compare October 6, 2025 14:36
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.39.0 chore(deps): update dependency sentry-sdk to v2.40.0 Oct 6, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 3eeb08b to b9de61b Compare October 9, 2025 14:29
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.40.0 chore(deps): update dependency sentry-sdk to v2.41.0 Oct 9, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from b9de61b to 5009e35 Compare October 15, 2025 08:46
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.41.0 chore(deps): update dependency sentry-sdk to v2.42.0 Oct 15, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 5009e35 to 7b360a8 Compare October 20, 2025 15:12
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.42.0 chore(deps): update dependency sentry-sdk to v2.42.1 Oct 20, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 7b360a8 to efa18b0 Compare October 29, 2025 12:03
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.42.1 chore(deps): update dependency sentry-sdk to v2.43.0 Oct 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants