graphql 1.10.8 → 1.10.9
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: faf92321ef690867c10449792e3ac7a512b6c70a8cb98c4abe55701dbab68b5c
|
|
4
|
+
data.tar.gz: c0d7c15c4f74ec0dff027d1e1dbc102d8e0a99973e7d856e2ccb0dfb90dcf9cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0380579063581e40b9c94c64e7c040c0e654e36608ec20079a6d53e34015e8f7aac7a1f4a718c6c9f2200ee0f4a5ce0a1226cf5c1c838aafebb82d1819ca4bb5'
|
|
7
|
+
data.tar.gz: 98a72e31dee880098191b2ad6e3fec2cacc459ee17d4a8e5dab380dd5bd9c2d08c7aa31b6164cce23999c557a78de02f7d0a2f3eb3e5a0ff007b46f032be3fea
|
data/lib/graphql.rb
CHANGED
|
@@ -89,8 +89,8 @@ require "graphql/name_validator"
|
|
|
89
89
|
require "graphql/language"
|
|
90
90
|
require "graphql/analysis"
|
|
91
91
|
require "graphql/tracing"
|
|
92
|
-
require "graphql/execution"
|
|
93
92
|
require "graphql/dig"
|
|
93
|
+
require "graphql/execution"
|
|
94
94
|
require "graphql/schema"
|
|
95
95
|
require "graphql/query"
|
|
96
96
|
require "graphql/directive"
|
|
@@ -8,6 +8,7 @@ module GraphQL
|
|
|
8
8
|
#
|
|
9
9
|
# - No queueing system; ActiveJob should be added
|
|
10
10
|
# - Take care to reload context when re-delivering the subscription. (see {Query#subscription_update?})
|
|
11
|
+
# - Avoid the async ActionCable adapter and use the redis or PostgreSQL adapters instead. Otherwise calling #trigger won't work from background jobs or the Rails console.
|
|
11
12
|
#
|
|
12
13
|
# @example Adding ActionCableSubscriptions to your schema
|
|
13
14
|
# class MySchema < GraphQL::Schema
|
data/lib/graphql/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Mosolgo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04
|
|
11
|
+
date: 2020-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: benchmark-ips
|