Skip to content

chore(deps): update dependency sentry-sdk to v2.61.1#711

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

chore(deps): update dependency sentry-sdk to v2.61.1#711
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sentry-sdk-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Aug 13, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
sentry-sdk (changelog) ==2.12.0==2.61.1 age confidence

Release Notes

getsentry/sentry-python (sentry-sdk)

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
Openai Agents
Other

v2.54.0

Compare Source

New Features ✨
  • Add set_attribute, remove_attribute to global API by @​sentrivana in #​5555

    You can now set and unset attributes on logs and metrics via top-level API. Think of it as sentry_sdk.set_tag() for attribute-based telemetry. Other event types (transactions, spans, errors) will be unaffected.

    import sentry_sdk
    
    sentry_sdk.init(...)
    
    sentry_sdk.set_attribute("my.attribute", "my value")
    
    # This metric will have "my.attribute" set
    sentry_sdk.metrics.count("counter", 1)
    
    # Remove the attribute
    sentry_sdk.remove_attribute("my.attribute")
    
    # This log will not have "my.attribute" set
    sentry_sdk.logger.info("An info log")
Bug Fixes 🐛
Openai
Other

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 Aug 13, 2024
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from e4e1f23 to 3cf8878 Compare September 9, 2024 15:42
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.13.0 chore(deps): update dependency sentry-sdk to v2.14.0 Sep 9, 2024
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 3cf8878 to a0a28f0 Compare October 1, 2024 16:09
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.14.0 chore(deps): update dependency sentry-sdk to v2.15.0 Oct 1, 2024
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.15.0 chore(deps): update dependency sentry-sdk to v2.16.0 Oct 8, 2024
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from a0a28f0 to 6ea0fab Compare October 8, 2024 15:52
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 6ea0fab to 5f5d763 Compare October 17, 2024 11:46
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.16.0 chore(deps): update dependency sentry-sdk to v2.17.0 Oct 17, 2024
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.17.0 chore(deps): update dependency sentry-sdk to v2.18.0 Nov 4, 2024
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 5f5d763 to fb690e5 Compare November 4, 2024 16:13
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from fb690e5 to 4261e4b Compare November 21, 2024 17:03
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.18.0 chore(deps): update dependency sentry-sdk to v2.19.0 Nov 21, 2024
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 4261e4b to 481e5cb Compare December 5, 2024 16:52
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.19.0 chore(deps): update dependency sentry-sdk to v2.19.1 Dec 5, 2024
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 481e5cb to ae1e640 Compare December 6, 2024 11:59
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.19.1 chore(deps): update dependency sentry-sdk to v2.19.2 Dec 6, 2024
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.19.2 chore(deps): update dependency sentry-sdk to v2.20.0 Jan 14, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from ae1e640 to 8a9fdd6 Compare January 14, 2025 14:03
@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 8a9fdd6 to 450bf2b Compare February 12, 2025 10:37
@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 450bf2b to e86ec9f Compare February 17, 2025 16:38
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from e86ec9f to ce82bc9 Compare March 17, 2025 18:01
@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.1 Mar 17, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from ce82bc9 to 4f2f1c1 Compare March 21, 2025 15:37
@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 4f2f1c1 to 8d90ab9 Compare March 24, 2025 10:28
@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 8d90ab9 to 568890b Compare March 31, 2025 16:33
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 85deb54 to e2dcfed Compare May 19, 2025 19:59
@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 e2dcfed to 5c228f6 Compare June 12, 2025 11:28
@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 5c228f6 to 8b89ae2 Compare June 24, 2025 20:57
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.30.0 chore(deps): update dependency sentry-sdk to v2.31.0 Jun 24, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 8b89ae2 to 92c896a Compare June 27, 2025 10:14
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.31.0 chore(deps): update dependency sentry-sdk to v2.32.0 Jun 27, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 92c896a to 3e4528a Compare July 15, 2025 16:41
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.32.0 chore(deps): update dependency sentry-sdk to v2.33.0 Jul 15, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 3e4528a to 0b75edc Compare July 21, 2025 13:02
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.33.0 chore(deps): update dependency sentry-sdk to v2.33.1 Jul 21, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 0b75edc to 7d9174d Compare July 22, 2025 13:11
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.33.1 chore(deps): update dependency sentry-sdk to v2.33.2 Jul 22, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 7d9174d to 9b738f0 Compare August 7, 2025 11:00
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.33.2 chore(deps): update dependency sentry-sdk to v2.34.1 Aug 7, 2025
@renovate renovate Bot force-pushed the renovate/sentry-sdk-2.x branch from 9b738f0 to 8b4f674 Compare August 14, 2025 18:04
@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 8b4f674 to 843d4d0 Compare August 26, 2025 17:57
@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 843d4d0 to 930a757 Compare September 1, 2025 22:04
@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 force-pushed the renovate/sentry-sdk-2.x branch from 930a757 to a0fce85 Compare September 4, 2025 08:57
@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 from a0fce85 to 1bff30d Compare September 5, 2025 13:12
@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 1bff30d to bb26e94 Compare September 9, 2025 14:26
@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 changed the title chore(deps): update dependency sentry-sdk to v2.37.1 chore(deps): update dependency sentry-sdk to v2.38.0 Sep 15, 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