Skip to content

Commit 2f17038

Browse files
committed
chore: update sentry-sdk to version 2.7.1
1 parent 5aa301c commit 2f17038

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

pdm.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Default template for PDM package"
55
authors = [{ name = "Molly Draven", email = "[email protected]" }]
66
dependencies = [
77
"server @ file:///${PROJECT_ROOT}/projects/server",
8-
"sentry-sdk>=2.7.0",
8+
"sentry-sdk>=2.7.1",
99
"Tcl>=0.2", # Needed for tkinter to work correctly
1010
]
1111
requires-python = "==3.12.*"

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ certifi==2024.6.2
66
cfgv==3.4.0
77
click==8.1.7
88
colorama==0.4.6; sys_platform == "win32" or platform_system == "Windows"
9-
coverage==7.5.4
9+
coverage==7.5.3
1010
distlib==0.3.8
11-
filelock==3.15.4
11+
filelock==3.15.3
1212
flake8==7.1.0
1313
flake8-black==0.3.6
1414
identify==2.5.36

rm-server.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33

44
from server.rusty_motors_server import RustyMotorsServer
5+
from sentry_sdk.integrations.socket import SocketIntegration
56

67
import sentry_sdk
78

@@ -14,6 +15,7 @@
1415
# of sampled transactions.
1516
# We recommend adjusting this value in production.
1617
profiles_sample_rate=1.0,
18+
integrations=[SocketIntegration()],
1719
)
1820

1921

0 commit comments

Comments
 (0)