summaryrefslogtreecommitdiff
path: root/RELEASE_NOTES.md
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-07-31 14:32:01 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-07-31 14:32:01 -0700
commit98267a4f7bdb1b7608bc32c1ba64f66c789f5d04 (patch)
treec1a958b480d5559d3f4315044f94cbc95b4a4961 /RELEASE_NOTES.md
parentdc9c3ebd33c664178b215780817074d880c2255d (diff)
downloadchef-98267a4f7bdb1b7608bc32c1ba64f66c789f5d04.tar.gz
remove http_request hard coded query string
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r--RELEASE_NOTES.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index c3b78c9f86..b1da138bd8 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,5 +1,12 @@
# Chef Client Release Notes:
+## http_request resource no longer appends query string
+
+Previously the http_request GET and HEAD requests appended a hard-coded "?message=resource_name"
+query parameter that could not be overridden. That feature has been dropped. Cookbooks that
+actually relied on that should manually add the message query string to the URL they pass to
+the resource.
+
## Added Chef::Mixin::ShellOut methods to Recipe DSL
Added the ability to use shell_out, shell_out! and shell_out_with_systems_locale in the Recipe