r7insight 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Gemfile.lock +1 -1
- data/lib/r7_insight/host/connection.rb +2 -1
- data/r7insight.gemspec +1 -1
- metadata +3 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: bab00a349c8aee888f84c9c06677b7fb53c7589708b004ce3079fa5a86cbf3a8
|
|
4
|
+
data.tar.gz: 8fd2a5a77c523afdb92c0316a770024798ee7e3cf716dc0db7d6d092b454b1ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5efd8b2465147d57aa3c6173a88543768ea4c5e6f0b8bf382698b123625a33f6d0bcb68b65f4b9b1ea090b0459521041b166ae10d61aeb051a5065158f1f5627
|
|
7
|
+
data.tar.gz: 563089db2b683c7b4a568a10e6aa9dc86f7923776dd05e106a6e3448567af60a268a015453dd59f36dfd4eca2a6cec6d7a2bf9522087c0318621c63306ead3c5
|
data/Gemfile.lock
CHANGED
|
@@ -189,7 +189,8 @@ module R7Insight
|
|
|
189
189
|
ssl_context.cert_store = cert_store
|
|
190
190
|
|
|
191
191
|
ssl_context.min_version = OpenSSL::SSL::TLS1_1_VERSION
|
|
192
|
-
|
|
192
|
+
# For older versions of openssl (prior to 1.1.1) missing support for TLSv1.3
|
|
193
|
+
ssl_context.max_version = defined?(OpenSSL::SSL::TLS1_3_VERSION) ? OpenSSL::SSL::TLS1_3_VERSION : OpenSSL::SSL::TLS1_2_VERSION
|
|
193
194
|
ssl_context.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
|
194
195
|
ssl_socket = OpenSSL::SSL::SSLSocket.new(socket, ssl_context)
|
|
195
196
|
ssl_socket.hostname = host if ssl_socket.respond_to?(:hostname=)
|
data/r7insight.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: r7insight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rapid7
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -110,8 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
111
|
version: '0'
|
|
112
112
|
requirements: []
|
|
113
|
-
|
|
114
|
-
rubygems_version: 2.5.2.3
|
|
113
|
+
rubygems_version: 3.0.6
|
|
115
114
|
signing_key:
|
|
116
115
|
specification_version: 4
|
|
117
116
|
summary: Rapid7 Insight Platform logging plugin
|
|
@@ -122,4 +121,3 @@ test_files:
|
|
|
122
121
|
- test/r7insight_spec.rb
|
|
123
122
|
- test/region.rb
|
|
124
123
|
- test/spec_helper.rb
|
|
125
|
-
has_rdoc:
|