From db8e611efd0491499ce5e6b9a87ebe3769b8eb16 Mon Sep 17 00:00:00 2001 From: Michael Lang Date: Wed, 26 Aug 2020 15:05:30 -0400 Subject: [PATCH] added PR #377 to the CHANGELOG --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7464e26006..f25f44b40e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ endpoint, when it should have used the original configured value in `Agent.config[:host]`. The agent now uses the correct host for all calls to preconnect. + * **Bugfix: calling `add_custom_attributes` no longer modifies the params of the caller** + + The previous agent's improvements to recording attributes at the span level had an unexpected + side-effect of modifying the params passed to the API call as duplicated attributes were deleted + in the process. This is now fixed and params passed in are no longer modified. + + Thanks to Pete Johns (@johnsyweb) for the PR that resolves this bug. + * **Bugfix: `http.url` query parameters spans are now obfuscated** Previously, the agent was recording the full URL of the external requests, including @@ -57,7 +65,7 @@ * **Remove NewRelic::Metrics** - The `NewRelic::Metrics:: module has been removed from the agent since it is no longer used. + The `NewRelic::Metrics` module has been removed from the agent since it is no longer used. Thanks to @csaura for the contribution!