newrelic_rpm 9.4.0 → 9.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +1 -1
- data/lib/new_relic/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b8fd67a51c4774e943773f6a5b77937235b73def342903c8c9ae2a9e56dc516
|
4
|
+
data.tar.gz: 871ccb95840ce1c380e6ba30c93994b0139d3e1c2a39293ea94b39aa3e356a28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e40a7cbe05b88f0380fe6291920f9ea389f9628a0571b019884f83c632fb99abaf6907e8fb9930cffd608f32a7ad1e9cb6d2ad8d31312a8b05f8b207ce3bf9c7
|
7
|
+
data.tar.gz: a259750bda57cf53cee5e59327df1fb89ef5af9480f6e2d80c4c08a63c33a8d9f5ec402c040c93942f4ff2b96af1ba3d16bb07194fabd24ab54a4c661a071784
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# New Relic Ruby Agent Release Notes
|
2
2
|
|
3
|
+
## v9.4.1
|
4
|
+
|
5
|
+
Version 9.4.1 of the agent resolves a `NoMethodError` introduced in 9.4.0.
|
6
|
+
|
7
|
+
- **Bugfix: Resolve NoMethodError**
|
8
|
+
|
9
|
+
Ruby agent 9.4.0 introduced [Roda instrumentation](https://github.com/newrelic/newrelic-ruby-agent/pull/2144), which caused a `NoMethodError` to be raised when attempting to name a Roda transaction. This has been fixed. Thanks to [@spickermann](https://github.com/spickermann) for reporting this issue. [PR#2167](https://github.com/newrelic/newrelic-ruby-agent/pull/2167)
|
10
|
+
|
3
11
|
## v9.4.0
|
4
12
|
|
5
13
|
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.
|
@@ -41,7 +41,7 @@ module NewRelic::Agent::Instrumentation
|
|
41
41
|
def _roda_handle_main_route_with_tracing(*args)
|
42
42
|
perform_action_with_newrelic_trace(
|
43
43
|
category: :roda,
|
44
|
-
name: TransactionNamer.transaction_name(request),
|
44
|
+
name: ::NewRelic::Agent::Instrumentation::Roda::TransactionNamer.transaction_name(request),
|
45
45
|
params: ::NewRelic::Agent::ParameterFiltering::apply_filters(request.env, rack_request_params)
|
46
46
|
) do
|
47
47
|
yield
|
data/lib/new_relic/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.4.
|
4
|
+
version: 9.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanna McClure
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2023-08-
|
14
|
+
date: 2023-08-16 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|