Skip to content

Commit

Permalink
Bump version to 17.10.14 by Chef Expeditor
Browse files Browse the repository at this point in the history
Obvious fix; these changes are the result of automation not creative thinking.
  • Loading branch information
chef-ci committed May 25, 2022
1 parent 1018209 commit 8479f8f
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 22 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
@@ -1,17 +1,18 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
This changelog lists individual merged pull requests to Chef Infra Client and geared towards developers. For a list of significant changes per release see the [Chef Infra Client Release Notes](https://docs.chef.io/release_notes_client/).

<!-- latest_release 17.10.13 -->
## [v17.10.13](https://github.com/chef/chef/tree/v17.10.13) (2022-05-17)
<!-- latest_release 17.10.14 -->
## [v17.10.14](https://github.com/chef/chef/tree/v17.10.14) (2022-05-25)

#### Merged Pull Requests
- Handling compliance phase error [#12872](https://github.com/chef/chef/pull/12872) ([i5pranay93](https://github.com/i5pranay93))
- backport Windows Certificate fixes to Chef-17 [#12912](https://github.com/chef/chef/pull/12912) ([johnmccrae](https://github.com/johnmccrae))
<!-- latest_release -->

<!-- release_rollup since=17.10.0 -->
### Changes not yet released to stable

#### Merged Pull Requests
- backport Windows Certificate fixes to Chef-17 [#12912](https://github.com/chef/chef/pull/12912) ([johnmccrae](https://github.com/johnmccrae)) <!-- 17.10.14 -->
- Handling compliance phase error [#12872](https://github.com/chef/chef/pull/12872) ([i5pranay93](https://github.com/i5pranay93)) <!-- 17.10.13 -->
- Backport #12140 to chef-17 [#12856](https://github.com/chef/chef/pull/12856) ([jasonwbarnett](https://github.com/jasonwbarnett)) <!-- 17.10.12 -->
- Fix chef_client_config template rendering [#12826](https://github.com/chef/chef/pull/12826) ([jasonwbarnett](https://github.com/jasonwbarnett)) <!-- 17.10.11 -->
Expand Down
26 changes: 13 additions & 13 deletions Gemfile.lock
Expand Up @@ -35,12 +35,12 @@ GIT
PATH
remote: .
specs:
chef (17.10.13)
chef (17.10.14)
addressable
aws-sdk-s3 (~> 1.91)
aws-sdk-secretsmanager (~> 1.46)
chef-config (= 17.10.13)
chef-utils (= 17.10.13)
chef-config (= 17.10.14)
chef-utils (= 17.10.14)
chef-vault
chef-zero (>= 14.0.11)
corefoundation (~> 0.3.4)
Expand All @@ -66,13 +66,13 @@ PATH
train-winrm (>= 0.2.5)
uuidtools (>= 2.1.5, < 3.0)
vault (~> 0.16)
chef (17.10.13-universal-mingw32)
chef (17.10.14-universal-mingw32)
addressable
aws-sdk-s3 (~> 1.91)
aws-sdk-secretsmanager (~> 1.46)
chef-config (= 17.10.13)
chef-config (= 17.10.14)
chef-powershell (~> 1.0.12)
chef-utils (= 17.10.13)
chef-utils (= 17.10.14)
chef-vault
chef-zero (>= 14.0.11)
corefoundation (~> 0.3.4)
Expand Down Expand Up @@ -113,15 +113,15 @@ PATH
PATH
remote: chef-bin
specs:
chef-bin (17.10.13)
chef (= 17.10.13)
chef-bin (17.10.14)
chef (= 17.10.14)

PATH
remote: chef-config
specs:
chef-config (17.10.13)
chef-config (17.10.14)
addressable
chef-utils (= 17.10.13)
chef-utils (= 17.10.14)
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
mixlib-shellout (>= 2.0, < 4.0)
Expand All @@ -130,7 +130,7 @@ PATH
PATH
remote: chef-utils
specs:
chef-utils (17.10.13)
chef-utils (17.10.14)
concurrent-ruby

GEM
Expand All @@ -143,7 +143,7 @@ GEM
mixlib-shellout (>= 2.0, < 4.0)
ast (2.4.2)
aws-eventstream (1.2.0)
aws-partitions (1.590.0)
aws-partitions (1.591.0)
aws-sdk-core (3.131.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
Expand Down Expand Up @@ -266,7 +266,7 @@ GEM
tty-box (~> 0.6)
tty-prompt (~> 0.20)
little-plugger (1.1.4)
logging (2.3.0)
logging (2.3.1)
little-plugger (~> 1.1)
multi_json (~> 1.14)
method_source (1.0.0)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
17.10.13
17.10.14
2 changes: 1 addition & 1 deletion chef-bin/lib/chef-bin/version.rb
Expand Up @@ -21,7 +21,7 @@

module ChefBin
CHEFBIN_ROOT = File.expand_path("..", __dir__)
VERSION = "17.10.13".freeze
VERSION = "17.10.14".freeze
end

#
Expand Down
2 changes: 1 addition & 1 deletion chef-config/lib/chef-config/version.rb
Expand Up @@ -15,5 +15,5 @@

module ChefConfig
CHEFCONFIG_ROOT = File.expand_path("..", __dir__)
VERSION = "17.10.13".freeze
VERSION = "17.10.14".freeze
end
2 changes: 1 addition & 1 deletion chef-utils/lib/chef-utils/version.rb
Expand Up @@ -16,5 +16,5 @@

module ChefUtils
CHEFUTILS_ROOT = File.expand_path("..", __dir__)
VERSION = "17.10.13"
VERSION = "17.10.14"
end
2 changes: 1 addition & 1 deletion knife/lib/chef/knife/version.rb
Expand Up @@ -17,7 +17,7 @@
class Chef
class Knife
KNIFE_ROOT = File.expand_path("../..", __dir__)
VERSION = "17.10.13".freeze
VERSION = "17.10.14".freeze
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/chef/version.rb
Expand Up @@ -23,7 +23,7 @@

class Chef
CHEF_ROOT = File.expand_path("..", __dir__)
VERSION = Chef::VersionString.new("17.10.13")
VERSION = Chef::VersionString.new("17.10.14")
end

#
Expand Down

0 comments on commit 8479f8f

Please sign in to comment.