Skip to content

chore(deps): update dependency sentry-sdk to v2.56.0#128

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

chore(deps): update dependency sentry-sdk to v2.56.0#128
renovate[bot] wants to merge 1 commit intomainfrom
renovate/sentry-sdk-2.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 14, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
sentry-sdk (changelog) 2.34.12.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-lockfile branch from 7568964 to c8da4c2 Compare August 19, 2025 13:38
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.35.0 fix(deps): update dependency sentry-sdk to v2.35.1 Aug 26, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from c8da4c2 to ead650d Compare August 26, 2025 18:28
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.35.1 fix(deps): update dependency sentry-sdk to v2.35.2 Sep 1, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from ead650d to 2fd076e Compare September 1, 2025 19:43
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.35.2 fix(deps): update dependency sentry-sdk to v2.36.0 Sep 4, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 2fd076e to fe279a6 Compare September 4, 2025 09:10
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.36.0 fix(deps): update dependency sentry-sdk to v2.37.0 Sep 5, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from fe279a6 to c9cb7e2 Compare September 5, 2025 13:11
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.37.0 fix(deps): update dependency sentry-sdk to v2.37.1 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from c9cb7e2 to 4750b50 Compare September 9, 2025 17:50
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.37.1 fix(deps): update dependency sentry-sdk to v2.38.0 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 4750b50 to c73ba5b Compare September 16, 2025 02:49
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.38.0 fix(deps): update dependency sentry-sdk to v2.39.0 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from c73ba5b to bcfc1a7 Compare September 25, 2025 10:00
@renovate renovate bot changed the title fix(deps): update dependency sentry-sdk to v2.39.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-lockfile branch from bcfc1a7 to c9652b1 Compare October 6, 2025 14:37
@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 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-lockfile branch from c9652b1 to 9611099 Compare October 9, 2025 15:23
@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-lockfile branch 2 times, most recently from 83376f6 to 401bf94 Compare October 20, 2025 13:44
@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-lockfile branch from 401bf94 to 07859c3 Compare October 29, 2025 15:52
@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
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 07859c3 to 36f97dd Compare November 11, 2025 12:15
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.43.0 chore(deps): update dependency sentry-sdk to v2.44.0 Nov 11, 2025
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.44.0 chore(deps): update dependency sentry-sdk to v2.45.0 Nov 18, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 36f97dd to 687d1ab Compare November 18, 2025 14:12
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 687d1ab to 2dc9bd0 Compare November 24, 2025 13:51
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.45.0 chore(deps): update dependency sentry-sdk to v2.46.0 Nov 24, 2025
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.46.0 chore(deps): update dependency sentry-sdk to v2.47.0 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 2dc9bd0 to 9ebb56b Compare December 3, 2025 18:09
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 9ebb56b to 94e204d Compare December 16, 2025 15:08
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.47.0 chore(deps): update dependency sentry-sdk to v2.48.0 Dec 16, 2025
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 94e204d to a6d3ffc Compare January 8, 2026 12:59
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.48.0 chore(deps): update dependency sentry-sdk to v2.49.0 Jan 8, 2026
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from a6d3ffc to ab668b2 Compare January 20, 2026 17:06
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.49.0 chore(deps): update dependency sentry-sdk to v2.50.0 Jan 20, 2026
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from ab668b2 to 2f6063e Compare January 28, 2026 11:39
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.50.0 chore(deps): update dependency sentry-sdk to v2.51.0 Jan 28, 2026
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 2f6063e to f74f0fb Compare February 4, 2026 16:36
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.51.0 chore(deps): update dependency sentry-sdk to v2.52.0 Feb 4, 2026
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from f74f0fb to 3dc8a72 Compare February 16, 2026 13:47
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.52.0 chore(deps): update dependency sentry-sdk to v2.53.0 Feb 16, 2026
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 3dc8a72 to fb2f24e Compare March 2, 2026 16:41
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.53.0 chore(deps): update dependency sentry-sdk to v2.54.0 Mar 2, 2026
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.54.0 chore(deps): update dependency sentry-sdk to v2.55.0 Mar 17, 2026
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from fb2f24e to 699d2be Compare March 17, 2026 17:55
@renovate renovate bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 699d2be to 48e908f Compare March 24, 2026 10:01
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v2.55.0 chore(deps): update dependency sentry-sdk to v2.56.0 Mar 24, 2026
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