newrelic_rpm 9.4.1 → 9.4.2

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: 8b8fd67a51c4774e943773f6a5b77937235b73def342903c8c9ae2a9e56dc516
4
- data.tar.gz: 871ccb95840ce1c380e6ba30c93994b0139d3e1c2a39293ea94b39aa3e356a28
3
+ metadata.gz: 9d061626a8cd184640b8e8bf85c54d475f66f98cadf9385043e91b42d6abff6a
4
+ data.tar.gz: 29165d5746ceedf8a3cc7862420547e523c6f121a8e3d2b710cf90bb2a3a627c
5
5
  SHA512:
6
- metadata.gz: e40a7cbe05b88f0380fe6291920f9ea389f9628a0571b019884f83c632fb99abaf6907e8fb9930cffd608f32a7ad1e9cb6d2ad8d31312a8b05f8b207ce3bf9c7
7
- data.tar.gz: a259750bda57cf53cee5e59327df1fb89ef5af9480f6e2d80c4c08a63c33a8d9f5ec402c040c93942f4ff2b96af1ba3d16bb07194fabd24ab54a4c661a071784
6
+ metadata.gz: e4c874df18c760e0a79c7fd14577b18a291449d73f781e2fb9e48fcb6ddc60bc3e0a8750a146393ac73248a7a68f84b371d9ee908b297f58323cf3095f96f806
7
+ data.tar.gz: b3d1137d3eb8db15695052498e32069feb4d6f69b20847de646d0fdbd925a5de1bd15895e1f561092fc3cdc66400adc1ef25d16b19ac342fe53ec7acaf2d24c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # New Relic Ruby Agent Release Notes
2
2
 
3
+ ## v9.4.2
4
+
5
+ Version 9.4.2 of the agent re-addresses the 9.4.0 issue of `NoMethodError` seen when using the `uppy-s3_multipart` gem.
6
+
7
+ - **Bugfix: Resolve NoMethodError**
8
+
9
+ Ruby agent 9.4.1 attempted to fix a `NoMethodError` introduced in 9.4.0. A missing `require` prevented a method from scoping appropriately and has now been added. Thanks to [@spickermann](https://github.com/spickermann) and [@ColinOrr](https://github.com/ColinOrr) for working with us to get this resolved. [PR#2167](https://github.com/newrelic/newrelic-ruby-agent/pull/2167)
10
+
3
11
  ## v9.4.1
4
12
 
5
13
  Version 9.4.1 of the agent resolves a `NoMethodError` introduced in 9.4.0.
@@ -10,7 +10,7 @@ module NewRelic
10
10
  extend self
11
11
 
12
12
  ROOT = '/'.freeze
13
- REGEX_MULTIPLE_SLASHES = %r{^[/^\A]*(.*?)[/$?\z]*$}.freeze
13
+ REGEX_MULTIPLE_SLASHES = %r{^[/^]*(.*?)[/$?]*$}.freeze
14
14
 
15
15
  def transaction_name(request)
16
16
  path = request.path || ::NewRelic::Agent::UNKNOWN_METRIC
@@ -3,6 +3,7 @@
3
3
  # frozen_string_literal: true
4
4
 
5
5
  require_relative 'roda/instrumentation'
6
+ require_relative 'roda/roda_transaction_namer'
6
7
 
7
8
  DependencyDetection.defer do
8
9
  named :roda
@@ -7,7 +7,7 @@ module NewRelic
7
7
  module VERSION # :nodoc:
8
8
  MAJOR = 9
9
9
  MINOR = 4
10
- TINY = 1
10
+ TINY = 2
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.1
4
+ version: 9.4.2
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-16 00:00:00.000000000 Z
14
+ date: 2023-08-18 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler