diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-07-24 10:25:57 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2017-07-24 10:25:57 +0200 |
commit | 2ee46434e0e8f81b1a852d7b190a2f7b0ba67228 (patch) | |
tree | 44317971856a0c836b5294ac9a269de46337a0f5 | |
parent | e4bf6b05e2105c8e11defe67e42d5693a9b1c666 (diff) | |
download | rails-2ee46434e0e8f81b1a852d7b190a2f7b0ba67228.tar.gz rails-2ee46434e0e8f81b1a852d7b190a2f7b0ba67228.tar.bz2 rails-2ee46434e0e8f81b1a852d7b190a2f7b0ba67228.zip |
[ci skip] Remove superfluous paragraphs; fully qualify constants.
The paragraphs retread ground covered by the title and the usage examples,
so let's just remove them.
[ Assain Jaleel & Kasper Timm Hansen ]
-rw-r--r-- | activesupport/CHANGELOG.md | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index ef46bc06e0..457eb84a62 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,11 +1,5 @@ -* Add purpose and expiry support to `MessageVerifier` & `MessageEncryptor`. - - Messages generated using `MessageVerifier` and `MessageEncryptor` now - support expiry and purpose. You can set the purpose of the message using - the key :purpose, and likewise, the expiration using :expires_at or :expires_in. - - This ensures that the message is used only for its intended purpose and also - while it hasn't expired. +* Add purpose and expiry support to `ActiveSupport::MessageVerifier` & + `ActiveSupport::MessageEncryptor`. For instance, to ensure a message is only usable for one intended purpose: |