From ab0489c13bf78907980805a91e0403b4409c6ab3 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Mon, 20 Oct 2025 11:38:59 +0200 Subject: [PATCH 1/2] Add changelog --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02cd1cd9..52e79192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.18.0 + +The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.18.0. + +### Bug Fixes + +- Ensure we flush logs when the application unexpectedly terminates [(#1052)](https://github.com/getsentry/sentry-laravel/pull/1052) + +### Misc + +- Use `SENTRY_LOG_LEVEL` environment variable instead of `SENTRY_LOGS_LEVEL` to be more consistent (`SENTRY_LOGS_LEVEL` will keep working as an alias for backward compatibility). [(#1051)](https://github.com/getsentry/sentry-laravel/pull/1051) +- Bump the PHP SDK to version `4.16.0` [(#1053)](https://github.com/getsentry/sentry-laravel/pull/1053) + ## 4.17.0 The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.17.0. From 90e83aea5463c7749042e291847b3146d9e3fc05 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Mon, 20 Oct 2025 13:25:53 +0200 Subject: [PATCH 2/2] Bump PHP SDK --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 22ab3224..c5a2cf98 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "require": { "php": "^7.2 | ^8.0", "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0", - "sentry/sentry": "^4.15.2", + "sentry/sentry": "^4.16.0", "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0", "nyholm/psr7": "^1.0" },