From 83c15afc8168e42047aab5846cceaa390d8d3d4e Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Mon, 22 May 2023 10:16:04 -0700 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b9cffe912..5533c15f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,19 @@ # Changelog -## 3.32.0 +## Unreleased ### Features - .NET SDK changes for exception groups ([#2287](https://github.com/getsentry/sentry-dotnet/pull/2287)) + - This changes how `AggregateException` is handled. Instead of filtering them out client-side, the SDK marks them as an "exception group", + and adds includes data that represents the hierarchical structure of inner exceptions. Sentry now recognizes this server-side, + improving the accuracy of the issue detail page. + - Accordingly, the `KeepAggregateException` option is now obsolete and does nothing. Please remove any usages of `KeepAggregateException`. + +## 3.32.0 + +### Features + - Azure Functions (Isolated Worker/Out-of-Process) support ([#2346](https://github.com/getsentry/sentry-dotnet/pull/2346)) - Initial `beta.1` release. Please give it a try and let us know how it goes! - Documentation is TBD. For now, see `/samples/Sentry.Samples.AzureFunctions.Worker`.