summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-08-11 09:34:58 -0700
committerTim Smith <tsmith@chef.io>2017-08-11 09:34:58 -0700
commit6104a7d939edd8d10698b861255b266f83449c76 (patch)
tree7d36dbc5b4cd87b3db919f0697ec661ac89a6e6a
parentf71c0a1adb8ff792a7eb7f826fff686b38135fc8 (diff)
downloadchef-6104a7d939edd8d10698b861255b266f83449c76.tar.gz
Add more items to the 13.3 release notesnotes3
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--RELEASE_NOTES.md26
1 files changed, 23 insertions, 3 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 2d1b00a2f7..15435b2da5 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -6,9 +6,29 @@ _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
+
+## 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 versions of packages will be installed.
Further information regarding apt-pinning is available via <https://wiki.debian.org/AptPreferences>.
@@ -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