beaker-vagrant 0.7.0 → 0.7.1

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
  SHA256:
3
- metadata.gz: 4ee5ce13c977a0b3bd07ff792f1f722d986e1e50a332bb4762d1d15c8c8dfe48
4
- data.tar.gz: 9e17a0f6f245ba61142e42883f0d2b5ac456e40b92b26d6b8c22d08dffc0c7b2
3
+ metadata.gz: 7a00ef186adc7650704953e106d18e8c4a93f345a757bb7ea3c47837fb064543
4
+ data.tar.gz: 0744ee0ef7ece6991dc3fc62ca92da90e7c6ea00a68ac381ecc1fbdeba330f32
5
5
  SHA512:
6
- metadata.gz: 6b2c6c0ed39876e4f630d9dac376f782a00277011c8b5321567ed09635e55f04b7656df59f0658b1565a3fd474bf632017ea9a9ca99bdd5ba083ebc2791aea7e
7
- data.tar.gz: 4f429aeccdbb05b4a9eeccf817e44327a463315a16c7a517914469a4a09f9b046d3ea8fc4342208ae2071f1a907324c20c23e1006feff3fe9e96979f6739a6a4
6
+ metadata.gz: 5d4a32047a14b49cdcb325cb4cd1d341664a6cf1df32d4e3d6e094afe71f0e0712b19d13de2af683b43512818989e64a961d9f62e7e9df955c7589ec6e78646b
7
+ data.tar.gz: a36190c0a555b3154762c913558a28c46d2791714692000df6bca474a1700bf2991f97edad53025b70c67dac5fb0403200d05ee37e49062483f62abdea36f517
data/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on
6
+ [Keep a Changelog](http://keepachangelog.com)
7
+ & makes a strong effort to adhere to
8
+ [Semantic Versioning](http://semver.org).
9
+
10
+ Tracking in this Changelog began for this project in version 0.7.1
11
+ If you're looking for changes from before this, refer to the project's
12
+ git logs & PR history.
13
+
14
+ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
15
+
16
+ - Added - for new features.
17
+ - Changed - for changes in existing functionality.
18
+ - Deprecated - for soon-to-be removed features.
19
+ - Removed - for now removed features.
20
+ - Fixed - for any bug fixes.
21
+ - Security - in case of vulnerabilities.
22
+
23
+ # [0.7.1](https://github.com/voxpupuli/beaker/compare/0.7.0...0.7.1) - 25-05-2021
24
+
25
+ ### Fixed
26
+
27
+ - Re-added the secondary libvirt interface due to 0.7.0 breaking multi-node tests
@@ -1,3 +1,3 @@
1
1
  module BeakerVagrant
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
@@ -29,10 +29,4 @@ class Beaker::VagrantLibvirt < Beaker::Vagrant
29
29
 
30
30
  options['libvirt'].map { |k, v| " node.#{k} = '#{v}'" }
31
31
  end
32
-
33
- private
34
-
35
- def set_host_default_ip(host)
36
- # In vagrant-libvirt hosts get a management IP, no need for a default
37
- end
38
32
  end
@@ -40,7 +40,7 @@ describe Beaker::VagrantLibvirt do
40
40
  end
41
41
 
42
42
  it "has no private network" do
43
- is_expected.not_to include('v.vm.network :private_network')
43
+ is_expected.to include('v.vm.network :private_network')
44
44
  end
45
45
 
46
46
  it "can specify the memory as an integer" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-vagrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rishi Javia, Kevin Imber, Tony Vu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-18 00:00:00.000000000 Z
11
+ date: 2021-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -142,6 +142,7 @@ files:
142
142
  - ".gitignore"
143
143
  - ".rspec"
144
144
  - ".simplecov"
145
+ - CHANGELOG.md
145
146
  - Gemfile
146
147
  - LICENSE
147
148
  - README.md