diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | CONTRIBUTIONS.md | 1 | ||||
-rw-r--r-- | DOC_CHANGES.md | 4 | ||||
-rw-r--r-- | RELEASE_NOTES.md | 4 |
4 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3df10f1853..7e6d02f0a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,8 @@ * Windows MSI Package Provider (CHEF-5087) * Fix mount resource when device is a relative symlink (CHEF-4957) * Increase bootstrap log_level when knife -V -V is set (CHEF-3610) +* Knife cookbook test should honor chefignore (CHEF-4203) + ## Last Release: 11.10.0 (02/06/2014) diff --git a/CONTRIBUTIONS.md b/CONTRIBUTIONS.md index db30750faa..138a6a2559 100644 --- a/CONTRIBUTIONS.md +++ b/CONTRIBUTIONS.md @@ -36,3 +36,4 @@ Example Contribution: * **thommay **: Made sure that `node.save` doesn't save the run_list when chef is running with override-run-list. * **Maxime Caumartin**: Fix mount resource when device is a relative symlink. * **jessehu**: Increase bootstrap log_level when knife -V -V is set +* **mveitas**: knife cookbook test honors chefignore diff --git a/DOC_CHANGES.md b/DOC_CHANGES.md index 1c1ee28c99..dff930ac09 100644 --- a/DOC_CHANGES.md +++ b/DOC_CHANGES.md @@ -30,6 +30,10 @@ Option similar to `-o` which sets or changes the run_list of a node permanently. Running ```knife bootstrap -V -V``` will run the initial chef-client with a log level of debug. +### knife cookbook test + +```knife cookbook test``` respects chefignore files when selecting which files to test. + ### OHAI 7 Upgrade Unless there are major issues, 11.12.0 will include OHAI 7. We already have ohai 7 docs in place. We probably need to add some notes to ohai 6 notes that one should now use the newer version when possible. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8636e9f25d..355733af38 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -137,6 +137,10 @@ There is a new attribute named ```time``` that takes special cron time values as Running ```knife bootstrap -V -V``` will run the initial chef-client with a log level of debug. +#### knife cookbook test + +Knife cookbook test now respects [chefignore files](http://docs.opscode.com/essentials_repository.html#chefignore-files), allowing you to exclude unrelated ruby code such as unit tests. + #### Miscellaneous * The subversion resource will now mask plaintext passwords in error output. |