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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c8e0198f3fe3562d84248d3be65acdc8e7ae92e0ca27ecaa1023ca2303152464
4
- data.tar.gz: 6d721589df2371d8d63b96eba38adddff1e534678e19b9adfdf028807233d109
3
+ metadata.gz: 8b8fd67a51c4774e943773f6a5b77937235b73def342903c8c9ae2a9e56dc516
4
+ data.tar.gz: 871ccb95840ce1c380e6ba30c93994b0139d3e1c2a39293ea94b39aa3e356a28
5
5
  SHA512:
6
- metadata.gz: 5e72bfc0219779d6912631c687d64d896b5becf69be013b35f0a88729ebc444f592d72261b2620d7fdc419b7f3fe0557af56e7e3577a6a482c1cdd4fd19aea7a
7
- data.tar.gz: 99a8dee22642c178cf8800e1eec28544262c9b09abcfeb9f856495121de33d5fe1e33483e233d41d746d37cb2e0a2377db00a446d80653816dc252967b64b3e1
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
@@ -7,7 +7,7 @@ module NewRelic
7
7
  module VERSION # :nodoc:
8
8
  MAJOR = 9
9
9
  MINOR = 4
10
- TINY = 0
10
+ TINY = 1
11
11
 
12
12
  STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
13
13
  end
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.0
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-15 00:00:00.000000000 Z
14
+ date: 2023-08-16 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler