diff options
author | Tim Smith <tsmith@chef.io> | 2019-04-26 12:36:49 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-04-26 12:37:10 -0700 |
commit | da8bc7a3a5bad59fe5f228d7d0c272ea1e2c469b (patch) | |
tree | e843dbf4ba833b3fb33067b8b7fb35d3d8fcbe45 | |
parent | 2b29b613d6221c653069d9b4e7ff9a3f8bd56e7f (diff) | |
download | chef-da8bc7a3a5bad59fe5f228d7d0c272ea1e2c469b.tar.gz |
Add to the release notes
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | RELEASE_NOTES.md | 44 |
1 files changed, 39 insertions, 5 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ef2e843bd5..b0913a2a2f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -12,9 +12,7 @@ Chef 15 release notes will be added here as development progresses. ### copy_properties_from in Custom Resources -### locale resource - -The locale resource now allows setting all possible LC_* environmental variables. +### ed25519 SSH key support ## New Resources @@ -28,9 +26,45 @@ The locale resource now allows setting all possible LC_* environmental variables ### snap_package resource -### Ruby 2.6.2 +## Resource Improvements + +### windows_task + +windows_task now supports the Start When Available option with a new ``start_when_available`` property. + +### locale + +The locale resource now allows setting all possible LC_* environmental variables. + +### directory + +The directory resource now property supports passing ``deny_rights :write`` on Windows nodes. + +### windows_service + +The windows_service resource has been improved to prevent accidently reverting a service back to default settings in a subsequent definition. + +This example will no longer result in the MyApp service reverting to default RunAsUser: +```ruby +windows_service 'MyApp' do + run_as_user 'MyAppsUser' + run_as_password 'MyAppsUserPassword' + startup_type :automatic + delayed_start true + action [:configure, :start] +end + +... + +windows_service 'MyApp' do + startup_type :automatic + action [:configure, :start] +end +``` + +### Ruby 2.6.3 -Chef now ships with Ruby 2.6.2. This new version of Ruby improves performance and includes many new features to make more advanced Chef usage easier. See https://www.rubyguides.com/2018/11/ruby-2-6-new-features/ for a list of some of the new functionality. +Chef now ships with Ruby 2.6.3. This new version of Ruby improves performance and includes many new features to make more advanced Chef usage easier. See https://www.rubyguides.com/2018/11/ruby-2-6-new-features/ for a list of some of the new functionality. ## New Deprecations |