graphql-fragment_cache 1.18.1 → 1.18.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da685d54588830a63cc96b79d9348f496c3d9e114b8bbd39353d89bbf734a2be
4
- data.tar.gz: e97d85a3bb1b1ef33b50f9b784f14d5cf0662a220cb46b3e0195422775ca230a
3
+ metadata.gz: 215c608d8efe694c8ef1a29d9b28017a1d3761e1e94ccd6fc4e0537bda1b8147
4
+ data.tar.gz: 6e6e3844588d2609800fdb1457497274ab2d3ef7f8a451453f7de80392b6035c
5
5
  SHA512:
6
- metadata.gz: 435e71e009c537926c19b2089815b8633a91f0f30caf49fbc45c71d227ff9923867a52c01ed9a0e0e8eff4c51bfa7887371af5ce51281c74bc0be7fcd9566f82
7
- data.tar.gz: 87eadfeba581e7ad08a492ae9c82c6a40406def445b1284943dfa55c320426d7135401761561e3fd7ad1c7c99a987b0a52ec1fc6c5c3a229b8ce5ee5a77e3bc6
6
+ metadata.gz: fb42ddae446779eba82de1b482d244e657bfbde228319c89efe37d3a3a97b0cea77235e3211ca2d82fc885b4f06ffc2933136f739dfe50a6ff3d128d11c8ed16
7
+ data.tar.gz: 85bb1ae8bc9707567757a20fb57bf6824c75b245f79db88fefb8c63e3e3c4fd37f2bbd3cb80c98a394e88f4fb3c13f90f78c27a9db06f02cb65091f5163d2a7e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 1.18.2 (2023-02-21)
6
+
7
+ - [PR#100](https://github.com/DmitryTsepelev/graphql-ruby-fragment_cache/pull/100) Fix an error when `path_cache_key` is nil ([@rince][])
8
+
5
9
  ## 1.18.1 (2023-01-06)
6
10
 
7
11
  - [PR#96](https://github.com/DmitryTsepelev/graphql-ruby-fragment_cache/pull/96) Properly pass arguments to `write_multi` ([@DmitryTsepelev][])
@@ -172,3 +176,4 @@
172
176
  [@daukadolt]: https://github.com/daukadolt
173
177
  [@frostmark]: https://github.com/frostmark
174
178
  [@KTSCode]: https://github.com/KTSCode
179
+ [@rince]: https://github.com/rince
@@ -177,6 +177,8 @@ module GraphQL
177
177
  end
178
178
 
179
179
  def simple_path_cache_key
180
+ return if path_cache_key.nil?
181
+
180
182
  path_cache_key.split("(").first
181
183
  end
182
184
 
@@ -177,6 +177,8 @@ module GraphQL
177
177
  end
178
178
 
179
179
  def simple_path_cache_key
180
+ return if path_cache_key.nil?
181
+
180
182
  path_cache_key.split("(").first
181
183
  end
182
184
 
@@ -177,6 +177,8 @@ module GraphQL
177
177
  end
178
178
 
179
179
  def simple_path_cache_key
180
+ return if path_cache_key.nil?
181
+
180
182
  path_cache_key.split("(").first
181
183
  end
182
184
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GraphQL
4
4
  module FragmentCache
5
- VERSION = "1.18.1"
5
+ VERSION = "1.18.2"
6
6
  end
7
7
  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: 1.18.1
4
+ version: 1.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DmitryTsepelev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-05 00:00:00.000000000 Z
11
+ date: 2023-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql
@@ -235,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  - !ruby/object:Gem::Version
236
236
  version: '0'
237
237
  requirements: []
238
- rubygems_version: 3.4.1
238
+ rubygems_version: 3.4.6
239
239
  signing_key:
240
240
  specification_version: 4
241
241
  summary: Fragment cache for graphql-ruby