pact-support 1.10.1 → 1.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ceb170c17a6a657f300f5484043aef12872af929
4
- data.tar.gz: c2739a7b1b2a61efbd182dc9d11ffe88b7223fd5
3
+ metadata.gz: 83d8ef0314caa890c897dbe6ecee42fed7639351
4
+ data.tar.gz: 78c824a2ab9eec797ba4fa65b0650c06cd3d8874
5
5
  SHA512:
6
- metadata.gz: 294ab16fdb0736f35847dfaa9b54ea450b511726af52f4a517fe8cdc8ae4058a012e78b3555a823bfae4f66baba0a6dfc4466dcfa60be3bb46a96d2ca8223b5f
7
- data.tar.gz: 004c0ecf1a574212ac068572e186693c045941e9a8e5ac2d3c251bbb1b33aa955d5e3687e5068b2cc7827842d57651990fe280cfbf33051e50d8c6669c876fef
6
+ metadata.gz: 2112f87ddb641a4e80451099f3f4b4c7b577cbaa9085aa78f89ad0267d5c85b111332b51707aaaa7e7921e3ffdd86981dc9994edd78431e542979fe1618d2613
7
+ data.tar.gz: 7d17db1871695ba7da90aa400286142bdfaefc151580c1f01347005dd57b7cd7862abb67c68a8a17db4bc12ebae5e5539e4e4dcf4c93ed43bb85e7318444ad58
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ <a name="v1.10.2"></a>
2
+ ### v1.10.2 (2019-05-20)
3
+
4
+
5
+ #### Bug Fixes
6
+
7
+ * allow proxy env var to be used when fetching pacts ([ebce481](/../../commit/ebce481))
8
+
9
+
1
10
  <a name="v1.10.1"></a>
2
11
  ### v1.10.1 (2019-04-26)
3
12
 
@@ -81,7 +81,7 @@ module Pact
81
81
  request = Net::HTTP::Get.new(uri)
82
82
  request.basic_auth(options[:username], options[:password]) if options[:username]
83
83
  request['Authorization'] = "Bearer #{options[:token]}" if options[:token]
84
- Net::HTTP.start(uri.host, uri.port, use_ssl: uri.scheme == 'https') do |http|
84
+ Net::HTTP.start(uri.host, uri.port, :ENV, use_ssl: uri.scheme == 'https') do |http|
85
85
  http.open_timeout = options[:open_timeout] || OPEN_TIMEOUT
86
86
  http.read_timeout = options[:read_timeout] || READ_TIMEOUT
87
87
  http.request(request)
@@ -1,5 +1,5 @@
1
1
  module Pact
2
2
  module Support
3
- VERSION = "1.10.1"
3
+ VERSION = "1.10.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pact-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.1
4
+ version: 1.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Fraser
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2019-04-26 00:00:00.000000000 Z
15
+ date: 2019-05-20 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: randexp