summaryrefslogtreecommitdiff
path: root/RELEASE_NOTES.md
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-08-14 09:27:32 -0700
committerTim Smith <tsmith@chef.io>2018-08-14 09:27:32 -0700
commitb672bafee80e0a3f029ae3b02193b75edc04b0cf (patch)
tree285077ca24f0fc9aabbfaeb23710f1bdb6dbfed6 /RELEASE_NOTES.md
parent5fb14ff1adbd1700da1b14ced8ec8c00752f4299 (diff)
downloadchef-b672bafee80e0a3f029ae3b02193b75edc04b0cf.tar.gz
Start work on the 14.4 release notes
Document the new resources and the improvements to existing resources. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r--RELEASE_NOTES.md43
1 files changed, 43 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 68a31e9882..a1622e9121 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -26,6 +26,49 @@ $ knife config list-profiles
*prod myuser ~/.chef/user.pem https://example.com/organizations/prod
```
+## New Resources
+
+### Cron_d
+
+Use the cron_d resource to manage cron definitions in /etc/cron.d. This is similar to the `cron` resource, but it does not use the monolithic /etc/crontab. file."
+
+#### Actions
+
+- `create` - Add a cron definition file to /etc/cron.d.
+- `create_if_missing` - Add a cron definition file to /etc/cron.d, but do not update an existing file.
+- `delete` - Remove a cron definition file from /etc/cron.d if it exists.
+
+### Cron_access
+
+Use the cron_access resource to manage the /etc/cron.allow and /etc/cron.deny files. This resource previously shipped in the `cron` community cookbook and has fully backwards compatibility with the previous `cron_manage` definition in that cookbook.
+
+#### Actions
+
+- `allow` - Add the user to the cron.allow file.
+- `deny` - Add the user to the cron.deny file.
+
+## Resource improvements
+
+### windows_package
+
+The windows_package resource now supports setting the `sensitive` property to avoid showing errors if a package install fails.
+
+### sysctl
+
+The sysctl resource will now update the on-disk systctl.d file even if the current sysctl value matches the desired value.
+
+### windows_task
+
+The windows_task resource now supports setting the task priority of the scheduled task with a new `priority` property.
+
+### ifconfig
+
+The ifconfig resource now supports setting the interface's VLAN via a new `vlan` property on RHEL platform_family and setting the interface's gateway via a new `gateway` property on RHEL/Debian platform_family.
+
+### route
+
+The route resource has been improved to support additional RHEL platform_family systems as well as Amazon Linux.
+
# Chef Client Release Notes 14.3:
## New Preview Resources Concept