diff --git a/src/content/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-17-0.mdx b/src/content/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-17-0.mdx index 46c62b69ad9..88575b74150 100644 --- a/src/content/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-17-0.mdx +++ b/src/content/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-17-0.mdx @@ -42,13 +42,13 @@ security: [] - **Bugfix: Stop emitting inaccurate debug-level log about deprecated configuration options** - In the previous major release, we dropped support for `disable_` configuration options in favor of `instrumentation.`. Previously, a DEBUG level log warning appeared whenever `disable_*` options were set to `true`, even for libraries (e.g. Action Dispatch) without equivalent `instrumentation.*` options: + In the previous major release, we dropped support for many `disable_library_name` configuration options in favor of `instrumentation.library_name`. Previously, a DEBUG level log warning appeared whenever `disable_*` options were set to `true`, even for libraries (e.g. Action Dispatch) without equivalent `instrumentation.*` options: ```json - >DEBUG : [DEPRECATED] configuration disable_ for will be removed in the next major release. Use instrumentation. with one of ["auto", "disabled", "prepend", "chain"] + >DEBUG : [DEPRECATED] configuration disable_library_name for library_name will be removed in the next major release. Use instrumentation. library_name with one of ["auto", "disabled", "prepend", "chain"] ``` - This inaccurate warning has been removed. If you are disabling instrumentation using `instrumentation.: disabled` or `NEW_RELIC_INSTRUMENTATION_=disabled`, please verify the option exists by consulting our [configuration documentation](https://docs.newrelic.com/docs/apm/agents/ruby-agent/configuration/ruby-agent-configuration/#instrumentation). If the option does not exist, check the ['Disabling' section](https://docs.newrelic.com/docs/apm/agents/ruby-agent/configuration/ruby-agent-configuration/#disabling) to see if there is a related option. We apologize for the confusion. [PR#3005](https://github.com/newrelic/newrelic-ruby-agent/pull/3005) + This inaccurate warning has been removed. If you are disabling instrumentation using `instrumentation.library_name: disabled` or `NEW_RELIC_INSTRUMENTATION_LIBRARY_NAME=disabled`, please verify the option exists by consulting our [configuration documentation](https://docs.newrelic.com/docs/apm/agents/ruby-agent/configuration/ruby-agent-configuration/#instrumentation). If the option does not exist, check the ['Disabling' section](https://docs.newrelic.com/docs/apm/agents/ruby-agent/configuration/ruby-agent-configuration/#disabling) to see if there is a related option. We apologize for the confusion. [PR#3005](https://github.com/newrelic/newrelic-ruby-agent/pull/3005) - **Bugfix: Do not attempt to decorate logs with `nil` messages**