lib/rubocop/cop/chef/deprecation/deprecated_chefspec_platform.rb in cookstyle-6.4.4 vs lib/rubocop/cop/chef/deprecation/deprecated_chefspec_platform.rb in cookstyle-6.5.3
- old
+ new
@@ -45,25 +45,31 @@
'ubuntu' => {
'< 16.04' => true,
'> 16.04, < 18.04' => true,
},
'fedora' => {
- '< 30' => '30',
+ '< 31' => '31',
},
'freebsd' => {
- '< 11' => '12',
+ '~> 11.0, < 11.2' => '11',
+ '= 12.0' => '12',
+ '< 11' => true,
},
'mac_os_x' => {
'< 10.12' => '10.15',
},
+ 'suse' => {
+ '~> 12.0, < 12.4' => '12',
+ '< 12' => true,
+ },
'opensuse' => {
'< 14' => true,
'~> 42.0' => true,
},
'debian' => {
'< 8' => true,
- '> 8.0, < 8.9' => '8',
- '> 9.0, < 9.8' => '9',
+ '> 8.0, < 8.10' => '8',
+ '> 9.0, < 9.9' => '9',
},
'centos' => {
'< 6.0' => true,
'~> 6.0, < 6.8' => '6',
'~> 7.0, < 7.6 ' => '7',