diff options
-rw-r--r-- | RELEASE_NOTES.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5e04bff069..d3c492ea35 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,6 +5,31 @@ Please see [https://docs.chef.io/release_notes.html](https://docs.chef.io/releas ## Highlighted enhancements for this release: +* Added msu_package resource and provider which supports the installation of Microsoft Update(MSU) packages on Windows. Example: + + ```ruby + msu_package 'Install Windows 2012R2 Update KB2959977' do + source 'C:\Users\xyz\AppData\Local\Temp\Windows8.1-KB2959977-x64.msu' + action :install + end + + msu_package 'Remove Windows 2012R2 Update KB2959977' do + source 'C:\Users\xyz\AppData\Local\Temp\Windows8.1-KB2959977-x64.msu' + action :remove + end + + # Using URL in source + msu_package 'Install Windows 2012R2 Update KB2959977' do + source 'https://s3.amazonaws.com/my_bucket/Windows8.1-KB2959977-x64.msu' + action :install + end + + msu_package 'Remove Windows 2012R2 Update KB2959977' do + source 'https://s3.amazonaws.com/my_bucket/Windows8.1-KB2959977-x64.msu' + action :remove + end + ``` + ### `attribute_changed` event hook * Added `attribute_changed` event hook: |