From 05d63b6a93f0cc8ade56bf86dc7fe1aea7d0b839 Mon Sep 17 00:00:00 2001 From: newrelic-ruby-agent-bot Date: Mon, 14 Aug 2023 18:15:28 +0000 Subject: [PATCH] bump version --- CHANGELOG.md | 4 ++-- lib/new_relic/version.rb | 4 ++-- newrelic.yml | 11 +++++++++++ 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a5281d179..debcac9296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # New Relic Ruby Agent Release Notes -## dev +## v9.4.0 -Version of the agent adds [Roda](https://roda.jeremyevans.net/) instrumentation, adds a new `allow_all_headers` configuration option to permit capturing all HTTP headers, introduces improved error tracking functionality by associating a transaction id with each error, and uses more reliable network timeout logic. +Version 9.4.0 of the agent adds [Roda](https://roda.jeremyevans.net/) instrumentation, adds a new `allow_all_headers` configuration option to permit capturing all HTTP headers, introduces improved error tracking functionality by associating a transaction id with each error, and uses more reliable network timeout logic. - **Feature: Add Roda instrumentation** diff --git a/lib/new_relic/version.rb b/lib/new_relic/version.rb index 6db9344edf..ad5eec0289 100644 --- a/lib/new_relic/version.rb +++ b/lib/new_relic/version.rb @@ -6,8 +6,8 @@ module NewRelic module VERSION # :nodoc: MAJOR = 9 - MINOR = 3 - TINY = 1 + MINOR = 4 + TINY = 0 STRING = "#{MAJOR}.#{MINOR}.#{TINY}" end diff --git a/newrelic.yml b/newrelic.yml index 1403250495..6aa5454354 100644 --- a/newrelic.yml +++ b/newrelic.yml @@ -33,6 +33,9 @@ common: &default_settings # - a.third.event # active_support_custom_events_names: [] + # If true, enables capture of all HTTP request headers for all destinations. + # allow_all_headers: false + # Your New Relic userKey. Required when using the New Relic REST API v2 to record # deployments using the newrelic deployments command. # api_key: "" @@ -222,6 +225,10 @@ common: &default_settings # (regardless of whether they are installed via Rack::Builder or Rails). # disable_middleware_instrumentation: false + # If true, disables agent middleware for Roda. This middleware is responsible for + # advanced feature support such as page load timing and error collection. + # disable_roda_auto_middleware: false + # If true, disables the collection of sampler metrics. Sampler metrics are metrics # that are not event-based (such as CPU time or memory usage). # disable_samplers: false @@ -479,6 +486,10 @@ common: &default_settings # prepend, chain, disabled. # instrumentation.resque: auto + # Controls auto-instrumentation of Roda at start up. May be one of: auto, prepend, + # chain, disabled. + # instrumentation.roda: auto + # Controls auto-instrumentation of Sinatra at start up. May be one of: auto, # prepend, chain, disabled. # instrumentation.sinatra: auto