kitchen-microwave 0.6.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64119b1e6ff2f43acaca7caf5b65e321f96179e97aca40446ed238cbef5335a3
4
- data.tar.gz: 2b94dc1780cfd3bc229d5ab73ececc01faf6d42aa5a6cf184365e5caba22beef
3
+ metadata.gz: 55f8f914e917d2c02f5e50a66069dde94aec9ec07dbc098986d7c0414483261b
4
+ data.tar.gz: 2b7ba00e109dd93f9a7489118c22f5ce79c93db8229e95560dc500262b031ce7
5
5
  SHA512:
6
- metadata.gz: 1de03d055f0fec035e80496cbf1ca62cb9a2bc8e5981760dae976c1edd86773ee40701f24e244fc0812cec105f9a97f4ab0920f9aab04841dfa88679ec95d873
7
- data.tar.gz: 885e3aa66b544910ef2b7176f4a1201c925ae9b958824d5fccf92cb4ed1530e99301049a3b1c8ac60f5396837140892c6884d82c0b08446b0ef2da9be1dd45ed
6
+ metadata.gz: a931074dd679ec0341cce56c2ffe8d6e95123e781144343b58ccd43e97ace49252ef6c43f70b80637dd8cd2d33517835b73b3027f659276606d9274212542857
7
+ data.tar.gz: 1633bb823d207fff5c7d802bd3d2ef322f439d4c58a74b3efafb02777f85a1b4daccd3bcf7d556ce4e13bf2ddc2110ca74c9cf16b2d204bafa9597b16823a22c
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file is used to list changes made in each version of the kitchen-microwave gem.
4
4
 
5
+ ## 0.7.0 (2019-07-08)
6
+
7
+ - Add Debian 10, drop Debian 8
8
+
5
9
  ## 0.6.0 (2019-05-03)
6
10
 
7
11
  - Update to Fedora 30
data/README.md CHANGED
@@ -95,7 +95,7 @@ Only certain platforms, versions, and Chefs are supported:
95
95
 
96
96
  - Amazon Linux (2, 1)
97
97
  - CentOS (7, 6)
98
- - Debian (9, 8)
98
+ - Debian (10, 9)
99
99
  - Fedora (30)
100
100
  - Ubuntu (18.04, 16.04, 14.04)
101
101
 
@@ -37,7 +37,7 @@ module Kitchen
37
37
  # that support them.
38
38
  POTENTIAL_PLATFORMS ||= {
39
39
  'ubuntu' => %w[18.04 16.04 14.04],
40
- 'debian' => %w[9 8],
40
+ 'debian' => %w[10 9],
41
41
  'centos' => %w[7 6],
42
42
  'amazonlinux' => %w[2 1],
43
43
  'fedora' => %w[30]
@@ -2,7 +2,9 @@
2
2
  "driver": {
3
3
  "intermediate_instructions": [
4
4
  "RUN rm -f /usr/sbin/policy-rc.d",
5
- "RUN echo DISTRIB_CODENAME=jessie > /etc/lsb-release"
5
+ "RUN echo DISTRIB_CODENAME=buster > /etc/lsb-release",
6
+ "RUN apt-get update",
7
+ "RUN apt-get -y install systemd"
6
8
  ],
7
9
  "pid_one_command": "/lib/systemd/systemd"
8
10
  }
@@ -22,7 +22,7 @@ module Kitchen
22
22
  # Microwave's VERSION information.
23
23
  module Microwave
24
24
  MAJOR = 0
25
- MINOR = 6
25
+ MINOR = 7
26
26
  PATCH = 0
27
27
  VERSION = [MAJOR, MINOR, PATCH].join('.')
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-microwave
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Hartman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-03 00:00:00.000000000 Z
11
+ date: 2019-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef
@@ -207,7 +207,7 @@ files:
207
207
  - lib/kitchen/microwave/platforms/amazonlinux/2.json
208
208
  - lib/kitchen/microwave/platforms/centos/6.json
209
209
  - lib/kitchen/microwave/platforms/centos/7.json
210
- - lib/kitchen/microwave/platforms/debian/8.json
210
+ - lib/kitchen/microwave/platforms/debian/10.json
211
211
  - lib/kitchen/microwave/platforms/debian/9.json
212
212
  - lib/kitchen/microwave/platforms/fedora/30.json
213
213
  - lib/kitchen/microwave/platforms/ubuntu/14.04.json