Skip to content

Update dependency sentry-sdk to v2#347

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

Update dependency sentry-sdk to v2#347
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/sentry-sdk-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 7, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
sentry-sdk (changelog) ~1~2.56.0 age confidence

Release Notes

getsentry/sentry-python (sentry-sdk)

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
Documentation 📚
Internal Changes 🔧
Agents
Openai
Openai Agents
Other

v2.53.0

Compare Source

Bug Fixes 🐛
Openai Agents
Other
Documentation 📚
Internal Changes 🔧
Openai Agents
Other

v2.52.0

Compare Source

New Features ✨
Other
Bug Fixes 🐛
Google Genai
Mcp
Other
Internal Changes 🔧
Fastmcp
Mcp
Other
Other

v2.51.0

Compare Source

New Features ✨
Openai
Openai Agents
Other
Bug Fixes 🐛
Internal Changes 🔧

v2.50.0

Compare Source

New Features ✨
Ai
Other
  • feat(asyncio): Add on-demand way to enable AsyncioIntegration by @​sentrivana in #​5288

    You can now enable the AsyncioIntegration on demand, after calling sentry_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_integration

# Initializing the SDK as early as possible, when there is no event loop yet
sentry_sdk.init(
    ...
    # No AsyncioIntegration in explicitly provided `integrations`
)

async def main():
    enable_asyncio_integration()  # instruments the current event loop
    # ...your code...
Bug Fixes 🐛
Integrations
  • fix(integrations): google genai report image inputs by @​constantinius in #​5337
  • fix(integrations): google-genai: reworked gen_ai.request.messages extraction from parameters by @​constantinius in #​5275
  • fix(integrations): pydantic-ai: properly format binary input message parts to be conformant with the gen_ai.request.messages structure by @​constantinius in #​5251
  • fix(integrations): Anthropic: add content transformation for images and documents by @​constantinius in #​5276
  • fix(integrations): langchain add multimodal content transformation functions for images, audio, and files by @​constantinius in #​5278
Litellm
Other
Documentation 📚
Internal Changes 🔧
Fastmcp
Release
  • ci(release): Bump Craft version to fix issues by @​BYK in #​5305
  • ci(release): Switch from action-prepare-release to Craft by @​BYK in #​5290
Other

v2.49.0

Compare Source

New Features ✨
Bug Fixes 🐛
Documentation 📚
Internal Changes 🔧

v2.48.0

Compare Source

Middleware spans are now disabled by default in Django, Starlette and FastAPI integrations. Set the middleware_spans integration-level
option to capture individual spans per middleware layer. To record Django middleware spans, for example, configure as follows

  import sentry_sdk
  from sentry_sdk.integrations.django import DjangoIntegration

  sentry_sdk.init(
      dsn="<your-dsn>",
      integrations=[
          DjangoIntegration(middleware_spans=True),
      ],
  )
New Features ✨
Langgraph
OTLP
Bug Fixes 🐛
Integrations
Internal Changes 🔧

v2.47.0

Compare Source

Bug Fixes 🐛

Configuration

📅 Schedule: 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 force-pushed the renovate/sentry-sdk-2.x branch from 9b6071e to 4a45efa Compare June 15, 2025 08:06
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 3 times, most recently from c08d902 to 4c62aa6 Compare June 28, 2025 20:34
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 3 times, most recently from 4a97cfe to e2c8fa8 Compare July 22, 2025 13:07
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 061d7ba to 910fa3e Compare July 30, 2025 12:07
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 910fa3e to 47bd7fd Compare August 14, 2025 18:00
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 47bd7fd to 58235f9 Compare August 26, 2025 14:41
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 393a50d to 6e7b886 Compare September 9, 2025 18:35
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 89f3923 to cc2dba4 Compare September 20, 2025 04:44
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 87dddcc to fbca4d6 Compare September 25, 2025 09:49
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from feac5f1 to 8e3b261 Compare October 9, 2025 18:56
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 3 times, most recently from 163b50e to c765111 Compare October 20, 2025 13:05
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from c765111 to dcffea4 Compare October 29, 2025 18:56
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from dcffea4 to 56611aa Compare November 11, 2025 09:52
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 094900b to bb8b8c3 Compare November 24, 2025 10:08
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from bb8b8c3 to 96bcb0f Compare December 3, 2025 18:08
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 1352b8a to 717341c Compare December 21, 2025 20:53
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 717341c to 6e4eaa6 Compare January 8, 2026 00:29
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 6e4eaa6 to 444b087 Compare January 8, 2026 13:26
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 444b087 to f4c333f Compare January 20, 2026 17:35
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from f4c333f to b83e772 Compare January 28, 2026 15:04
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from b83e772 to 358eb7c Compare February 4, 2026 16:44
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from 8e04fe8 to 0a5d068 Compare February 17, 2026 05:59
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 0a5d068 to 0d12d00 Compare March 2, 2026 17:47
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch 2 times, most recently from e7ee340 to 4bc0ec3 Compare March 17, 2026 17:19
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from 4bc0ec3 to cd814b6 Compare March 24, 2026 09:59
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x branch from cd814b6 to 9bc4af8 Compare March 26, 2026 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants