Releases: getsentry/sentry-laravel
Releases · getsentry/sentry-laravel
2.4.1
2.4.0
- Read the request IP from the Laravel request to make it more accurate when behind a reverse proxy (requires trusted proxies to be setup correctly) (#419)
- Get request information (like the URL) from the Laravel request instead of constructing it from the global state (#419)
- Fix generated route name not correctly ignored when using prefix (#441)
- Fix overwriting the transaction name if it's set by the user (#442)
- Add result from optional
context(): array
method on captured exception to the event sent to Sentry (#457) - Fix not overwriting the event transaction name if it was an empty string (#460)
- Bump Sentry SDK to
3.2.*
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.1
2.0.0
Breaking Change: This version uses the envelope endpoint. If you are
using an on-premise installation it requires Sentry version >= v20.6.0
to work. If you are using
sentry.io nothing will change and no action is needed.
Tracing API / Monitor Performance
In this version, we released API for Tracing. \Sentry\startTransaction
is your entry point for manual instrumentation.
More information can be found in our Performance docs.
- Using
^3.0
of Sentry PHP SDK - Add support for Tracing, enable it by setting
traces_sample_rate
in the config to a value > 0 (the value should be larger than0.0
and smaller or equal than1.0
(to send everything))