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
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,35 @@
1
1
# Changelog
2
2
3
+
## 4.5.0
4
+
5
+
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.5.0.
6
+
7
+
### Features
8
+
9
+
- Limit when SQL query origins are being captured [(#881)](https://github.com/getsentry/sentry-laravel/pull/881)
10
+
11
+
We now only capture the origin of a SQL query when the query is slower than 100ms, configurable by the `SENTRY_TRACE_SQL_ORIGIN_THRESHOLD_MS` environment variable.
12
+
13
+
- Add tracing and breadcrumbs for [Notifications](https://laravel.com/docs/11.x/notifications)[(#852)](https://github.com/getsentry/sentry-laravel/pull/852)
14
+
15
+
- Add reporter for `Model::preventAccessingMissingAttributes()`[(#824)](https://github.com/getsentry/sentry-laravel/pull/824)
16
+
17
+
- Make it easier to enable the debug logger [(#880)](https://github.com/getsentry/sentry-laravel/pull/880)
18
+
19
+
You can now enable the debug logger by adding the following to your `config/sentry.php` file:
20
+
21
+
```php
22
+
'logger' => Sentry\Logger\DebugFileLogger::class, // This will log SDK logs to `storage_path('logs/sentry.log')`
23
+
```
24
+
25
+
Only use this in development and testing environments, as it can generate a lot of logs.
26
+
27
+
### Bug Fixes
28
+
29
+
- Fix Lighthouse operation not detected when query contained a fragment before the operation [(#883)](https://github.com/getsentry/sentry-laravel/pull/883)
30
+
31
+
- Fix an exception being thrown when the username extracted from the authenticated user model is not a string [(#887)](https://github.com/getsentry/sentry-laravel/pull/887)
32
+
3
33
## 4.4.1
4
34
5
35
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.4.1.
0 commit comments