kitchen-hyperv 0.5.1 → 0.6.0
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 +25 -15
- data/LICENSE +13 -0
- data/Rakefile +50 -32
- data/kitchen-hyperv.gemspec +26 -32
- data/lib/kitchen/driver/hyperv.rb +297 -279
- data/lib/kitchen/driver/hyperv_version.rb +22 -22
- data/lib/kitchen/driver/powershell.rb +23 -16
- data/support/hyperv.ps1 +3 -0
- metadata +33 -89
- data/.cane +0 -2
- data/.gitignore +0 -15
- data/.rubocop.yml +0 -5
- data/CHANGELOG.md +0 -126
- data/LICENSE.txt +0 -22
- data/README.md +0 -122
- data/spec/kitchen/driver/hyperv_spec.rb +0 -70
- data/spec/spec_helper.rb +0 -43
- data/spec/support/hyperv.Tests.ps1 +0 -194
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Author:: Steven Murawski <smurawski@chef.io>
|
|
3
|
-
# Copyright:: Copyright (c) 2015 Chef Software, Inc.
|
|
4
|
-
# License:: Apache License, Version 2.0
|
|
5
|
-
#
|
|
6
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
# you may not use this file except in compliance with the License.
|
|
8
|
-
# You may obtain a copy of the License at
|
|
9
|
-
#
|
|
10
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
#
|
|
12
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
# See the License for the specific language governing permissions and
|
|
16
|
-
# limitations under the License.
|
|
17
|
-
|
|
18
|
-
module Kitchen
|
|
19
|
-
module Driver
|
|
20
|
-
HYPERV_VERSION =
|
|
21
|
-
end
|
|
22
|
-
end
|
|
1
|
+
#
|
|
2
|
+
# Author:: Steven Murawski <smurawski@chef.io>
|
|
3
|
+
# Copyright:: Copyright (c) 2015-2020 Chef Software, Inc.
|
|
4
|
+
# License:: Apache License, Version 2.0
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
|
|
18
|
+
module Kitchen
|
|
19
|
+
module Driver
|
|
20
|
+
HYPERV_VERSION = "0.6.0".freeze
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Author:: Steven Murawski <smurawski@chef.io>
|
|
3
|
-
# Copyright:: Copyright (c)
|
|
3
|
+
# Copyright:: Copyright (c) 2020 Chef Software, Inc.
|
|
4
4
|
# License:: Apache License, Version 2.0
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -15,28 +15,28 @@
|
|
|
15
15
|
# See the License for the specific language governing permissions and
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
|
|
18
|
-
require
|
|
19
|
-
require
|
|
20
|
-
require
|
|
18
|
+
require "mixlib/shellout" unless defined?(Mixlib::ShellOut)
|
|
19
|
+
require "fileutils" unless defined?(FileUtils)
|
|
20
|
+
require "json" unless defined?(JSON)
|
|
21
21
|
|
|
22
22
|
module Kitchen
|
|
23
23
|
module Driver
|
|
24
24
|
module PowerShellScripts
|
|
25
25
|
def encode_command(script)
|
|
26
|
-
encoded_script = script.encode(
|
|
26
|
+
encoded_script = script.encode("UTF-16LE", "UTF-8")
|
|
27
27
|
Base64.strict_encode64(encoded_script)
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def is_64bit?
|
|
31
|
-
os_arch = ENV[
|
|
32
|
-
ruby_arch = [
|
|
33
|
-
os_arch ==
|
|
31
|
+
os_arch = ENV["PROCESSOR_ARCHITEW6432"] || ENV["PROCESSOR_ARCHITECTURE"]
|
|
32
|
+
ruby_arch = ["foo"].pack("p").size == 4 ? 32 : 64
|
|
33
|
+
os_arch == "AMD64" && ruby_arch == 64
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
def is_32bit?
|
|
37
|
-
os_arch = ENV[
|
|
38
|
-
ruby_arch = [
|
|
39
|
-
os_arch !=
|
|
37
|
+
os_arch = ENV["PROCESSOR_ARCHITEW6432"] || ENV["PROCESSOR_ARCHITECTURE"]
|
|
38
|
+
ruby_arch = ["foo"].pack("p").size == 4 ? 32 : 64
|
|
39
|
+
os_arch != "AMD64" && ruby_arch == 32
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
def powershell_64_bit
|
|
@@ -48,7 +48,7 @@ module Kitchen
|
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
def wrap_command(script)
|
|
51
|
-
base_script_path = File.join(File.dirname(__FILE__),
|
|
51
|
+
base_script_path = File.join(File.dirname(__FILE__), "/../../../support/hyperv.ps1")
|
|
52
52
|
debug("Loading functions from #{base_script_path}")
|
|
53
53
|
new_script = [ ". #{base_script_path}", "#{script}" ].join(";\n")
|
|
54
54
|
debug("Wrapped script: #{new_script}")
|
|
@@ -64,7 +64,7 @@ module Kitchen
|
|
|
64
64
|
# @api private
|
|
65
65
|
def run_ps(cmd, options = {})
|
|
66
66
|
cmd = "echo #{cmd}" if config[:dry_run]
|
|
67
|
-
debug(
|
|
67
|
+
debug("Preparing to run: ")
|
|
68
68
|
debug(" #{cmd}")
|
|
69
69
|
wrapped_command = wrap_command cmd
|
|
70
70
|
execute_command wrapped_command, options
|
|
@@ -76,6 +76,7 @@ module Kitchen
|
|
|
76
76
|
sh.run_command
|
|
77
77
|
debug("Local Command END #{Util.duration(sh.execution_time)}")
|
|
78
78
|
raise "Failed: #{sh.stderr}" if sh.error?
|
|
79
|
+
|
|
79
80
|
stdout = sanitize_stdout(sh.stdout)
|
|
80
81
|
JSON.parse(stdout) if stdout.length > 2
|
|
81
82
|
end
|
|
@@ -117,7 +118,7 @@ module Kitchen
|
|
|
117
118
|
Path = "#{kitchen_vm_path}"
|
|
118
119
|
VHDPath = "#{differencing_disk_path}"
|
|
119
120
|
SwitchName = "#{config[:vm_switch]}"
|
|
120
|
-
VlanId = #{config[:vm_vlan_id] ||
|
|
121
|
+
VlanId = #{config[:vm_vlan_id] || "$null"}
|
|
121
122
|
ProcessorCount = #{config[:processor_count]}
|
|
122
123
|
UseDynamicMemory = "#{config[:dynamic_memory]}"
|
|
123
124
|
DynamicMemoryMinBytes = #{config[:dynamic_memory_min_bytes]}
|
|
@@ -132,6 +133,7 @@ module Kitchen
|
|
|
132
133
|
|
|
133
134
|
def additional_disks
|
|
134
135
|
return if config[:additional_disks].nil?
|
|
136
|
+
|
|
135
137
|
<<-EOH
|
|
136
138
|
AdditionalDisks = @("#{@additional_disk_objects.join('","')}")
|
|
137
139
|
EOH
|
|
@@ -156,6 +158,10 @@ module Kitchen
|
|
|
156
158
|
def set_vm_ipaddress_ps
|
|
157
159
|
<<-VMIP
|
|
158
160
|
|
|
161
|
+
while ((Get-VM -id "#{@state[:id]}").NetworkAdapters[0].Status -ne 'Ok'){
|
|
162
|
+
start-sleep 10
|
|
163
|
+
}
|
|
164
|
+
|
|
159
165
|
(Get-VM -id "#{@state[:id]}").NetworkAdapters |
|
|
160
166
|
Set-VMNetworkConfiguration -ipaddress "#{config[:ip_address]}" `
|
|
161
167
|
-subnet "#{config[:subnet]}" `
|
|
@@ -167,7 +173,7 @@ module Kitchen
|
|
|
167
173
|
|
|
168
174
|
def vm_default_switch_ps
|
|
169
175
|
<<-VMSWITCH
|
|
170
|
-
Get-DefaultVMSwitch #{config[:vm_switch]} | ConvertTo-Json
|
|
176
|
+
Get-DefaultVMSwitch "#{config[:vm_switch]}" | ConvertTo-Json
|
|
171
177
|
VMSWITCH
|
|
172
178
|
end
|
|
173
179
|
|
|
@@ -229,7 +235,8 @@ module Kitchen
|
|
|
229
235
|
|
|
230
236
|
def ruby_array_to_ps_array(list)
|
|
231
237
|
return "@()" if list.nil? || list.empty?
|
|
232
|
-
|
|
238
|
+
|
|
239
|
+
list.to_s.tr("[]", "()").prepend("@")
|
|
233
240
|
end
|
|
234
241
|
end
|
|
235
242
|
end
|
data/support/hyperv.ps1
CHANGED
|
@@ -116,6 +116,9 @@ function New-KitchenVM {
|
|
|
116
116
|
if ($DisableSecureBoot -and ($Generation -eq 2) -and (Get-command Set-VMFirmware -ErrorAction SilentlyContinue)) {
|
|
117
117
|
Set-VMFirmware -VM $vm -EnableSecureBoot Off
|
|
118
118
|
}
|
|
119
|
+
if ((Get-Command -Name Set-Vm).Parameters["AutomaticCheckpointsEnabled"]) {
|
|
120
|
+
Set-VM -Name $vm.VMName -AutomaticCheckpointsEnabled $false
|
|
121
|
+
}
|
|
119
122
|
$vm | Start-Vm -passthru |
|
|
120
123
|
foreach {
|
|
121
124
|
$vm = $_
|
metadata
CHANGED
|
@@ -1,59 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-hyperv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Murawski
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: bundler
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.7'
|
|
20
|
-
type: :development
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.7'
|
|
27
13
|
- !ruby/object:Gem::Dependency
|
|
28
14
|
name: rake
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '10.0'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '10.0'
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: pry
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '0.10'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '0.10'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: cane
|
|
57
15
|
requirement: !ruby/object:Gem::Requirement
|
|
58
16
|
requirements:
|
|
59
17
|
- - ">="
|
|
@@ -67,35 +25,27 @@ dependencies:
|
|
|
67
25
|
- !ruby/object:Gem::Version
|
|
68
26
|
version: '0'
|
|
69
27
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
28
|
+
name: minitest
|
|
71
29
|
requirement: !ruby/object:Gem::Requirement
|
|
72
30
|
requirements:
|
|
73
|
-
- - "
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: '0'
|
|
76
|
-
type: :development
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - ">="
|
|
31
|
+
- - "~>"
|
|
81
32
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
83
|
-
-
|
|
84
|
-
name: rubocop
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - ">="
|
|
33
|
+
version: '5.3'
|
|
34
|
+
- - "<"
|
|
88
35
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
36
|
+
version: '5.15'
|
|
90
37
|
type: :development
|
|
91
38
|
prerelease: false
|
|
92
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
40
|
requirements:
|
|
94
|
-
- - "
|
|
41
|
+
- - "~>"
|
|
95
42
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
43
|
+
version: '5.3'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '5.15'
|
|
97
47
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
48
|
+
name: minitest-stub-const
|
|
99
49
|
requirement: !ruby/object:Gem::Requirement
|
|
100
50
|
requirements:
|
|
101
51
|
- - ">="
|
|
@@ -109,33 +59,39 @@ dependencies:
|
|
|
109
59
|
- !ruby/object:Gem::Version
|
|
110
60
|
version: '0'
|
|
111
61
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
62
|
+
name: mocha
|
|
113
63
|
requirement: !ruby/object:Gem::Requirement
|
|
114
64
|
requirements:
|
|
115
|
-
- - "
|
|
65
|
+
- - "~>"
|
|
116
66
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: '
|
|
67
|
+
version: '1.1'
|
|
118
68
|
type: :development
|
|
119
69
|
prerelease: false
|
|
120
70
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
71
|
requirements:
|
|
122
|
-
- - "
|
|
72
|
+
- - "~>"
|
|
123
73
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: '
|
|
74
|
+
version: '1.1'
|
|
125
75
|
- !ruby/object:Gem::Dependency
|
|
126
76
|
name: test-kitchen
|
|
127
77
|
requirement: !ruby/object:Gem::Requirement
|
|
128
78
|
requirements:
|
|
129
|
-
- - "
|
|
79
|
+
- - ">="
|
|
130
80
|
- !ruby/object:Gem::Version
|
|
131
81
|
version: '1.4'
|
|
82
|
+
- - "<"
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '4'
|
|
132
85
|
type: :runtime
|
|
133
86
|
prerelease: false
|
|
134
87
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
88
|
requirements:
|
|
136
|
-
- - "
|
|
89
|
+
- - ">="
|
|
137
90
|
- !ruby/object:Gem::Version
|
|
138
91
|
version: '1.4'
|
|
92
|
+
- - "<"
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: '4'
|
|
139
95
|
description: Hyper-V Driver for Test-Kitchen
|
|
140
96
|
email:
|
|
141
97
|
- steven.murawski@gmail.com
|
|
@@ -143,27 +99,19 @@ executables: []
|
|
|
143
99
|
extensions: []
|
|
144
100
|
extra_rdoc_files: []
|
|
145
101
|
files:
|
|
146
|
-
- ".cane"
|
|
147
|
-
- ".gitignore"
|
|
148
|
-
- ".rubocop.yml"
|
|
149
|
-
- CHANGELOG.md
|
|
150
102
|
- Gemfile
|
|
151
|
-
- LICENSE
|
|
152
|
-
- README.md
|
|
103
|
+
- LICENSE
|
|
153
104
|
- Rakefile
|
|
154
105
|
- kitchen-hyperv.gemspec
|
|
155
106
|
- lib/kitchen/driver/hyperv.rb
|
|
156
107
|
- lib/kitchen/driver/hyperv_version.rb
|
|
157
108
|
- lib/kitchen/driver/powershell.rb
|
|
158
|
-
- spec/kitchen/driver/hyperv_spec.rb
|
|
159
|
-
- spec/spec_helper.rb
|
|
160
|
-
- spec/support/hyperv.Tests.ps1
|
|
161
109
|
- support/hyperv.ps1
|
|
162
110
|
homepage: https://github.com/test-kitchen/kitchen-hyperv
|
|
163
111
|
licenses:
|
|
164
|
-
- Apache
|
|
112
|
+
- Apache-2.0
|
|
165
113
|
metadata: {}
|
|
166
|
-
post_install_message:
|
|
114
|
+
post_install_message:
|
|
167
115
|
rdoc_options: []
|
|
168
116
|
require_paths:
|
|
169
117
|
- lib
|
|
@@ -178,12 +126,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
126
|
- !ruby/object:Gem::Version
|
|
179
127
|
version: '0'
|
|
180
128
|
requirements: []
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
signing_key:
|
|
129
|
+
rubygems_version: 3.2.15
|
|
130
|
+
signing_key:
|
|
184
131
|
specification_version: 4
|
|
185
132
|
summary: Hyper-V Driver for Test-Kitchen
|
|
186
|
-
test_files:
|
|
187
|
-
- spec/kitchen/driver/hyperv_spec.rb
|
|
188
|
-
- spec/spec_helper.rb
|
|
189
|
-
- spec/support/hyperv.Tests.ps1
|
|
133
|
+
test_files: []
|
data/.cane
DELETED
data/.gitignore
DELETED
data/.rubocop.yml
DELETED
data/CHANGELOG.md
DELETED
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
## [v0.5.1](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.5.1) (2017-09-08)
|
|
4
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.5.0...v0.5.1)
|
|
5
|
-
|
|
6
|
-
**Merged pull requests:**
|
|
7
|
-
|
|
8
|
-
- Change resize\_vhd parameter to -SizeBytes [\#58](https://github.com/test-kitchen/kitchen-hyperv/pull/58) ([jdoores](https://github.com/jdoores))
|
|
9
|
-
|
|
10
|
-
## [v0.5.0](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.5.0) (2017-07-05)
|
|
11
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.4.1...v0.5.0)
|
|
12
|
-
|
|
13
|
-
**Merged pull requests:**
|
|
14
|
-
|
|
15
|
-
- version bump and changelog for v0.5.0 [\#55](https://github.com/test-kitchen/kitchen-hyperv/pull/55) ([smurawski](https://github.com/smurawski))
|
|
16
|
-
- Fixed issue with existing stale diff disk [\#53](https://github.com/test-kitchen/kitchen-hyperv/pull/53) ([jdoores](https://github.com/jdoores))
|
|
17
|
-
- Added static\_mac\_address feature [\#52](https://github.com/test-kitchen/kitchen-hyperv/pull/52) ([jdoores](https://github.com/jdoores))
|
|
18
|
-
|
|
19
|
-
## [v0.4.1](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.4.1) (2017-03-29)
|
|
20
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.4.0...v0.4.1)
|
|
21
|
-
|
|
22
|
-
**Merged pull requests:**
|
|
23
|
-
|
|
24
|
-
- Fix error when no additional disks [\#48](https://github.com/test-kitchen/kitchen-hyperv/pull/48) ([smurawski](https://github.com/smurawski))
|
|
25
|
-
|
|
26
|
-
## [v0.4.0](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.4.0) (2017-03-24)
|
|
27
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.3.0...v0.4.0)
|
|
28
|
-
|
|
29
|
-
**Merged pull requests:**
|
|
30
|
-
|
|
31
|
-
- Feature/disable secureboot [\#44](https://github.com/test-kitchen/kitchen-hyperv/pull/44) ([smastrorocco](https://github.com/smastrorocco))
|
|
32
|
-
- Feature/additional disk [\#43](https://github.com/test-kitchen/kitchen-hyperv/pull/43) ([smastrorocco](https://github.com/smastrorocco))
|
|
33
|
-
- Feature/vlan support [\#41](https://github.com/test-kitchen/kitchen-hyperv/pull/41) ([smastrorocco](https://github.com/smastrorocco))
|
|
34
|
-
- Add ability to resize a the VHD when the disk is created [\#40](https://github.com/test-kitchen/kitchen-hyperv/pull/40) ([watsonlu](https://github.com/watsonlu))
|
|
35
|
-
|
|
36
|
-
## [v0.3.0](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.3.0) (2016-11-28)
|
|
37
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.2.3...v0.3.0)
|
|
38
|
-
|
|
39
|
-
**Merged pull requests:**
|
|
40
|
-
|
|
41
|
-
- Support setting VM notes [\#39](https://github.com/test-kitchen/kitchen-hyperv/pull/39) ([watsonlu](https://github.com/watsonlu))
|
|
42
|
-
- Fix mounting iso on Gen 2 VM [\#38](https://github.com/test-kitchen/kitchen-hyperv/pull/38) ([mahsoud](https://github.com/mahsoud))
|
|
43
|
-
- Adding support for HyperV Guest Interface Services [\#34](https://github.com/test-kitchen/kitchen-hyperv/pull/34) ([gaelcolas](https://github.com/gaelcolas))
|
|
44
|
-
- Fix line continuation syntax [\#32](https://github.com/test-kitchen/kitchen-hyperv/pull/32) ([brantb](https://github.com/brantb))
|
|
45
|
-
|
|
46
|
-
## [v0.2.3](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.2.3) (2016-06-10)
|
|
47
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.2.2...v0.2.3)
|
|
48
|
-
|
|
49
|
-
**Merged pull requests:**
|
|
50
|
-
|
|
51
|
-
- Support PowerShell v5.1 on the Insider Preview - updated [\#31](https://github.com/test-kitchen/kitchen-hyperv/pull/31) ([smurawski](https://github.com/smurawski))
|
|
52
|
-
|
|
53
|
-
## [v0.2.2](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.2.2) (2016-06-10)
|
|
54
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.2.1...v0.2.2)
|
|
55
|
-
|
|
56
|
-
**Merged pull requests:**
|
|
57
|
-
|
|
58
|
-
- Support PowerShell v5.1 on the Insider Preview [\#30](https://github.com/test-kitchen/kitchen-hyperv/pull/30) ([smurawski](https://github.com/smurawski))
|
|
59
|
-
|
|
60
|
-
## [v0.2.1](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.2.1) (2016-05-25)
|
|
61
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.20...v0.2.1)
|
|
62
|
-
|
|
63
|
-
## [v0.1.20](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.20) (2016-05-17)
|
|
64
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.10...v0.1.20)
|
|
65
|
-
|
|
66
|
-
**Merged pull requests:**
|
|
67
|
-
|
|
68
|
-
- More Configurable VM Networking [\#27](https://github.com/test-kitchen/kitchen-hyperv/pull/27) ([svmastersamurai](https://github.com/svmastersamurai))
|
|
69
|
-
- Add -noprofile to powershell executions to prevent users' custom prof… [\#23](https://github.com/test-kitchen/kitchen-hyperv/pull/23) ([kriszentner](https://github.com/kriszentner))
|
|
70
|
-
|
|
71
|
-
## [v0.1.10](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.10) (2015-12-03)
|
|
72
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.9...v0.1.10)
|
|
73
|
-
|
|
74
|
-
**Merged pull requests:**
|
|
75
|
-
|
|
76
|
-
- update incorrect module name [\#21](https://github.com/test-kitchen/kitchen-hyperv/pull/21) ([jbruettcva](https://github.com/jbruettcva))
|
|
77
|
-
|
|
78
|
-
## [v0.1.9](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.9) (2015-12-03)
|
|
79
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.8...v0.1.9)
|
|
80
|
-
|
|
81
|
-
## [v0.1.8](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.8) (2015-12-03)
|
|
82
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.7...v0.1.8)
|
|
83
|
-
|
|
84
|
-
**Merged pull requests:**
|
|
85
|
-
|
|
86
|
-
- Updating readme.md to include image configuration, specifically winrm… [\#20](https://github.com/test-kitchen/kitchen-hyperv/pull/20) ([jbruettcva](https://github.com/jbruettcva))
|
|
87
|
-
- Hyper-V module and Get-VMIP delay fix [\#19](https://github.com/test-kitchen/kitchen-hyperv/pull/19) ([jbruettcva](https://github.com/jbruettcva))
|
|
88
|
-
- File copy feature [\#17](https://github.com/test-kitchen/kitchen-hyperv/pull/17) ([dpiessens](https://github.com/dpiessens))
|
|
89
|
-
- Fixed NilClass exception if VM does not exist [\#16](https://github.com/test-kitchen/kitchen-hyperv/pull/16) ([dpiessens](https://github.com/dpiessens))
|
|
90
|
-
- Add support for dynamic memory [\#15](https://github.com/test-kitchen/kitchen-hyperv/pull/15) ([brantb](https://github.com/brantb))
|
|
91
|
-
|
|
92
|
-
## [v0.1.7](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.7) (2015-07-14)
|
|
93
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.6...v0.1.7)
|
|
94
|
-
|
|
95
|
-
**Merged pull requests:**
|
|
96
|
-
|
|
97
|
-
- 64-bit windows support [\#8](https://github.com/test-kitchen/kitchen-hyperv/pull/8) ([ksubrama](https://github.com/ksubrama))
|
|
98
|
-
|
|
99
|
-
## [v0.1.6](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.6) (2015-06-25)
|
|
100
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.5...v0.1.6)
|
|
101
|
-
|
|
102
|
-
## [v0.1.5](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.5) (2015-06-24)
|
|
103
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.2...v0.1.5)
|
|
104
|
-
|
|
105
|
-
**Merged pull requests:**
|
|
106
|
-
|
|
107
|
-
- Adding support for mounting ISOs [\#6](https://github.com/test-kitchen/kitchen-hyperv/pull/6) ([smurawski](https://github.com/smurawski))
|
|
108
|
-
|
|
109
|
-
## [v0.1.2](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.2) (2015-05-20)
|
|
110
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.1...v0.1.2)
|
|
111
|
-
|
|
112
|
-
**Merged pull requests:**
|
|
113
|
-
|
|
114
|
-
- Smurawski/updating metadata [\#4](https://github.com/test-kitchen/kitchen-hyperv/pull/4) ([smurawski](https://github.com/smurawski))
|
|
115
|
-
|
|
116
|
-
## [v0.1.1](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.1) (2015-05-20)
|
|
117
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-hyperv/compare/v0.1.0...v0.1.1)
|
|
118
|
-
|
|
119
|
-
## [v0.1.0](https://github.com/test-kitchen/kitchen-hyperv/tree/v0.1.0) (2015-05-20)
|
|
120
|
-
**Merged pull requests:**
|
|
121
|
-
|
|
122
|
-
- Prepping for release [\#3](https://github.com/test-kitchen/kitchen-hyperv/pull/3) ([smurawski](https://github.com/smurawski))
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|