summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-08-11 10:12:15 -0700
committerGitHub <noreply@github.com>2017-08-11 10:12:15 -0700
commit155a2f7277c90e3db017e5e9244a260bc146921c (patch)
treee32479ed574a9d8977fcbf51997da0f67e76d92e
parentf71c0a1adb8ff792a7eb7f826fff686b38135fc8 (diff)
parent85ac798458dec7495e9d99b3f279b4db2e71b206 (diff)
downloadchef-155a2f7277c90e3db017e5e9244a260bc146921c.tar.gz
Merge pull request #6325 from chef/notes3
Add more items to the 13.3 release notes
-rw-r--r--RELEASE_NOTES.md28
1 files changed, 24 insertions, 4 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 2d1b00a2f7..980ceec6ca 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -6,11 +6,31 @@ _This file holds "in progress" release notes for the current release under devel
Chef can now create symlinks without privilege escalation, which allows for the creation of symlinks on Windows 10 Creator Update.
-## apt_preference resource
+## nokogiri Gem
-The apt_preference resource has been ported from the apt cookbook. This resource allows you to create APT preference files controlling which versions of packages will be installed.
+The nokogiri gem is once again bundled with the omnibus install of Chef
-Further information regarding apt-pinning is available via <https://wiki.debian.org/AptPreferences>.
+## zypper_package Options
+
+It is now possible to pass additional options to the zypper in the zypper_package resource. This can be used to pass any zypper CLI option
+
+### Example:
+
+```ruby
+zypper_package 'foo'
+ options '--user-provided'
+end
+```
+
+## windows_task Improvements
+
+The `windows_task` resource now properly allows updating the configuration of a scheduled task when using the `:create` action. Additionally the previous `:change` action from the windows cookbook has been aliased to `:create` to provide backwards compatibility.
+
+## apt_preference Resource
+
+The apt_preference resource has been ported from the apt cookbook. This resource allows for the creation of APT preference files controlling which packages take priority in installed.
+
+Further information regarding apt-pinning is available via <https://wiki.debian.org/AptPreferences> and <https://manpages.debian.org/stretch/apt/apt_preferences.5.en.html>
### Actions
@@ -53,7 +73,7 @@ apt_preference 'dotdeb' do
end
```
-## zypper_repository resource
+## zypper_repository Resource
The zypper_repository resource allows for the creation of Zypper package repositories on SUSE Enterprise Linux and openSUSE systems. This resource maintains full compatibility with the resource in the existing [zypper](https://supermarket.chef.io/cookbooks/zypper) cookbooks