diff options
author | 2025-02-23 10:30:48 +0100 | |
---|---|---|
committer | 2025-02-23 10:30:48 +0100 | |
commit | 805db41b6aec645b09f60a41ec0b6cfff02ba4dd (patch) | |
tree | 1840c7c047668223b3130ef237c8cd61065154e9 | |
parent | Merge pull request #1469 from python-discord/dependabot/pip/coverage-7.6.12 (diff) | |
parent | Migrate to new tracing parameter (diff) |
Merge pull request #1472 from python-discord/dependabot/pip/sentry-sdk-2.22.0
Bump sentry-sdk from 2.20.0 to 2.22.0
-rw-r--r-- | poetry.lock | 9 | ||||
-rw-r--r-- | pydis_site/settings.py | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 |
3 files changed, 7 insertions, 6 deletions
diff --git a/poetry.lock b/poetry.lock index 69dbd657..8424e094 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1060,13 +1060,13 @@ files = [ [[package]] name = "sentry-sdk" -version = "2.20.0" +version = "2.22.0" description = "Python client for Sentry (https://sentry.io)" optional = false python-versions = ">=3.6" files = [ - {file = "sentry_sdk-2.20.0-py2.py3-none-any.whl", hash = "sha256:c359a1edf950eb5e80cffd7d9111f3dbeef57994cb4415df37d39fda2cf22364"}, - {file = "sentry_sdk-2.20.0.tar.gz", hash = "sha256:afa82713a92facf847df3c6f63cec71eb488d826a50965def3d7722aa6f0fdab"}, + {file = "sentry_sdk-2.22.0-py2.py3-none-any.whl", hash = "sha256:3d791d631a6c97aad4da7074081a57073126c69487560c6f8bffcf586461de66"}, + {file = "sentry_sdk-2.22.0.tar.gz", hash = "sha256:b4bf43bb38f547c84b2eadcefbe389b36ef75f3f38253d7a74d6b928c07ae944"}, ] [package.dependencies] @@ -1110,6 +1110,7 @@ sanic = ["sanic (>=0.8)"] sqlalchemy = ["sqlalchemy (>=1.2)"] starlette = ["starlette (>=0.19.1)"] starlite = ["starlite (>=1.48)"] +statsig = ["statsig (>=0.55.3)"] tornado = ["tornado (>=6)"] unleash = ["UnleashClient (>=6.0.1)"] @@ -1273,4 +1274,4 @@ brotli = ["brotli"] [metadata] lock-version = "2.0" python-versions = "3.11.*" -content-hash = "c224e11ab42e198f29bb3620706f3013a9efb0c16d9f7e6103ce25f169e02a3a" +content-hash = "b55e5e0f9940f83f5e4b56d14f40dae9f7e0cc4d3ea20de9d3979ce3b7879c10" diff --git a/pydis_site/settings.py b/pydis_site/settings.py index dcb37b54..e5ae7cbd 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -56,7 +56,7 @@ if not STATIC_BUILD: send_default_pii=True, release=f"site@{GIT_SHA}", profiles_sample_rate=1.0, - enable_tracing=True, + traces_sample_rate=1.0, enable_db_query_source=True, db_query_source_threshold_ms=100, # Queries slower that 100ms will include the source in the event ) diff --git a/pyproject.toml b/pyproject.toml index efd07e8b..dbc4cb10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ pyjwt = {version = "2.10.1", extras = ["crypto"]} pymdown-extensions = "10.14.3" python-frontmatter = "1.1.0" pyyaml = "6.0.2" -sentry-sdk = "2.20.0" +sentry-sdk = "2.22.0" whitenoise = "6.9.0" [tool.poetry.group.dev.dependencies] |