summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <expeditor@chef.io>2020-03-02 18:20:47 +0000
committerChef Expeditor <expeditor@chef.io>2020-03-02 18:20:47 +0000
commite6a5a2335ca2d333b2f82b751fe1917fcbe2ad13 (patch)
tree5fcd048c20fd33ca28fea14f40ccd743d9127605
parent23d2fdd057177689879a9a3bc280e0d642f8be39 (diff)
downloadchef-e6a5a2335ca2d333b2f82b751fe1917fcbe2ad13.tar.gz
Bump version to 14.14.39 by Chef Expeditorv14.14.39
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r--CHANGELOG.md7
-rw-r--r--Gemfile.lock14
-rw-r--r--VERSION2
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--lib/chef/version.rb2
5 files changed, 14 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1abe7e8edd..99ba3e7892 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,16 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
-<!-- latest_release 14.14.38 -->
-## [v14.14.38](https://github.com/chef/chef/tree/v14.14.38) (2020-02-06)
+<!-- latest_release 14.14.39 -->
+## [v14.14.39](https://github.com/chef/chef/tree/v14.14.39) (2020-03-02)
#### Merged Pull Requests
-- Add Debian 10 (Buster) Tester [#9340](https://github.com/chef/chef/pull/9340) ([christopher-snapp](https://github.com/christopher-snapp))
+- [Backport]ifconfig: fix regex matching interface name with hyphen [#9405](https://github.com/chef/chef/pull/9405) ([dheerajd-msys](https://github.com/dheerajd-msys))
<!-- latest_release -->
<!-- release_rollup since=14.14.29 -->
### Changes not yet released to stable
#### Merged Pull Requests
+- [Backport]ifconfig: fix regex matching interface name with hyphen [#9405](https://github.com/chef/chef/pull/9405) ([dheerajd-msys](https://github.com/dheerajd-msys)) <!-- 14.14.39 -->
- Add Debian 10 (Buster) Tester [#9340](https://github.com/chef/chef/pull/9340) ([christopher-snapp](https://github.com/christopher-snapp)) <!-- 14.14.38 -->
- Update all deps to the latest + openssl 1.0.2u [#9221](https://github.com/chef/chef/pull/9221) ([tas50](https://github.com/tas50)) <!-- 14.14.37 -->
- Update all deps to the latest [#9193](https://github.com/chef/chef/pull/9193) ([tas50](https://github.com/tas50)) <!-- 14.14.36 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index 4da4774c11..71065cdedc 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
- chef (14.14.38)
+ chef (14.14.39)
addressable
bundler (>= 1.10)
- chef-config (= 14.14.38)
+ chef-config (= 14.14.39)
chef-zero (>= 13.0)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -31,10 +31,10 @@ PATH
specinfra (~> 2.10)
syslog-logger (~> 1.6)
uuidtools (~> 2.1.5)
- chef (14.14.38-universal-mingw32)
+ chef (14.14.39-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 14.14.38)
+ chef-config (= 14.14.39)
chef-zero (>= 13.0)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -77,7 +77,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (14.14.38)
+ chef-config (14.14.39)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
@@ -133,7 +133,7 @@ GEM
hashie (3.6.0)
highline (1.7.10)
htmlentities (4.3.4)
- iniparse (1.4.4)
+ iniparse (1.5.0)
inspec-core (3.9.3)
addressable (~> 2.4)
faraday (>= 0.9.0)
@@ -273,7 +273,7 @@ GEM
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
slop (3.6.0)
- specinfra (2.82.8)
+ specinfra (2.82.10)
net-scp
net-ssh (>= 2.7)
net-telnet (= 0.1.1)
diff --git a/VERSION b/VERSION
index 69060a6316..7b146b7874 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-14.14.38 \ No newline at end of file
+14.14.39 \ No newline at end of file
diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb
index 0940a2585f..db8ec6e737 100644
--- a/chef-config/lib/chef-config/version.rb
+++ b/chef-config/lib/chef-config/version.rb
@@ -21,7 +21,7 @@
module ChefConfig
CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
- VERSION = "14.14.38".freeze
+ VERSION = "14.14.39".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 1604707ced..daa3b03db3 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -23,7 +23,7 @@ require "chef/version_string"
class Chef
CHEF_ROOT = File.expand_path("../..", __FILE__)
- VERSION = Chef::VersionString.new("14.14.38")
+ VERSION = Chef::VersionString.new("14.14.39")
end
#