File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Features:
27
27
- [ #1340 ] ( https://github.com/rails-api/active_model_serializers/pull/1340 ) Add support for resource-level meta. (@beauby )
28
28
29
29
Fixes:
30
+ - [ #1480 ] ( https://github.com/rails-api/active_model_serializers/pull/1480 ) Fix setting of cache_store from Rails configuration. (@bf4 )
31
+ Fix uninentional mutating of value in memory cache store. (@groyoh )
30
32
- [ #1622 ] ( https://github.com/rails-api/active_model_serializers/pull/1622 ) Fragment cache changed from per-record to per-serializer.
31
33
Now, two serializers that use the same model may be separately cached. (@lserman )
32
34
- [ #1478 ] ( https://github.com/rails-api/active_model_serializers/pull/1478 ) Cache store will now be correctly set when serializers are
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ module ActiveModelSerializers
5
5
config . secret_key_base = 'abc123'
6
6
config . active_support . test_order = :random
7
7
config . action_controller . perform_caching = true
8
- # TODO: figure out why turning on the memory cache changes
9
- # the result of the CacheTest#test_associations_cache_when_updated
10
- # and if it is more correct or less correct.
11
8
config . action_controller . cache_store = :memory_store
12
9
end
13
10
You can’t perform that action at this time.
0 commit comments