aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/4_0_release_notes.md
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@github.com>2018-08-23 13:20:22 -0700
committerGitHub <noreply@github.com>2018-08-23 13:20:22 -0700
commitde6a200f82a3de399fa685d583503bc88dbc5e9f (patch)
tree02fd70a21ba0831d9a544a3dbe8dcaba997d7e01 /guides/source/4_0_release_notes.md
parent1f05cc58d5c098a626bdb4a43025815d3cef5bac (diff)
parentf1d647aeff1438beea2b5027dadb8d48e033be43 (diff)
downloadrails-de6a200f82a3de399fa685d583503bc88dbc5e9f.tar.gz
rails-de6a200f82a3de399fa685d583503bc88dbc5e9f.tar.bz2
rails-de6a200f82a3de399fa685d583503bc88dbc5e9f.zip
Merge pull request #33681 from minaslater/replace-white-and-blacklist
[ci skip] change all instances of blacklist and whitelist to denylist…
Diffstat (limited to 'guides/source/4_0_release_notes.md')
-rw-r--r--guides/source/4_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index eaae695dff..4b11ce222b 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -70,7 +70,7 @@ Major Features
### ActionPack
-* **Strong parameters** ([commit](https://github.com/rails/rails/commit/a8f6d5c6450a7fe058348a7f10a908352bb6c7fc)) - Only allow whitelisted parameters to update model objects (`params.permit(:title, :text)`).
+* **Strong parameters** ([commit](https://github.com/rails/rails/commit/a8f6d5c6450a7fe058348a7f10a908352bb6c7fc)) - Only allow permitted parameters to update model objects (`params.permit(:title, :text)`).
* **Routing concerns** ([commit](https://github.com/rails/rails/commit/0dd24728a088fcb4ae616bb5d62734aca5276b1b)) - In the routing DSL, factor out common subroutes (`comments` from `/posts/1/comments` and `/videos/1/comments`).
* **ActionController::Live** ([commit](https://github.com/rails/rails/commit/af0a9f9eefaee3a8120cfd8d05cbc431af376da3)) - Stream JSON with `response.stream`.
* **Declarative ETags** ([commit](https://github.com/rails/rails/commit/ed5c938fa36995f06d4917d9543ba78ed506bb8d)) - Add controller-level etag additions that will be part of the action etag computation.