From dcc8ac029a3ebd615dc521a3737a5e91c7e3782f Mon Sep 17 00:00:00 2001 From: newrelic-ruby-agent-bot Date: Wed, 21 Aug 2024 19:11:04 +0000 Subject: [PATCH] bump version --- CHANGELOG.md | 4 ++-- lib/new_relic/version.rb | 2 +- newrelic.yml | 10 ++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 770a209c3b..3b5946f5fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # New Relic Ruby Agent Release Notes -## dev +## v9.13.0 -Version enhances support for AWS Lambda functions, adds experimental OpenSearch instrumentation, updates framework detection, silences a Bundler deprecation warning, fixes Falcon dispatcher detection, fixes a bug with Redis instrumentation installation, and addresses a JRuby-specific concurrency issue. +Version 9.13.0 enhances support for AWS Lambda functions, adds experimental OpenSearch instrumentation, updates framework detection, silences a Bundler deprecation warning, fixes Falcon dispatcher detection, fixes a bug with Redis instrumentation installation, and addresses a JRuby-specific concurrency issue. - **Feature: Enhance AWS Lambda function instrumentation** diff --git a/lib/new_relic/version.rb b/lib/new_relic/version.rb index eb65139f10..e4889456a2 100644 --- a/lib/new_relic/version.rb +++ b/lib/new_relic/version.rb @@ -6,7 +6,7 @@ module NewRelic module VERSION # :nodoc: MAJOR = 9 - MINOR = 12 + MINOR = 13 TINY = 0 STRING = "#{MAJOR}.#{MINOR}.#{TINY}" diff --git a/newrelic.yml b/newrelic.yml index 737cba3760..cb2c78a591 100644 --- a/newrelic.yml +++ b/newrelic.yml @@ -509,6 +509,10 @@ common: &default_settings # prepend, chain, disabled. # instrumentation.net_http: auto + # Controls auto-instrumentation of the opensearch-ruby library at start-up. May + # be one of auto, prepend, chain, disabled. + # instrumentation.opensearch: auto + # Controls auto-instrumentation of Puma::Rack. When enabled, the agent hooks # into the to_app method in Puma::Rack::Builder to find gems to instrument # during application startup. May be one of: auto, prepend, chain, disabled. @@ -607,6 +611,12 @@ common: &default_settings # When true, the agent transmits data about your app to the New Relic collector. # monitor_mode: true + # If true, the agent captures OpenSearch queries in transaction traces. + # opensearch.capture_queries: true + + # If true, the agent obfuscates OpenSearch queries in transaction traces. + # opensearch.obfuscate_queries: true + # If true, uses Module#prepend rather than alias_method for ActiveRecord # instrumentation. # prepend_active_record_instrumentation: false