graphql-persisted_queries 1.2.3 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49c69f6c97fdc5fa85c34915dc2f214fc38d5cbc0c22051cac9c3c2eecce27e3
4
- data.tar.gz: c0579d6c06361875fe255c96eae906a9317a6f993fbefd637ac181c2dc985fac
3
+ metadata.gz: 14b9f8eee9d0aefb838939b35f5ef59595e752f45aaf91eef16d43c3e2ed7b79
4
+ data.tar.gz: 365916fb01423286c20c8272339f475aca06b3647bd20a7c9e5a7a1269d98a87
5
5
  SHA512:
6
- metadata.gz: 61a3c88f6f03ccfd956d50ccd49dca4a9f2b51f13fb45672f226b8b112401944f14f974f692a3dd60b120d9bc6903efe017b9f5be62ec9f0a5d17919f0f881d9
7
- data.tar.gz: 5b9f8cac85ee76c5091e3d6ae87c58ee45cc1048831c480b2a06edc84a26aa8432030da2318a50c0b72f630fa12db6c05a16751121e1f741d1ed9b44b25d4297
6
+ metadata.gz: f1bfe7b99038394699faeabc5184f2150ed5144a54c88fd8080ed6f6deca7822d6ea0ce6cee8ee3cad2eabdb3978951d6989ff9a91e0429a0c967d1cf9459f05
7
+ data.tar.gz: bd1b40c0d63eb69aeed81cc361d7c6d9932c9d97a48e423a317bd426bfe0fbd3b47d8d27262b4c86c66695f53108ddcd3418b94cacf9c60630267f5919cbb1ed
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 1.2.4 (2021-06-07)
6
+
7
+ - [PR#50](https://github.com/DmitryTsepelev/graphql-ruby-persisted_queries/pull/50) Support empty redis_client arg on redis with locale cache ([@louim][])
8
+
5
9
  ## 1.2.3 (2021-05-14)
6
10
 
7
11
  - [PR#49](https://github.com/DmitryTsepelev/graphql-ruby-persisted_queries/pull/49) Allow nil redis_client with ENV["REDIS_URL"] ([@louim][])
@@ -8,7 +8,7 @@ module GraphQL
8
8
  DEFAULT_REDIS_ADAPTER_CLASS = RedisStoreAdapter
9
9
  DEFAULT_MEMORY_ADAPTER_CLASS = MemoryStoreAdapter
10
10
 
11
- def initialize(redis_client:, expiration: nil, namespace: nil, redis_adapter_class: nil,
11
+ def initialize(redis_client: {}, expiration: nil, namespace: nil, redis_adapter_class: nil,
12
12
  memory_adapter_class: nil)
13
13
  redis_adapter_class ||= DEFAULT_REDIS_ADAPTER_CLASS
14
14
  memory_adapter_class ||= DEFAULT_MEMORY_ADAPTER_CLASS
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GraphQL
4
4
  module PersistedQueries
5
- VERSION = "1.2.3"
5
+ VERSION = "1.2.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-persisted_queries
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - DmitryTsepelev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-14 00:00:00.000000000 Z
11
+ date: 2021-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql