diff options
author | Tim Smith <tsmith@chef.io> | 2020-04-28 08:12:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 08:12:15 -0700 |
commit | da6de89a84d149359814548640ec514e82aae75b (patch) | |
tree | 890fbf47f2a721db5f78f328bc49c68566baa014 | |
parent | 99f60122e441ef7e1ce9d68c964154a9a9054201 (diff) | |
download | chef-da6de89a84d149359814548640ec514e82aae75b.tar.gz |
Update RELEASE_NOTES.md
Signed-off-by: Tim Smith <tsmith@chef.io>
Co-Authored-By: mjingle <mjinglewski@chef.io>
-rw-r--r-- | RELEASE_NOTES.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0409b1378f..631042ed37 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -50,7 +50,7 @@ To restore the previous behavior, set `count_log_resource_updates true` in your ### HWRP Style Resources Now Require resource_name / provides -Legacy HWRP style resources, those written as Ruby classes in the libraries directory of a cookbook, will now require either the `resource_name` or `provides` methods to be used to define the resource names. Previously, Chef Infra Client would infer the desired resource name from the class, but this magic was problematic and has been removed. +Legacy HWRP-style resources, written as Ruby classes in the libraries directory of a cookbook, will now require either the use of `resource_name` or `provides` methods to define the resource names. Previously, Chef Infra Client would infer the desired resource name from the class, but this magic was problematic and has been removed. The `ChefDeprecations/ResourceWithoutNameOrProvides` cop in Cookstyle 6.0 and later detects this deprecation. |