diff options
author | Adam Leff <adam@leff.co> | 2016-09-12 09:55:19 -0400 |
---|---|---|
committer | Adam Leff <adam@leff.co> | 2016-09-12 09:55:19 -0400 |
commit | cd98bcd9312e4af403378c720f56b800a9677887 (patch) | |
tree | 431f71bf605aa9434677b7646ba8da9bcfc97067 /RELEASE_NOTES.md | |
parent | 3b7e3ec1e04ac59ed89233416119ff2b1bdc95ac (diff) | |
download | chef-cd98bcd9312e4af403378c720f56b800a9677887.tar.gz |
Added item for sensitive properties for custom resources
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2e6858b8d1..f3f8b208c4 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -7,6 +7,11 @@ Please see `https://docs.chef.io/release/<major>-<minor>/release_notes.html` for * Upgraded Ruby version from 2.1.9 to 2.3.1 which adds several performance and functionality enhancements. * Added a small patch to Ruby 2.3.1 and improvements to the Ohai Network plugin in order to support chef client runs on Windows Nano Server. +* Added the ability to mark a property of a custom resource as "sensitive." This will suppress the property's value when it's used in other outputs, such as messages used by the [Data Collector](https://github.com/chef/chef-rfc/blob/master/rfc077-mode-agnostic-data-collection.md). To use, add `sensitive: true` when definine the property. Example: + +```ruby +property :db_password, String, sensitive: true +``` ## Highlighted bug fixes for this release: |