summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalim Alam <salam@chef.io>2015-12-02 13:58:31 -0800
committerSalim Alam <salam@chef.io>2015-12-02 14:07:34 -0800
commit83f18849da6d85df0381139c55ef47d80cf18c12 (patch)
treebdfe68646d44b645b36521119fa0c3693364ba59
parentde1f684f415faa54599c6b3abbe211d64a319aa6 (diff)
downloadchef-83f18849da6d85df0381139c55ef47d80cf18c12.tar.gz
Update RELEASE_NOTES
-rw-r--r--RELEASE_NOTES.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index c27984101b..aabecc13a2 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -34,4 +34,23 @@ not designed to be a general solution to performance issues inside of chef-clien
This debugging feature will mostly be useful to people who are already Ruby experts.
+### New ksh resource
+ksh is now available to use as a resource and is available as an interpreter in the script resource.
+
+Please see the DOC_CHANGES for more details.
+
+## Better handling of Windows service logging
+
+Currently, the windows service manager passes in a default log_location to the Chef windows service at startup. Once the service is installed, this log_location overrides any log_location set in the client.rb. In 12.6.0, this behavior is changed to allow the Chef windows service to prefer the log_location in client.rb instead. Now, the windows service manager will not explicitly pass in a log_location, and therefore the Chef service will always use what is in the client.rb or the typical default path if none is configured. This enables scenarios such as logging to the Windows event log when running chef client as a Windows service.
+
+## Dsc_resource changes and fixes
+
+* A fix was made for the Nov 2015 update of Windows 10, where the dsc_resource did not properly show the command output when converging the resource.
+* Dsc_resource could in some cases show the plaintext password when #inspected - this is now prevented from happening.
+* Previously, Chef required the LCM Refreshmode to be set to Disabled when utilizing dsc_resource. Microsoft has relaxed this requirement in WFM 5 (PowerShell 5.0.10586.0 or later). Now, we only require the RefreshMode to be disabled when running on earlier versions of PowerShell.
+* Added a reboot_action attribute to dsc_resource. If the DSC resource indicates that it requires a reboot, reboot_action can use the reboot resource to either reboot immediately (:reboot_now) or queue a reboot (:request_reboot). The default value of reboot_action is :nothing.
+
+## Other items
+
+There are a large number of other PRs in this release. Please eee the CHANGELOG for the full set of changes.