diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-08-12 20:19:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-12 20:19:41 -0300 |
commit | cd8f5913e8d0c53da227471fe88bb2294f354faf (patch) | |
tree | 21e6159a6aa8bc7c2f6fb99e520d967cd64581f7 /activesupport | |
parent | ebcd02aea4c7654f6f0ab478aace0fd098806c89 (diff) | |
parent | 8b984161d62d2a5167b3a94e2ffd9873b52ee0f6 (diff) | |
download | rails-cd8f5913e8d0c53da227471fe88bb2294f354faf.tar.gz rails-cd8f5913e8d0c53da227471fe88bb2294f354faf.tar.bz2 rails-cd8f5913e8d0c53da227471fe88bb2294f354faf.zip |
Merge pull request #26100 from vipulnsward/changelogs
Pass over changelogs
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 20db6fb048..163fbdbca6 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -40,10 +40,10 @@ *Xavier Noria* -* Allow MessageEncryptor to take advantage of authenticated encryption modes. +* Allow `MessageEncryptor` to take advantage of authenticated encryption modes. AEAD modes like `aes-256-gcm` provide both confidentiality and data - authenticity, eliminating the need to use MessageVerifier to check if the + authenticity, eliminating the need to use `MessageVerifier` to check if the encrypted data has been tampered with. This speeds up encryption/decryption and results in shorter cipher text. @@ -147,7 +147,7 @@ *Sean Griffin* -* Introduce Module#delegate_missing_to. +* Introduce `Module#delegate_missing_to`. When building a decorator, a common pattern emerges: |