From f0585ab975baa0bc333681f26f3564d3c3102f06 Mon Sep 17 00:00:00 2001 From: Tanna McClure Date: Fri, 22 Mar 2024 15:03:13 -0500 Subject: [PATCH 1/2] add changelog entry --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78af4b9d7b..3642d9dcc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,10 @@ Version introduces the option to store tracer state on the thread-level an With [Issue#2462](https://github.com/newrelic/newrelic-ruby-agent/issues/2462), community member [@miry](https://github.com/miry) explained that it was possible for an HTTP response headers hash to have symbols for values. Not only would these symbols prevent the inclusion of the New Relic browser agent tag in the response body, but more importantly they would cause an exception that would bubble up to the monitored web application itself. With [PR#2465](https://github.com/newrelic/newrelic-ruby-agent/pull/2465) symbol based values are now supported and all other potential future exceptions are now handled. Additionally, the refactor to support symbols has been shown through benchmarking to give the processing of string and mixed type hashes a slight speed boost too. +- **Bugfix: Prevent Exception in Active Support Broadcast logger instrumentation** + + Previously, in certain situations the agent could cause an exception to be raised when attempting to interact with a broadcast log event. This has been fixed. Thanks to [@nathan-appere](https://github.com/nathan-appere) for reporting this issue and providing a fix! [PR#2510](https://github.com/newrelic/newrelic-ruby-agent/pull/2510) + ## v9.7.1 From 716d5dbf4acf6166ff969bf44892f901d9c3d736 Mon Sep 17 00:00:00 2001 From: Tanna McClure Date: Fri, 22 Mar 2024 15:06:31 -0500 Subject: [PATCH 2/2] add to summary --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3642d9dcc7..63b54f1220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## dev -Version introduces the option to store tracer state on the thread-level and hardens the browser agent insertion logic to better proactively anticipate errors. +Version introduces the option to store tracer state on the thread-level, hardens the browser agent insertion logic to better proactively anticipate errors, and prevents excpetions from being raised in the Active Support Broadcast logger instrumentation. - **Feature: Add instrumentation for ruby-openai**