diff --git a/CHANGELOG.md b/CHANGELOG.md index df44da186..9d82af70e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [2.2.0](https://github.com/Gusto/apollo-federation-ruby/compare/v2.1.0...v2.2.0) (2022-02-04) + + +### Features + +* Get Apollo Federation to work with GraphQL 1.13.x ([#160](https://github.com/Gusto/apollo-federation-ruby/issues/160)) ([800001b](https://github.com/Gusto/apollo-federation-ruby/commit/800001baa5a54ab377998c651e7049da254c451b)), closes [#147](https://github.com/Gusto/apollo-federation-ruby/issues/147) + # [2.1.0](https://github.com/Gusto/apollo-federation-ruby/compare/v2.0.3...v2.1.0) (2022-02-02) diff --git a/Gemfile.lock b/Gemfile.lock index e2a87a24c..8f29c4514 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - apollo-federation (2.1.0) + apollo-federation (2.2.0) google-protobuf (~> 3.19) graphql (>= 1.10.14) @@ -42,7 +42,7 @@ GEM debase-ruby_core_source (0.10.9) diff-lcs (1.3) erubi (1.9.0) - google-protobuf (3.19.4) + google-protobuf (3.19.4-x86_64-linux) graphql (1.10.14) 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 c889a866c..fca3b41c0 100644 --- a/gemfiles/graphql_1.10.gemfile.lock +++ b/gemfiles/graphql_1.10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (2.1.0) + apollo-federation (2.2.0) google-protobuf (~> 3.19) graphql (>= 1.10.14) diff --git a/gemfiles/graphql_1.11.gemfile.lock b/gemfiles/graphql_1.11.gemfile.lock index bee33e631..ad5955599 100644 --- a/gemfiles/graphql_1.11.gemfile.lock +++ b/gemfiles/graphql_1.11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (2.1.0) + apollo-federation (2.2.0) google-protobuf (~> 3.19) graphql (>= 1.10.14) diff --git a/gemfiles/graphql_1.12.gemfile.lock b/gemfiles/graphql_1.12.gemfile.lock index ff8980f7a..51a3e7616 100644 --- a/gemfiles/graphql_1.12.gemfile.lock +++ b/gemfiles/graphql_1.12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (2.1.0) + apollo-federation (2.2.0) google-protobuf (~> 3.19) graphql (>= 1.10.14) diff --git a/gemfiles/graphql_1.13.gemfile.lock b/gemfiles/graphql_1.13.gemfile.lock index a14583e9d..f7b6f0d4d 100644 --- a/gemfiles/graphql_1.13.gemfile.lock +++ b/gemfiles/graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - apollo-federation (2.1.0) + apollo-federation (2.2.0) google-protobuf (~> 3.19) graphql (>= 1.10.14) diff --git a/lib/apollo-federation/version.rb b/lib/apollo-federation/version.rb index c0da4bc58..d114a28ec 100644 --- a/lib/apollo-federation/version.rb +++ b/lib/apollo-federation/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ApolloFederation - VERSION = '2.1.0' + VERSION = '2.2.0' end