apollo-federation 1.1.4 → 1.1.5

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: 21cd789f15e0947e99f00d58223c517a58dc1358760c4372f24e55235d84a270
4
- data.tar.gz: 0bf2d29c1ff4036be133922f7a9bfe1bea0bc925eed1d27e321de191af2403a8
3
+ metadata.gz: c257933d713beb9810af1a42d58a20ad693fa9c37b826bd8e78c45ede30eede6
4
+ data.tar.gz: 38226cd1a90d90cb92275768f5f012ee7e018fd80e5fd1fe78f02431aa235a1c
5
5
  SHA512:
6
- metadata.gz: b139f2366cbc0a90051869c086350d2c7af63beef66376cbc4ce8190aaef422574489a0dd2d5599cfc223dcf7a92bf8191e2f424af31ce9c5a594e70a87d1372
7
- data.tar.gz: 0d6f9257c11937ba747d54c6f903928ffef52a36875d87b67d8e877562fc34ba771545b5e8f81bf6c5a7c9de388bd0a56820a6e7acd34056c1a1699420f6378c
6
+ metadata.gz: b733f8f8f9cdcfc36484e0132d5cb515fa47b208e9ab54a60086b7a1f7b37a3cc4477dcee8e36092de99e5be2169e04be232f33142eb1bc7a8830f13e7c4fb66
7
+ data.tar.gz: 98da906cc451cc60d91acc35226e24dbcc97d2259af4267552c01ace5a2c4b4452edb979496b1ea94c5131d9ba11bbe76d17bea41ff00fbae5281d24318acf08
@@ -1,3 +1,10 @@
1
+ ## [1.1.5](https://github.com/Gusto/apollo-federation-ruby/compare/v1.1.4...v1.1.5) (2020-10-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * pass context as a Hash to GraphQL::Schema.federation_sdl ([c13a94e](https://github.com/Gusto/apollo-federation-ruby/commit/c13a94e6487471b47f05907bd4f83c03fa7e6af7))
7
+
1
8
  ## [1.1.4](https://github.com/Gusto/apollo-federation-ruby/compare/v1.1.3...v1.1.4) (2020-09-25)
2
9
 
3
10
 
@@ -19,7 +19,7 @@ module ApolloFederation
19
19
 
20
20
  def _service
21
21
  schema_class = context.schema.is_a?(GraphQL::Schema) ? context.schema.class : context.schema
22
- { sdl: schema_class.federation_sdl(context: context) }
22
+ { sdl: schema_class.federation_sdl(context: context.to_h) }
23
23
  end
24
24
  end
25
25
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ApolloFederation
4
- VERSION = '1.1.4'
4
+ VERSION = '1.1.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apollo-federation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Noa Elad
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-09-25 00:00:00.000000000 Z
12
+ date: 2020-10-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql