summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Leff <adam@leff.co>2016-09-12 09:55:19 -0400
committerAdam Leff <adam@leff.co>2016-09-12 09:55:19 -0400
commitcd98bcd9312e4af403378c720f56b800a9677887 (patch)
tree431f71bf605aa9434677b7646ba8da9bcfc97067
parent3b7e3ec1e04ac59ed89233416119ff2b1bdc95ac (diff)
downloadchef-cd98bcd9312e4af403378c720f56b800a9677887.tar.gz
Added item for sensitive properties for custom resources
-rw-r--r--RELEASE_NOTES.md5
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: