# \[Pre-Release Announcement\] Chef Client 13.7.16

**URL:** https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458
**Category:** Chef Infra (archive)
**Created:** [January 19, 2018, 1:59pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458 "2018-01-19T13:59:27Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![thommay](https://avatars.discourse-cdn.com/v4/letter/t/f08c70/32.png) [@thommay](https://discourse.chef.io/u/thommay)
#### Post date: [January 19, 2018, 1:59pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/1 "2018-01-19T13:59:27Z")

</div>

Ohai Chefs!

We have selected 13.7.16 as our Chef v13.7 release candidate which is scheduled for release on Tuesday January 23, 2018.

# Release Highlights

## The `windows_task` Resource should be better behaved

We’ve spent a considerable amount of time testing and fixing the `windows_task` resource to ensure that it is properly idempotent and correct in more situations.

## Credentials handling

Previously, chef on the workstation used `knife.rb` or `config.rb` to handle credentials. This didn’t do a great job when interacting with multiple Chef servers, leading to the need for tools like `knife_block`. We’ve added support for a credentials file that can contain configuration for many Chef servers (or organizations), and we’ve made it easy to indicate which account you mean to use.

## New deprecations

### `erl_call` Resource

We introduced `erl_call` to help us to manage CouchDB servers back in the olden times of Chef. Since then, we’ve noticed that no-one uses it, and so `erl_call` will be removed in Chef 14. Foodcritic rule FC105 has been introduced to detect usage of erl\_call.

### epic\_fail

The original name for the ignore\_failure property in resources was epic\_fail. Our documentation hasn’t referred to epic\_fail for years and out of the 3500 cookbooks on the Supermarket only one uses epic\_fail. In Chef 14 we will remove the epic\_fail property entirely. Foodcritic rule FC107 has been introduced to detect usage of epic\_fail.

### Legacy Mixins

In Chef 14 several legacy legacy mixins will be removed. Usage of these mixins has resulted in deprecation warnings for several years. They were traditionally used in some HWRPs, but are rarely found in code available on the Supermarket. Foodcritic rules FC097, FC098, FC099, FC100, and FC102 have been introduced to detect these mixins.

- Chef::Mixin::LanguageIncludeAttribute
- Chef::Mixin::RecipeDefinitionDSLCore
- Chef::Mixin::LanguageIncludeRecipe
- Chef::Mixin::Language
- Chef::DSL::Recipe::FullDSL

### :uninstall action in chocolatey\_package

The chocolatey cookbook’s chocolatey\_package resource originally contained an :uninstall action. When chocolatey\_package was moved into core Chef we made :uninstall an alias for :remove. In Chef 14 :uninstall will no longer be a valid action. Foodcritic rule FC103 has been introduced to detect the usage of the :uninstall action.

## Bugfixes

- Resolved a bug where knife commands that prompted on Windows would never display the prompt
- Fixed hiding of sensitive resources when converge\_if\_changed was used
- Fixed scenarios where services would fail to start on Solaris

## Security Updates

- OpenSSL has been upgraded to 1.0.2n to resolve CVE-2017-3738, CVE-2017-3737, CVE-2017-3736, and CVE-2017-3735.
- Ruby has been upgraded to 2.4.3 to resolve CVE-2017-17405

Please see the [CHANGELOG](https://github.com/chef/chef/blob/master/CHANGELOG.md) for the complete list of changes.

## Ohai 13.7 Release Notes:

### Network Tunnel Information

The Network plugin on Linux hosts now gathers additional information on tunnels

### LsPci Plugin

The new LsPci plugin provides a `node[:pci]` hash with information about the PCI bus based on `lspci`. Only runs on Linux.

### EC2 C5 Detection

The EC2 plugin has been updated to properly detect the new AWS hypervisor used in the C5 instance types

### mdadm

The mdadm plugin has been updated to properly handle arrays with more than 10 disks and to properly handle journal and spare drives in the disk counts.

Please see the [CHANGELOG](https://github.com/chef/ohai/blob/master/CHANGELOG.md) for the complete list of changes.

# Get the Build

As always, you can download binaries directly from [downloads.chef.io](https://downloads.chef.io/chef/current/13.7.16) or by using the new `mixlib-install` command line utility available in ChefDK 0.19.6 or greater.

```auto
$ mixlib-install download chef -v 13.7.16 -c current

```

Alternatively, you can install Chef using one of the following command options:

```auto
# In Shell
$ curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P chef -v 13.7.16 -c current

# In Windows Powershell
. { iwr -useb https://omnitruck.chef.io/install.ps1 } | iex; install -project chef -version 13.7.16 -channel current

```

---

<div class="post-metadata">

### Author: ![stankmaster](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.chef.io/stankmaster/32/2181_2.png) [@stankmaster](https://discourse.chef.io/u/stankmaster)
#### Post date: [January 19, 2018, 2:15pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/2 "2018-01-19T14:15:30Z")

</div>

Thanks! I'm glad to see updates on the Windows Task resource.

> •Resolved a bug where knife commands that prompted on Windows would never display the prompt

Pardon my ignorance, but isn't this a Chef DK fix since it pertains to knife? Thus, how does Chef Client play into this fix?

---

<div class="post-metadata">

### Author: ![thommay](https://avatars.discourse-cdn.com/v4/letter/t/f08c70/32.png) [@thommay](https://discourse.chef.io/u/thommay)
#### Post date: [January 19, 2018, 2:22pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/3 "2018-01-19T14:22:07Z")

</div>

Knife is part of the Chef Client - mostly for historical reasons, since it predates the ChefDK. When we do a new ChefDK release, it’ll include this version of the Chef Client, and get the fixed knife as part of that.

---

<div class="post-metadata">

### Author: ![stankmaster](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.chef.io/stankmaster/32/2181_2.png) [@stankmaster](https://discourse.chef.io/u/stankmaster)
#### Post date: [January 19, 2018, 2:26pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/4 "2018-01-19T14:26:16Z")

</div>

Oh, I see. Thanks for the info.

So to get this fix before the new version of the ChefDK (that will include this version of the chef client), can I just install this version of the chef client directly onto my workstation? I’m eager to test this out since I’ve been largely affected by this one 🙂.

---

<div class="post-metadata">

### Author: ![thommay](https://avatars.discourse-cdn.com/v4/letter/t/f08c70/32.png) [@thommay](https://discourse.chef.io/u/thommay)
#### Post date: [January 19, 2018, 2:28pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/5 "2018-01-19T14:28:15Z")

</div>

Sure. You’ll just need to make sure your paths are correct.

---

<div class="post-metadata">

### Author: ![stankmaster](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.chef.io/stankmaster/32/2181_2.png) [@stankmaster](https://discourse.chef.io/u/stankmaster)
#### Post date: [January 19, 2018, 2:32pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/6 "2018-01-19T14:32:07Z")

</div>

I see. So it’s not as simple as simply executing the installer; I’ll need to do some additional leg work to get it working properly. In this case, I’ll probably just wait for the newer version of the Chef DK, unless there is some documentation you can provide me for ‘updating my paths’ properly in this installation scenario.

Thanks again.

---

<div class="post-metadata">

### Author: ![thommay](https://avatars.discourse-cdn.com/v4/letter/t/f08c70/32.png) [@thommay](https://discourse.chef.io/u/thommay)
#### Post date: [January 19, 2018, 2:36pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/7 "2018-01-19T14:36:50Z")

</div>

I just mean that both the Chef Client installer and the ChefDK installer will create an executable called `knife`. It’s up to you to ensure that you’re running the one you expect.

---

<div class="post-metadata">

### Author: ![stankmaster](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.chef.io/stankmaster/32/2181_2.png) [@stankmaster](https://discourse.chef.io/u/stankmaster)
#### Post date: [January 19, 2018, 2:47pm UTC](https://discourse.chef.io/t/pre-release-announcement-chef-client-13-7-16/12458/8 "2018-01-19T14:47:40Z")

</div>

Got it. Thanks.
