graphql-fragment_cache 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/graphql/fragment_cache/railtie.rb +1 -1
- data/lib/graphql/fragment_cache/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5ab2d2bd11b30a0c40476378f1b9ad0c064ccffec7f4595f9d81dbb0ad85eac
|
|
4
|
+
data.tar.gz: 44c09dce73b8836f656f186291ed4a45b9cdab6c0ed8844dea38bb9fe9b276bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c225d6650aa383253eda036366f92d9a9ae2109c873cc9f4f69e9b736367c31c9c7b0c59c42ad830f4554184af75016239a0c3a739d2e3f1b4621fcbed9814e1
|
|
7
|
+
data.tar.gz: 556d2eced9aef328be63f06de9404e78e958a06f5cba2394c1fda4d449c63d04399730978767a40a7b4544b41418f1bab96384aafddd819cd4c6bbad79b62af0
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 0.1.4 (2020-04-25)
|
|
6
|
+
|
|
7
|
+
- Fix railtie to set up null store for tests ([@DmitryTsepelev][])
|
|
8
|
+
|
|
5
9
|
## 0.1.3 (2020-04-24)
|
|
6
10
|
|
|
7
11
|
- [PR#17](https://github.com/DmitryTsepelev/graphql-ruby-fragment_cache/pull/17) Properly build cache keys based on input arguments ([@DmitryTsepelev][])
|
|
@@ -25,7 +25,7 @@ module GraphQL
|
|
|
25
25
|
config.graphql_fragment_cache = Config
|
|
26
26
|
|
|
27
27
|
if ENV["RACK_ENV"] == "test" || ENV["RAILS_ENV"] == "test"
|
|
28
|
-
|
|
28
|
+
config.graphql_fragment_cache.store = :null_store
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphql-fragment_cache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- DmitryTsepelev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04-
|
|
11
|
+
date: 2020-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphql
|