You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,17 @@
12
12
- Drop support for Laravel 5.x (#581)
13
13
- Remove `Sentry\Integration::extractNameForRoute()`, it's alternative `Sentry\Integration::extractNameAndSourceForRoute()` is marked as `@internal` (#580)
14
14
- Remove extracting route name or controller for transaction names (#583). This unifies the transaction names to a more concise format.
15
+
- Remove internal `Sentry\Integration::currentTracingSpan()`, use `SentrySdk::getCurrentHub()->getSpan()` if you were using this internal method. (#592)
15
16
16
17
**Other changes**
17
18
18
19
- Add support for Dynamic Sampling (#572)
19
20
- Set the tracing transaction name on the `Illuminate\Routing\Events\RouteMatched` instead of at the end of the request (#580)
20
21
- Add tracing span for Laravel HTTP client requests (#585)
21
22
- Simplify Sentry meta tag retrieval, by adding `Sentry\Laravel\Integration::sentryMeta()` (#586)
23
+
- Fix tracing with nested queue jobs (mostly when running jobs in the `sync` driver) (#592)
24
+
- Add a `http.route` span, this span indicates the time that is spent inside a controller method or route closure (#593)
25
+
- Add a `db.transaction` span, this span indicates the time that is spent inside a database transaction (#594)
0 commit comments