diff options
author | Richard Schneeman <richard.schneeman+no-recruiters@gmail.com> | 2018-07-31 07:08:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 07:08:59 -0400 |
commit | 5deab3d26c28f52daf52922971cbd7ab1f0569de (patch) | |
tree | 95ca04ce73a2d22fe5abee718118ea2c1e375553 /actionpack/CHANGELOG.md | |
parent | 69f6c4d2af43f2e19c73b89755c3c19733207987 (diff) | |
parent | 84e8b350a3c3b9dbf4333fb21979688b3eb1f19e (diff) | |
download | rails-5deab3d26c28f52daf52922971cbd7ab1f0569de.tar.gz rails-5deab3d26c28f52daf52922971cbd7ab1f0569de.tar.bz2 rails-5deab3d26c28f52daf52922971cbd7ab1f0569de.zip |
Merge pull request #33446 from ptoomey3/nested-respond-to
Raises exception when respond_to called multiple times in incompatible way
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r-- | actionpack/CHANGELOG.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index f7e9104627..e3d5c8a622 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,3 +1,18 @@ +*. Raises `ActionController::RespondToMismatchError` with confliciting `respond_to` invocations. + + `respond_to` can match multiple types and lead to undefined behavior when + multiple invocations are made and the types do not match: + + respond_to do |outer_type| + outer_type.js do + respond_to do |inner_type| + inner_type.html { render body: "HTML" } + end + end + end + + *Patrick Toomey* + * `ActionDispatch::Http::UploadedFile` now delegates `to_path` to its tempfile. This allows uploaded file objects to be passed directly to `File.read` |