summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerdar Sutay <serdar@opscode.com>2014-10-10 15:18:09 -0700
committerSerdar Sutay <serdar@opscode.com>2014-10-10 15:25:51 -0700
commita84b26fafcc9af5926e342355a04ac9a30a3e18d (patch)
treedc37ae26aa4b2f34dabab2e462ef8aa25300c993
parenteaabe9341e73a312f75e44efa4bda2420442b335 (diff)
downloadchef-a84b26fafcc9af5926e342355a04ac9a30a3e18d.tar.gz
Contribution information for https://github.com/opscode/chef/pull/2165.
-rw-r--r--CHANGELOG.md2
-rw-r--r--RELEASE_NOTES.md7
2 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f90e062b3c..5a469c5cb5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -106,6 +106,8 @@
Fixed a bug in pacman package provider that was preventing the installation of `bind` package.
* [**Ionuț Arțăriși**](https://github.com/mapleoin):
Changed the default service provider to systemd on SLES versions 12.10 and higher.
+* [**Noah Kantrowitz**](https://github.com/coderanger):
+ Implemented [RFC017 - File Specificity Overhaul](https://github.com/opscode/chef-rfc/blob/master/rfc017-file-specificity.md).
### Chef Contributions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 4bdc293c55..43d500876c 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -323,3 +323,10 @@ before converging chef. (In previous releases, splay sleep occurred first, then
## New cookbook metadata attributes for Supermarket
Cookbook metadata now accepts `source_url` and `issues_url` that should point to the source code of the cookbook and
the issue tracker of the cookbook. These attributes are being used by Supermarket.
+
+## CHEF RFC-017 - File Specificity Overhaul
+RFC-017 has two great advantages:
+1. It makes it easy to create cookbooks by removing the need for `default/` folder when adding templates and cookbook files.
+2. It enables the configuring a custom lookup logic when Chef is attempting to find cookbook files.
+
+You can read more about this RFC [here](https://github.com/opscode/chef-rfc/blob/master/rfc017-file-specificity.md).