kitchen-digitalocean 0.9.4 → 0.9.5

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: 92ec9677757a35af419098d3052594660b22b55d
4
- data.tar.gz: 8e69bb6aa511f3d207abced3c98ddb2a5c500572
3
+ metadata.gz: 41d6c0d3d8ac28c78614161f6cade375d4cc7db2
4
+ data.tar.gz: 2e845d50c2c8321cdebc379a40643feeafe4eed5
5
5
  SHA512:
6
- metadata.gz: ed454c46fe879d6b975cd80d59a2f3cf31a381f0e0c701d920ddf3243c51e54ede69d90fba980c53a4cb1919e0ca4b89f332e4cbc1dc7f14ca81281ebb2de046
7
- data.tar.gz: 931d6522028a8f150afb6a9cc4e477846423351eecbf680d5bfc77fcaa482051334b7fac3c326b7f96f4bef189498f3cbe3fc378720b9ab3b1c9817bcd95cefe
6
+ metadata.gz: cca084e2f20bc441eac31e425c549669cf08db93780fe171cad9e421b5435684c0bf45a79db28c2384c058d751ae6bbf1088a8bd83e1cd6f15b12da3d61afca7
7
+ data.tar.gz: 47da3af06e349b6cb5fdaa3919a5a38b087003a77a612163ef4734525e1dbea287f9127e284d8cc6390ecb67b474d22c511cd28cc7bedf0f987d5ad83a2f591f
@@ -1,3 +1,7 @@
1
+ # 0.9.5 / 2015-12-14
2
+
3
+ * This release fixes the slugs I accidentally broke in 0.9.4.
4
+
1
5
  # 0.9.4 / 2015-12-14
2
6
 
3
7
  * Update slug mappings.
@@ -170,21 +170,21 @@ module Kitchen
170
170
  def platform_to_slug_mapping
171
171
  {
172
172
  'centos-5.10' => 'centos-5-8-x64',
173
- 'centos-6.7' => 'centos-6-7-x64',
174
- 'centos-7.1' => 'centos-7-1-x64',
175
- 'coreos-835.9.0' => 'coreos-835.9.0-x64',
176
- 'coreos-877.1.0' => 'coreos-877.1.0-x64',
177
- 'coreos-891.0.0' => 'coreos-891.0.0-x64',
173
+ 'centos-6.7' => 'centos-6-5-x64',
174
+ 'centos-7.1' => 'centos-7-0-x64',
175
+ 'coreos-835.9.0' => 'coreos-stable-x64',
176
+ 'coreos-877.1.0' => 'coreos-beta-x64',
177
+ 'coreos-891.0.0' => 'coreos-alpha-x64',
178
178
  'debian-6.0' => 'debian-6-0-x64',
179
- 'debian-7.9' => 'debian-7-9-x64',
180
- 'debian-8.2' => 'debian-8-2-x64',
179
+ 'debian-7.9' => 'debian-7-0-x64',
180
+ 'debian-8.2' => 'debian-8-x64',
181
181
  'fedora-21' => 'fedora-21-x64',
182
182
  'fedora-22' => 'fedora-22-x64',
183
183
  'fedora-23' => 'fedora-23-x64',
184
184
  'freebsd-10.1' => 'freebsd-10-1-x64',
185
185
  'freebsd-10.2' => 'freebsd-10-2-x64',
186
- 'ubuntu-12.04.5' => 'ubuntu-12-04-5-x64',
187
- 'ubuntu-14.04.3' => 'ubuntu-14-04-3-x64',
186
+ 'ubuntu-12.04' => 'ubuntu-12-04-x64',
187
+ 'ubuntu-14.04' => 'ubuntu-14-04-x64',
188
188
  'ubuntu-15.04' => 'ubuntu-15-04-x64',
189
189
  'ubuntu-15.10' => 'ubuntu-15-10-x64'
190
190
  }
@@ -19,7 +19,7 @@
19
19
  module Kitchen
20
20
  module Driver
21
21
  # Version string for Digital Ocean Kitchen driver
22
- DIGITALOCEAN_VERSION = '0.9.4'
22
+ DIGITALOCEAN_VERSION = '0.9.5'
23
23
  end
24
24
  end
25
25
 
@@ -77,19 +77,19 @@ describe Kitchen::Driver::Digitalocean do
77
77
  end
78
78
  end
79
79
 
80
- context 'name is ubuntu-14-04-3-x64' do
81
- let(:platform_name) { 'ubuntu-14-04-3-x64' }
80
+ context 'name is ubuntu-14-04-x64' do
81
+ let(:platform_name) { 'ubuntu-14-04-x64' }
82
82
 
83
83
  it 'defaults to the correct image ID' do
84
- expect(driver[:image]).to eq('ubuntu-14-04-3-x64')
84
+ expect(driver[:image]).to eq('ubuntu-14-04-x64')
85
85
  end
86
86
  end
87
87
 
88
88
  context 'platform name matches a known platform => slug mapping' do
89
- let(:platform_name) { 'ubuntu-14.04.3' }
89
+ let(:platform_name) { 'ubuntu-14.04' }
90
90
 
91
91
  it 'matches the correct image slug' do
92
- expect(driver[:image]).to eq('ubuntu-14-04-3-x64')
92
+ expect(driver[:image]).to eq('ubuntu-14-04-x64')
93
93
  end
94
94
  end
95
95
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-digitalocean
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Fitzgerald