Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit c748b1c

Browse files
committed
Update shared and sentry_sdk
This pulls in an updated version of shared that has more caching, in particular around GitHub calls. Also updates the `sentry_sdk`, and configures it to automatically flag redis calls related to caching.
1 parent 382f278 commit c748b1c

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

codecov/settings_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,9 +411,9 @@
411411
dsn=SENTRY_DSN,
412412
event_scrubber=EventScrubber(denylist=SENTRY_DENY_LIST),
413413
integrations=[
414-
DjangoIntegration(),
414+
DjangoIntegration(signals_spans=False),
415415
CeleryIntegration(),
416-
RedisIntegration(),
416+
RedisIntegration(cache_prefixes=["cache:"]),
417417
HttpxIntegration(),
418418
],
419419
environment=SENTRY_ENV,

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ dependencies = [
4040
"redis==4.4.4",
4141
"regex==2023.12.25",
4242
"requests==2.32.3",
43-
"sentry-sdk>=2.13.0",
44-
"sentry-sdk[celery]==2.13.0",
43+
"sentry-sdk>=2.25.1",
44+
"sentry-sdk[celery]>=2.25.1",
4545
"shared",
4646
"simplejson==3.17.2",
4747
"starlette==0.40.0",
@@ -74,4 +74,4 @@ dev-dependencies = [
7474
]
7575

7676
[tool.uv.sources]
77-
shared = { git = "https://github.com/codecov/shared", rev = "ece4366f3bce7fab2216704f85e365fbbe0f147d" }
77+
shared = { git = "https://github.com/codecov/shared", rev = "ae1d4cf84490f0ae41395cda3567fe3db7124be3" }

uv.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)