From f4f2d8c618c80f5bf034671e9943cc2a8abb4c76 Mon Sep 17 00:00:00 2001 From: Michael Hoffmann Date: Fri, 28 Feb 2025 16:08:14 +0100 Subject: [PATCH 1/2] Prepare 5.2.0 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0fd9c7..2b22527f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# CHANGELOG + +## 5.2.0 + +The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.2.0. + +### Features + +- Allow to configure the logger via the `sentry.yaml` configuration file [(#899)](https://github.com/getsentry/sentry-symfony/pull/899) + + ```yaml + sentry: + dsn: "%env(SENTRY_DSN)%" + options: + logger: "sentry.logger" + + services: + sentry.logger: + class: 'Sentry\Logger\DebugFileLogger' + arguments: + $filePath: '../../var/log/sentry.log' + ``` + +### Bug Fixes + +- Fixed updating the user context when a route is makred as stateless [(#910)](https://github.com/getsentry/sentry-symfony/pull/910) + +### Misc + +- Remove `symfony/security-core` and `symfony/security-http` as dependencies [(#912)](https://github.com/getsentry/sentry-symfony/pull/912) + ## 5.1.0 The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.1.0. From 53c3ab1aa7f500c8c32aa6077d2cc59399aeccdb Mon Sep 17 00:00:00 2001 From: Michi Hoffmann Date: Fri, 28 Feb 2025 18:12:18 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Mathieu Santostefano --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b22527f..db5b004b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ The Sentry SDK team is happy to announce the immediate availability of Sentry Sy ### Bug Fixes -- Fixed updating the user context when a route is makred as stateless [(#910)](https://github.com/getsentry/sentry-symfony/pull/910) +- Fixed updating the user context when a route is marked as stateless [(#910)](https://github.com/getsentry/sentry-symfony/pull/910) ### Misc