From 90525f5c8448812f5ea3ebbb10d76c3bddedae9d Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Wed, 13 Dec 2023 11:24:14 +0100 Subject: [PATCH 1/2] Add release notes for 1.25.2 Updates CHANGELOG.asciidoc --- CHANGELOG.asciidoc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 9afcb6630..11a2913a2 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -23,6 +23,19 @@ endif::[] [[release-notes-1.x]] === .NET Agent version 1.x +[[release-notes-1.25.2]] +==== 1.25.2 + +This release fixes a bug in `Elastic.Apm.AspNetCore` when using ` UseElasticApm()` not correctly setting statuscodes. +The bug was not present in the more commonly used `Elastic.Apm.NetCoreAll` since it used an `DiagnosticListener` approach. +With this release we ensure both packages used the exact same mechanism to instrument ASP.NET Core. + +===== Bug fixes + +{pull}2213[#2213] Remove ApmMiddleWare, only use DiagnosticSource listener for ASP.NET Core. +{pull}2239[#2239] Move StartupHooks over to netstandard2.0. + + [[release-notes-1.25.1]] ==== 1.25.1 From a80963cec5af102a945f22ee6a643ed36ffa7a3e Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Wed, 13 Dec 2023 11:35:24 +0100 Subject: [PATCH 2/2] spelling --- CHANGELOG.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 11a2913a2..fd7d625cb 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -26,9 +26,9 @@ endif::[] [[release-notes-1.25.2]] ==== 1.25.2 -This release fixes a bug in `Elastic.Apm.AspNetCore` when using ` UseElasticApm()` not correctly setting statuscodes. -The bug was not present in the more commonly used `Elastic.Apm.NetCoreAll` since it used an `DiagnosticListener` approach. -With this release we ensure both packages used the exact same mechanism to instrument ASP.NET Core. +This release fixes a bug in `Elastic.Apm.AspNetCore` when using ` UseElasticApm()` not correctly setting status codes. +The bug was not present in the more commonly used `Elastic.Apm.NetCoreAll` since it uses a `DiagnosticListener` approach. +With this release we ensure both packages use the exact same `DiagnosticListener` mechanism to instrument ASP.NET Core. ===== Bug fixes