diff --git a/CHANGELOG.md b/CHANGELOG.md index 69d75cc54..7e9cd6234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.1.5](https://github.com/Gusto/apollo-federation-ruby/compare/v1.1.4...v1.1.5) (2020-10-29) + + +### Bug Fixes + +* pass context as a Hash to GraphQL::Schema.federation_sdl ([c13a94e](https://github.com/Gusto/apollo-federation-ruby/commit/c13a94e6487471b47f05907bd4f83c03fa7e6af7)) + ## [1.1.4](https://github.com/Gusto/apollo-federation-ruby/compare/v1.1.3...v1.1.4) (2020-09-25) diff --git a/Gemfile.lock b/Gemfile.lock index e366b31c6..c3a43ebe7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - apollo-federation (1.1.4) + apollo-federation (1.1.5) google-protobuf (~> 3.7) graphql (>= 1.9.8) @@ -42,7 +42,7 @@ GEM debase-ruby_core_source (0.10.9) diff-lcs (1.3) erubi (1.9.0) - google-protobuf (3.12.4-x86_64-linux) + google-protobuf (3.13.0-x86_64-linux) graphql (1.10.10) i18n (1.8.5) concurrent-ruby (~> 1.0) diff --git a/gemfiles/graphql_1.10.gemfile.lock b/gemfiles/graphql_1.10.gemfile.lock index f20de7ea0..faeb6bd36 100644 --- a/gemfiles/graphql_1.10.gemfile.lock +++ b/gemfiles/graphql_1.10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (1.1.4) + apollo-federation (1.1.5) google-protobuf (~> 3.7) graphql (>= 1.9.8) diff --git a/gemfiles/graphql_1.11.gemfile.lock b/gemfiles/graphql_1.11.gemfile.lock index ddb2c2221..f2baca08c 100644 --- a/gemfiles/graphql_1.11.gemfile.lock +++ b/gemfiles/graphql_1.11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (1.1.4) + apollo-federation (1.1.5) google-protobuf (~> 3.7) graphql (>= 1.9.8) diff --git a/gemfiles/graphql_1.9.gemfile.lock b/gemfiles/graphql_1.9.gemfile.lock index 9d576754b..85c902eda 100644 --- a/gemfiles/graphql_1.9.gemfile.lock +++ b/gemfiles/graphql_1.9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (1.1.4) + apollo-federation (1.1.5) google-protobuf (~> 3.7) graphql (>= 1.9.8) diff --git a/lib/apollo-federation/version.rb b/lib/apollo-federation/version.rb index 795ef62ba..0273da086 100644 --- a/lib/apollo-federation/version.rb +++ b/lib/apollo-federation/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ApolloFederation - VERSION = '1.1.4' + VERSION = '1.1.5' end