Skip to content

Commit 1cdaea4

Browse files
authored
Prepare 4.5.0 (#888)
1 parent 0378a40 commit 1cdaea4

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

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+
333
## 4.4.1
434

535
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.4.1.

0 commit comments

Comments
 (0)