diff options
author | Richard Schneeman <richard.schneeman+no-recruiters@gmail.com> | 2018-09-21 09:25:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 09:25:39 -0500 |
commit | b1223458979adc29117ffa1392526c6a166effed (patch) | |
tree | 85d7ed7dc3bd643cc17bafd49dd8e92fada80056 /railties/CHANGELOG.md | |
parent | 40eb569377d46ccac82ac89b02fbeac77b1efe7f (diff) | |
parent | 3424bd83d699bb996aa27d85b970e484d37e3485 (diff) | |
download | rails-b1223458979adc29117ffa1392526c6a166effed.tar.gz rails-b1223458979adc29117ffa1392526c6a166effed.tar.bz2 rails-b1223458979adc29117ffa1392526c6a166effed.zip |
Merge pull request #33932 from schneems/schneems/recyclable-key-support-cache
[close #33907] Error when using "recyclable" cache keys with a store that does not support it
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r-- | railties/CHANGELOG.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 691e599ddb..4342cf6968 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,3 +1,10 @@ +* Raise an error when "recyclable cache keys" are being used by a cache store + that does not explicitly support it. Custom cache keys that do support this feature + can bypass this error by implementing the `supports_cache_versioning?` method on their + class and returning a truthy value. + + *Richard Schneeman* + * Support environment specific credentials file. For `production` environment look first for `config/credentials/production.yml.enc` file that can be decrypted by |