Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
newrelic-ruby-agent-bot committed Aug 14, 2023
1 parent 956f652 commit 05d63b6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# New Relic Ruby Agent Release Notes

## dev
## v9.4.0

Version <dev> 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**

Expand Down
4 changes: 2 additions & 2 deletions lib/new_relic/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
module NewRelic
module VERSION # :nodoc:
MAJOR = 9
MINOR = 3
TINY = 1
MINOR = 4
TINY = 0

STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
end
Expand Down
11 changes: 11 additions & 0 deletions newrelic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 05d63b6

Please sign in to comment.