diff --git a/CHANGELOG.md b/CHANGELOG.md index 107ea6dad2..705df70244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # New Relic Ruby Agent Release Notes +## v9.4.2 + +Version 9.4.2 of the agent re-addresses a `NoMethodError` introduced in 9.4.0. + +- **Bugfix: Resolve NoMethodError** + + Ruby agent 9.4.1 attempted to fix a `NoMethodError` introduced in 9.4.0. A missing `require` prevented a method from scoping appropriately and has now been added. Thanks to [@spickermann](https://github.com/spickermann) and [ColinOrr](https://github.com/ColinOrr) for working with us to get this resolved. [PR#2167](https://github.com/newrelic/newrelic-ruby-agent/pull/2167) + ## v9.4.1 Version 9.4.1 of the agent resolves a `NoMethodError` introduced in 9.4.0. diff --git a/lib/new_relic/agent/instrumentation/roda.rb b/lib/new_relic/agent/instrumentation/roda.rb index f55553572d..2606c602d3 100644 --- a/lib/new_relic/agent/instrumentation/roda.rb +++ b/lib/new_relic/agent/instrumentation/roda.rb @@ -3,6 +3,7 @@ # frozen_string_literal: true require_relative 'roda/instrumentation' +require_relative 'roda/roda_transaction_namer' DependencyDetection.defer do named :roda