aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorप्रथमेश Sonpatki <csonpatki@gmail.com>2016-10-24 17:25:40 +0530
committerGitHub <noreply@github.com>2016-10-24 17:25:40 +0530
commit7f8bb09113809c2a33e27fc1a92358ede27cf8c5 (patch)
treee70a257ce484d06e16144762b0a28f9602fec329 /guides
parenta0d0648efb5faa5d8d94a090e8b6ff498a7a9475 (diff)
parent0f87413f41050d6e3eacefb97a05a5d954f602d1 (diff)
downloadrails-7f8bb09113809c2a33e27fc1a92358ede27cf8c5.tar.gz
rails-7f8bb09113809c2a33e27fc1a92358ede27cf8c5.tar.bz2
rails-7f8bb09113809c2a33e27fc1a92358ede27cf8c5.zip
Merge pull request #26876 from y-yagi/update_description_of_etag
update description of Etag [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/5_0_release_notes.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md
index 964dbf9450..a98f7be067 100644
--- a/guides/source/5_0_release_notes.md
+++ b/guides/source/5_0_release_notes.md
@@ -417,7 +417,7 @@ Please refer to the [Changelog][action-pack] for detailed changes.
`ActionDispatch::IntegrationTest` instead.
([commit](https://github.com/rails/rails/commit/4414c5d1795e815b102571425974a8b1d46d932d))
-* Rails will only generate "weak", instead of strong ETags.
+* Rails generates weak ETags by default.
([Pull Request](https://github.com/rails/rails/pull/17573))
* Controller actions without an explicit `render` call and with no
@@ -453,6 +453,9 @@ Please refer to the [Changelog][action-pack] for detailed changes.
`ActionController::Live`.
([More details in this issue](https://github.com/rails/rails/issues/25581))
+* Introduce `Response#strong_etag=` and `#weak_etag=` and analogous
+ options for `fresh_when` and `stale?`.
+ ([Pull Request](https://github.com/rails/rails/pull/24387))
Action View
-------------