Skip to content

Commit 533345f

Browse files
build(deps): exclude graphql-ruby 2.5.20
graphql-ruby 2.5.20 breaks ElasticGraph resolver methods due to a change in how lookahead is passed to resolver methods. This excludes version 2.5.20 from our dependency constraint until we can update ElasticGraph to support the new interface. Addresses #1047.
1 parent 3055fbe commit 533345f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ PATH
5353
apollo-federation (~> 3.10, >= 3.10.3)
5454
elasticgraph-graphql (= 1.1.1.pre)
5555
elasticgraph-support (= 1.1.1.pre)
56-
graphql (~> 2.5.19)
56+
graphql (~> 2.5.19, != 2.5.20)
5757

5858
PATH
5959
remote: elasticgraph-datastore_core
@@ -91,7 +91,7 @@ PATH
9191
base64 (~> 0.3)
9292
elasticgraph-datastore_core (= 1.1.1.pre)
9393
elasticgraph-schema_artifacts (= 1.1.1.pre)
94-
graphql (~> 2.5.19)
94+
graphql (~> 2.5.19, != 2.5.20)
9595

9696
PATH
9797
remote: elasticgraph-health_check
@@ -170,7 +170,7 @@ PATH
170170
elasticgraph-query_registry (1.1.1.pre)
171171
elasticgraph-graphql (= 1.1.1.pre)
172172
elasticgraph-support (= 1.1.1.pre)
173-
graphql (~> 2.5.19)
173+
graphql (~> 2.5.19, != 2.5.20)
174174
rake (~> 13.3, >= 13.3.1)
175175

176176
PATH
@@ -194,7 +194,7 @@ PATH
194194
elasticgraph-indexer (= 1.1.1.pre)
195195
elasticgraph-schema_artifacts (= 1.1.1.pre)
196196
elasticgraph-support (= 1.1.1.pre)
197-
graphql (~> 2.5.19)
197+
graphql (~> 2.5.19, != 2.5.20)
198198
rake (~> 13.3, >= 13.3.1)
199199

200200
PATH

elasticgraph-apollo/elasticgraph-apollo.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Gem::Specification.new do |spec|
4343

4444
spec.add_dependency "elasticgraph-graphql", ElasticGraph::VERSION
4545
spec.add_dependency "elasticgraph-support", ElasticGraph::VERSION
46-
spec.add_dependency "graphql", "~> 2.5.19"
46+
spec.add_dependency "graphql", "~> 2.5.19", "!= 2.5.20"
4747
spec.add_dependency "apollo-federation", "~> 3.10", ">= 3.10.3"
4848

4949
# Note: technically, this is not purely a development dependency, but since `eg-schema_def`

elasticgraph-graphql/elasticgraph-graphql.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Gem::Specification.new do |spec|
4444
spec.add_dependency "base64", "~> 0.3"
4545
spec.add_dependency "elasticgraph-datastore_core", ElasticGraph::VERSION
4646
spec.add_dependency "elasticgraph-schema_artifacts", ElasticGraph::VERSION
47-
spec.add_dependency "graphql", "~> 2.5.19"
47+
spec.add_dependency "graphql", "~> 2.5.19", "!= 2.5.20"
4848

4949
spec.add_development_dependency "elasticgraph-admin", ElasticGraph::VERSION
5050
spec.add_development_dependency "elasticgraph-elasticsearch", ElasticGraph::VERSION

elasticgraph-query_registry/elasticgraph-query_registry.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Gem::Specification.new do |spec|
4343

4444
spec.add_dependency "elasticgraph-graphql", ElasticGraph::VERSION
4545
spec.add_dependency "elasticgraph-support", ElasticGraph::VERSION
46-
spec.add_dependency "graphql", "~> 2.5.19"
46+
spec.add_dependency "graphql", "~> 2.5.19", "!= 2.5.20"
4747
spec.add_dependency "rake", "~> 13.3", ">= 13.3.1"
4848

4949
spec.add_development_dependency "elasticgraph-elasticsearch", ElasticGraph::VERSION

elasticgraph-schema_definition/elasticgraph-schema_definition.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Gem::Specification.new do |spec|
4545
spec.add_dependency "elasticgraph-indexer", ElasticGraph::VERSION # needed since we validate that scalar `prepare_for_indexing_with` options are valid (which loads indexing preparer adapters)
4646
spec.add_dependency "elasticgraph-schema_artifacts", ElasticGraph::VERSION
4747
spec.add_dependency "elasticgraph-support", ElasticGraph::VERSION
48-
spec.add_dependency "graphql", "~> 2.5.19"
48+
spec.add_dependency "graphql", "~> 2.5.19", "!= 2.5.20"
4949
spec.add_dependency "rake", "~> 13.3", ">= 13.3.1"
5050

5151
spec.add_development_dependency "elasticgraph-admin", ElasticGraph::VERSION

0 commit comments

Comments
 (0)