vagrant-devcommands 0.10.0 → 0.10.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
  SHA1:
3
- metadata.gz: 9050521052b96dc86341f385a13b9f7a86e9d9b7
4
- data.tar.gz: f53326e688ccd00e6a60b6cca80996510cf5d253
3
+ metadata.gz: 50085046566a6d18be96b03122e887e5a268f4fb
4
+ data.tar.gz: 3cc0b7a62fd0924b5f7893f4387478d970807e3d
5
5
  SHA512:
6
- metadata.gz: 6153595b35c47a8f770d1a4dccdc3affe5fd816b5d8ee17c70922f13a1b19dde80ff2d38bf51f3eebee7222f728620cf3adcf09e83153100896e85465ca751fe
7
- data.tar.gz: 3e684a23dcd43765a00283771f2106eec4b79940e534cfc5c2c534ea9355df6ab5913d7056995d8306bc6c23b8cf28122df276f29849211815ef70b223d2fc61
6
+ metadata.gz: d06c2176f75a8ca0bb4f6e56902b3e20c727f0365fb250a44683e4f26aa2ec3c965610b1920e89f597c07a63e18cb338f148505cbb3684f8c898eb3ce3fd509f
7
+ data.tar.gz: '097bf9a61bdf25a5ab7c598a9caa3c69b9f61db1bcedd3788951a320d915c5a54a9e1b2a43d0596952980138d1b5ec1dc3a91330162b62363bf8bd6ebc478bc1'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.10.1 (2017-08-08)
4
+
5
+ - Bug fixes
6
+ - Vagrant introduced a tty flag for ssh command execution in version `1.9.6`.
7
+ This broke some commands requiring an interactive terminal
8
+ (like a mysql client). This flag is now permanently active to restore the
9
+ function of these commands until the next regular release introduces a
10
+ full per command tty configuration
11
+
3
12
  ## v0.10.0 (2017-07-02)
4
13
 
5
14
  - Enhancements
@@ -12,6 +12,7 @@ module VagrantPlugins
12
12
  @registry = registry
13
13
  end
14
14
 
15
+ # rubocop:disable Metrics/MethodLength
15
16
  def run(command)
16
17
  argv = run_argv
17
18
  machine = run_machine(command)
@@ -21,12 +22,14 @@ module VagrantPlugins
21
22
 
22
23
  @plugin.proxy_with_target_vms(machine, single_target: true) do |vm|
23
24
  env = vm.action(:ssh_run,
24
- ssh_opts: { extra_args: ['-q'] },
25
- ssh_run_command: script)
25
+ ssh_run_command: script,
26
+ ssh_opts: { extra_args: ['-q'] },
27
+ tty: true)
26
28
 
27
29
  return env[:ssh_run_exit_status] || 0
28
30
  end
29
31
  end
32
+ # rubocop:enable Metrics/MethodLength
30
33
 
31
34
  private
32
35
 
@@ -1,6 +1,6 @@
1
1
  module VagrantPlugins
2
2
  # Defines the current plugin version
3
3
  module DevCommands
4
- VERSION = '0.10.0'.freeze
4
+ VERSION = '0.10.1'.freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-devcommands
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marc Neudert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-02 00:00:00.000000000 Z
11
+ date: 2017-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: coveralls
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
120
  version: '0'
121
121
  requirements: []
122
122
  rubyforge_project:
123
- rubygems_version: 2.5.2
123
+ rubygems_version: 2.6.11
124
124
  signing_key:
125
125
  specification_version: 4
126
126
  summary: Runs vagrant commands from a Commandfile