newrelic_rpm 6.13.0 → 6.13.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97813a208eb3ad21826b8069ad1978523f4fc24d1c823e2ef887a33242f8dc93
|
4
|
+
data.tar.gz: 8ccc2df94bcffa988b31ffb8f4015b2ce6ab7997c8690386e3ef6a77fcdefe6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 609270a7843fc1b63aef90f1e5892532f8e28e2bfbbbb077e7b3024851931ca62f68ef18bc6c2c1f5abe35db5f01d6c5d438553a7d0761a07f08d40d341604af
|
7
|
+
data.tar.gz: 44413974581e5334c04ed78d8c6802d0ffef07ec7fbfc20e785cabf6bb45b3331e01f6499d70da57aee368e69e50c1c0986d672b4c68760f1c4b09d55da4faa6
|
@@ -47,7 +47,7 @@ jobs:
|
|
47
47
|
- name: Obtain OTP to publish newrelic-infinite_tracing to rubygems.org
|
48
48
|
run: echo ::set-env name=RUBYGEMS_OTP::$(python ./.github/workflows/scripts/rubygems-authenticate.py RUBYGEMS_MFA_KEY)
|
49
49
|
- name: Publish newrelic-infinite_tracing to rubygems.org
|
50
|
-
run: ruby ./.github/workflows/scripts/rubygems-publish.rb newrelic-infinite_tracing
|
50
|
+
run: ruby ./.github/workflows/scripts/rubygems-publish.rb infinite_tracing/newrelic-infinite_tracing
|
51
51
|
|
52
52
|
- name: Update system configuration page
|
53
53
|
run: |
|
@@ -8,13 +8,13 @@ version = ENV["VERSION"]
|
|
8
8
|
raise "VERSION environment must be set" if version.to_s == ""
|
9
9
|
|
10
10
|
gem_filename = "#{gem_name}-#{version}.gem"
|
11
|
-
raise "#{
|
11
|
+
raise "#{gem_filename} is missing!" unless File.exist?(gem_filename)
|
12
12
|
|
13
13
|
otp = ENV["RUBYGEMS_OTP"]
|
14
14
|
raise "RUBYGEMS_OTP environment must be set" if otp.to_s == ""
|
15
15
|
|
16
|
-
puts "Publshing the
|
17
|
-
cmd = "gem push --otp #{otp} #{
|
16
|
+
puts "Publshing the #{gem_filename} file..."
|
17
|
+
cmd = "gem push --otp #{otp} #{gem_filename}"
|
18
18
|
puts "executing: #{cmd}"
|
19
19
|
|
20
20
|
result = `#{cmd}`
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# New Relic Ruby Agent Release Notes #
|
2
2
|
|
3
|
+
## v6.13.1
|
4
|
+
|
5
|
+
* **Bugfix: obfuscating URLs to external services no longer modifying original URI**
|
6
|
+
|
7
|
+
A recent change to the Ruby agent to obfuscate URIs sent to external services had the unintended side-effect of removing query parameters
|
8
|
+
from the original URI. This is fixed to obfuscate while also preserving the original URI.
|
9
|
+
|
10
|
+
Thanks to @VictorJimenezKwast for pinpointing and helpful unit test to demonstrate.
|
11
|
+
|
3
12
|
## v6.13.0
|
4
13
|
|
5
14
|
* **Bugfix: never use redirect host when accessing preconnect endpoint**
|
@@ -28,7 +28,7 @@ module NewRelic
|
|
28
28
|
# accept that the stdlib URI module doesn't handle. If we find that
|
29
29
|
# Addressable is around, use that to normalize out our URL's.
|
30
30
|
def self.parse_and_normalize_url(url)
|
31
|
-
uri = url
|
31
|
+
uri = url.dup
|
32
32
|
unless ::URI === uri
|
33
33
|
if defined?(::Addressable::URI)
|
34
34
|
address = ::Addressable::URI.parse(url)
|
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: 6.13.
|
4
|
+
version: 6.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rachel Klein
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-09-
|
13
|
+
date: 2020-09-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|