Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Aug 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.34.12.68.0 age confidence

Release Notes

getsentry/sentry-python (sentry-sdk)

v2.68.0

Compare Source

Important
  • We're making enable_logs and enable_metrics no-op with this release (#​7177), and they'll be dropped in the next major.

    Previously, enable_logs also controlled automatic logs collection from the logging and Loguru integrations. These integrations now get an integration-level capture_sentry_logs boolean option to allow for more control over the auto-collection. These options are False by default, i.e., nothing is auto-collected without your explicit opt-in.

Action Needed

If you had enable_logs set to True:

  • If you were using the sentry_sdk.logger.X API, no action necessary, the API will just work.
  • If you were auto-collecting logs from either LoggingIntegration or LoguruIntegration, the auto-collection will be turned off in this release. You can switch auto-collection on explicitly with:
import sentry_sdk
from sentry_sdk.integrations.logging import LoggingIntegration
from sentry_sdk.integrations.loguru import LoguruIntegration

sentry_sdk.init(
    integrations=[
        LoggingIntegration(capture_sentry_logs=True),
        LoguruIntegration(capture_sentry_logs=True),
    ],
)

If you had enable_logs set to False:

  • If you were using it to gate usages of the sentry_sdk.logger.X API, you'll need to remove the calls entirely or define a before_send_log callback to filter out unwanted logs.

If you has enable_metrics set to False:

  • Any metrics emitted using the metrics API will be emitted. You'll need to drop them in a before_send_metric or remove the calls to the API.
Why We're Doing This

We recognize this is a disruptive change for some folks and want to make it clear this is a one-off. We're removing the options because they were an unnecessary hurdle that one had to jump through to be able to use logs and metrics, and it was confusing why the logging API would not just work on its own. On the other hand, we wanted to give you more fine-grained control over automatic collection.

New Features ✨
Other
Bug Fixes 🐛
Internal Changes 🔧
HTTPX, HTTPX2
Other

v2.67.1

Compare Source

Bug Fixes 🐛

v2.67.0

Compare Source

New Features ✨
Batcher
Integrations
Langchain
Openai
Streaming
Other
Bug Fixes 🐛
Openai Agents
Tests
Other
Documentation 📚
Internal Changes 🔧
Fastmcp
Mcp
Openai Agents
Other

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

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 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 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 2 times, most recently 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
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.56.0 chore(deps): update dependency sentry-sdk to v2.57.0 Mar 31, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 48e908f to 8db70f3 Compare April 13, 2026 17:51
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.57.0 chore(deps): update dependency sentry-sdk to v2.58.0 Apr 13, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 8db70f3 to 7e2c2b1 Compare May 4, 2026 13:52
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.58.0 chore(deps): update dependency sentry-sdk to v2.59.0 May 4, 2026
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.59.0 chore(deps): update dependency sentry-sdk to v2.60.0 May 13, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 7e2c2b1 to 2bb40fb Compare May 13, 2026 14:32
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 2bb40fb to 00d1428 Compare May 28, 2026 11:01
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.60.0 chore(deps): update dependency sentry-sdk to v2.61.0 May 28, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 00d1428 to d826d21 Compare June 1, 2026 19:05
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.61.0 chore(deps): update dependency sentry-sdk to v2.61.1 Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from d826d21 to 7e5ddae Compare June 8, 2026 17:04
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.61.1 chore(deps): update dependency sentry-sdk to v2.62.0 Jun 8, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 7e5ddae to 211fce4 Compare June 16, 2026 17:56
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.62.0 chore(deps): update dependency sentry-sdk to v2.63.0 Jun 16, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 211fce4 to 353d169 Compare June 30, 2026 13:37
@renovate renovate Bot changed the title chore(deps): update dependency sentry-sdk to v2.63.0 chore(deps): update dependency sentry-sdk to v2.64.0 Jun 30, 2026
@renovate
renovate Bot force-pushed the renovate/sentry-sdk-2.x-lockfile branch from 353d169 to ce6f618 Compare July 13, 2026 15:05
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