-
Notifications
You must be signed in to change notification settings - Fork 530
Comparing changes
Open a pull request
base repository: getsentry/sentry-python
base: 2.23.1
head repository: getsentry/sentry-python
compare: 2.24.0
- 13 commits
- 20 files changed
- 8 contributors
Commits on Mar 17, 2025
-
getsentry-bot committed
Mar 17, 2025 Loading Loading status checks…Configuration menu - View commit details
-
Copy full SHA for 5dcda1d - Browse repository at this point
Copy the full SHA 5dcda1dView commit details
Commits on Mar 18, 2025
-
Support Starlette/FastAPI
app.host
(#4157)In Starlette/FastAPI you're able to create subapps. When using `transaction_style="url"` in our integration, this would throw an exception because we try to access `route.path` to determine the transaction name, but `Host` routes have no `path` attribute. Closes #2631
Configuration menu - View commit details
-
Copy full SHA for e85715a - Browse repository at this point
Copy the full SHA e85715aView commit details -
feat(tests): Update tox.ini (#4146)
Regular `tox.ini` update
Configuration menu - View commit details
-
Copy full SHA for bc54a1d - Browse repository at this point
Copy the full SHA bc54a1dView commit details
Commits on Mar 19, 2025
-
Handle loguru msg levels that are not supported by Sentry (#4147)
Loguru has two message levels `TRACE` and `SUCCESS` that are not available in Sentry breadcrumbs. This PR maps `TRACE` to `debug` and `SUCCESS` to `info` in Sentry so those breadcrumbs do not show a confusing error message in the Sentry UI. Fixes #2759
Configuration menu - View commit details
-
Copy full SHA for 11abdd2 - Browse repository at this point
Copy the full SHA 11abdd2View commit details -
style(integrations): Fix captured typo (#4161)
Small typo fix
Configuration menu - View commit details
-
Copy full SHA for 65132ba - Browse repository at this point
Copy the full SHA 65132baView commit details -
Reset
DedupeIntegration
'slast-seen
ifbefore_send
dropped the ……event (#4142) Imagine an app throws an exception twice, from different places. The first exception is dropped in the user's `before_send`. The second exception is not. Should the second exception appear in Sentry? The current state is that it won't, since `DedupeIntegration` will take the first, dropped exception into account. When encountering the second exception, it'll consider it a duplicate and will drop it, even though the first exception never made it to Sentry. In this PR, we reset `DedupeIntegration`'s `last-seen` if an event has been dropped by `before_send`, ensuring that the next exception will be reported. Closes #371 --------- Co-authored-by: Anton Pirker <anton.pirker@sentry.io>
Configuration menu - View commit details
-
Copy full SHA for 0d3bc3d - Browse repository at this point
Copy the full SHA 0d3bc3dView commit details -
feat(profiling): reverse profile_session start/stop methods deprecati…
Configuration menu - View commit details
-
Copy full SHA for f6db981 - Browse repository at this point
Copy the full SHA f6db981View commit details
Commits on Mar 20, 2025
-
chore(profiler): Add deprecation warning for session functions (#4171)
We're deprecating the short-lived `start_profile_session` and `stop_profile_session` functions in favor of `start_profiler` and `stop_profiler`, respectively. The functions will be dropped in 3.x, see #4170
Configuration menu - View commit details
-
Copy full SHA for eb189ef - Browse repository at this point
Copy the full SHA eb189efView commit details -
The URL www.squirrelchasers.com is actually existing, so we should not access it in our tests. Hope this make the test more stable.
Configuration menu - View commit details
-
Copy full SHA for f76528f - Browse repository at this point
Copy the full SHA f76528fView commit details -
Update scripts sources (#4166)
# PR Summary Small PR - Commit d4f4130 moved scripts. This PR adjusts sources to changes. Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2579cb2 - Browse repository at this point
Copy the full SHA 2579cb2View commit details -
Fix memory leak by not piling up breadcrumbs forever in Spark workers. (
Configuration menu - View commit details
-
Copy full SHA for 5715734 - Browse repository at this point
Copy the full SHA 5715734View commit details -
fix(tracing): Fix
InvalidOperation
(#4179)`InvalidOperation` can occur when using tracing if the `Decimal` class's global context has been modified to set the precision below 6. This change fixes this bug by setting a custom context for our `quantize` call. Fixes #4177
Configuration menu - View commit details
-
Copy full SHA for 12b3ca3 - Browse repository at this point
Copy the full SHA 12b3ca3View commit details
Commits on Mar 21, 2025
-
Configuration menu - View commit details
-
Copy full SHA for a3356d7 - Browse repository at this point
Copy the full SHA a3356d7View commit details
There are no files selected for viewing