vagrant-proxyconf 2.0.3 → 2.0.4

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: e3b17734205419226e064520e1dabdcd04e368fb
4
- data.tar.gz: c479e89afc35d15965a2de05855b8c2521e9dcb9
3
+ metadata.gz: b3fb0eb7149c9d6f2428429c1b9aa483c7441b05
4
+ data.tar.gz: 93ec0d7d278519991fa1e6e94ec9915926eea50a
5
5
  SHA512:
6
- metadata.gz: 4c56154d1e9a74dc94374f8818564e350f1ea18ed576a3865c80632f1e416040b912340f3f811ad717aa53dacfc9e5a58e881e192f931c5a2eebbb7b453a8ffb
7
- data.tar.gz: 3492607c652bc801396ee47c36550de224487a65f5db6b419c6dce3eabe04381a287f51057080c80c5844ec828589717dcde7a36a0f4a3fc499ac29ec61f2ab7
6
+ metadata.gz: da01327a34f53b3ba30471ebcbc0efa5de55005512b17bd20683721f051c1c350db7118fbd43b3ea7a18cf5cad98c8d44c36162d013bc453f6da4b30c2e88a4f
7
+ data.tar.gz: 671f0968893e0f819361846ef9338589e6cfbd614e37fa429c8e4d660e6455e974c969eecd7152d2bcaaa5596d84d38305f818108f91972c0904bb8afe6af939
data/CHANGELOG.md CHANGED
@@ -1,4 +1,11 @@
1
- # 2.0.4 / NOT_YET_RELEASED
1
+ # 2.0.4 / 2019-07-24
2
+
3
+ This is a bug fix release to address a logic issue for supporting docker
4
+ versions when attempting to configure a docker proxy.
5
+
6
+
7
+ Bug Fixes:
8
+ - https://github.com/tmatilai/vagrant-proxyconf/issues/197
2
9
 
3
10
  # 2.0.3 / 2019-07-23
4
11
 
@@ -197,10 +197,11 @@ module VagrantPlugins
197
197
 
198
198
  # https://docs.docker.com/network/proxy/#configure-the-docker-client
199
199
  # if docker version >= 17.07 it supports config.json
200
- return true if major >= 17 && minor >= 7
201
-
202
200
  # docker version < 17.07 so it does not support config.json
203
- return false
201
+ return false if major <= 17 && minor < 7
202
+
203
+ # docker version must be >= 17.07 so we return true
204
+ return true
204
205
  end
205
206
 
206
207
  def supports_systemd?
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module ProxyConf
3
- VERSION = '2.0.3'
3
+ VERSION = '2.0.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-proxyconf
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Teemu Matilainen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-23 00:00:00.000000000 Z
11
+ date: 2019-07-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Vagrant plugin that configures the virtual machine to use proxy servers
14
14
  email: