From 7016da91a97ee1ccb56f580c3e3c919538513758 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 14:50:34 +0000 Subject: [PATCH] [skill-drift] fix(sentry-python-sdk): add httpx2 integration Automated drift-fix run. Co-Authored-By: Claude (claude-sonnet-4-5) --- skills/sentry-python-sdk/SKILL.md | 2 +- skills/sentry-python-sdk/references/tracing.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/sentry-python-sdk/SKILL.md b/skills/sentry-python-sdk/SKILL.md index eec824d9..3bf658e2 100644 --- a/skills/sentry-python-sdk/SKILL.md +++ b/skills/sentry-python-sdk/SKILL.md @@ -215,7 +215,7 @@ Most integrations activate automatically when their package is installed — no | Django, Flask, FastAPI, Starlette, AIOHTTP, Tornado, Quart, Falcon, Pyramid, Sanic, Bottle | `DramatiqIntegration` | | Celery, RQ, Huey, ARQ | `GRPCIntegration` | | SQLAlchemy, Redis, asyncpg, pymongo | `StrawberryIntegration` | -| Requests, HTTPX, aiohttp-client | `AsyncioIntegration` | +| Requests, HTTPX, httpx2, aiohttp-client | `AsyncioIntegration` | | OpenAI, Anthropic, LangChain, Pydantic AI, MCP | `OpenTelemetryIntegration` | | Python `logging`, Loguru | `WSGIIntegration` / `ASGIIntegration` | diff --git a/skills/sentry-python-sdk/references/tracing.md b/skills/sentry-python-sdk/references/tracing.md index 9f1f80ce..51bfbde9 100644 --- a/skills/sentry-python-sdk/references/tracing.md +++ b/skills/sentry-python-sdk/references/tracing.md @@ -158,7 +158,7 @@ sentry_sdk.init(dsn="...", traces_sampler=traces_sampler) | SQLAlchemy | ✅ | All queries as spans + breadcrumbs | | Redis | ✅ | All commands as spans + breadcrumbs | | PyMongo | ✅ | All queries (covers mongoengine, Motor) | -| requests / httpx | ✅ | Outbound HTTP calls with trace propagation | +| requests / httpx / httpx2 | ✅ | Outbound HTTP calls with trace propagation | ### Database auto-instrumentation