From 0e53a3868f80c443e25f45de03829345550ebb74 Mon Sep 17 00:00:00 2001 From: Martin Linzmayer Date: Thu, 11 Sep 2025 15:29:30 +0200 Subject: [PATCH 1/3] prepare 5.5.0 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95885584..02fcd972 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## 5.5.0 + +The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.5.0. + +### Features + +- Enable auto-instrumentation for Symfony Cache [(#942)](https://github.com/getsentry/sentry-symfony/pull/942) +- Add flag to reset breadcrumbs between messages [(#946)](https://github.com/getsentry/sentry-symfony/pull/946) +- Allow callbacks in integration configuration [(#947)](https://github.com/getsentry/sentry-symfony/pull/947) + ## 5.4.1 The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.4.1. From 0f6c5bec258a5b399d5eece207f765c31508b8c5 Mon Sep 17 00:00:00 2001 From: Martin Linzmayer Date: Thu, 11 Sep 2025 15:57:53 +0200 Subject: [PATCH 2/3] wording and example --- CHANGELOG.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02fcd972..09cd53c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,23 @@ The Sentry SDK team is happy to announce the immediate availability of Sentry Sy ### Features -- Enable auto-instrumentation for Symfony Cache [(#942)](https://github.com/getsentry/sentry-symfony/pull/942) -- Add flag to reset breadcrumbs between messages [(#946)](https://github.com/getsentry/sentry-symfony/pull/946) -- Allow callbacks in integration configuration [(#947)](https://github.com/getsentry/sentry-symfony/pull/947) +- Enable auto-instrumentation for the Symfony Cache [(#942)](https://github.com/getsentry/sentry-symfony/pull/942) +- Add a new config flag to reset breadcrumbs between Symfony messages [(#946)](https://github.com/getsentry/sentry-symfony/pull/946) +```yaml +sentry: + messenger: + isolate_breadcrumbs_by_message: true +``` +- Allow to pass in callbacks to configure SDK integrations [(#947)](https://github.com/getsentry/sentry-symfony/pull/947) +```yaml +services: + App\IntegrationCallback: + factory: ['App\IntegrationCallback', 'factory'] + +sentry: + options: + integrations: 'App\IntegrationCallback' +``` ## 5.4.1 From f1891674557d40bbd9044788e93bd0839be023dc Mon Sep 17 00:00:00 2001 From: Martin Linzmayer Date: Thu, 11 Sep 2025 16:04:24 +0200 Subject: [PATCH 3/3] wording --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09cd53c0..70502a45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The Sentry SDK team is happy to announce the immediate availability of Sentry Sy ### Features -- Enable auto-instrumentation for the Symfony Cache [(#942)](https://github.com/getsentry/sentry-symfony/pull/942) +- Enable auto-instrumentation for the Symfony Cache Component [(#942)](https://github.com/getsentry/sentry-symfony/pull/942) - Add a new config flag to reset breadcrumbs between Symfony messages [(#946)](https://github.com/getsentry/sentry-symfony/pull/946) ```yaml sentry: