From 0cff4fb47b8e15162027adfcbc604e9974603013 Mon Sep 17 00:00:00 2001 From: Andrey Novikov Date: Thu, 28 Jul 2022 19:39:18 +0900 Subject: [PATCH] 1.1.4: Fix deprecation warning for `use_client_provided_uniq_id` --- CHANGELOG.md | 6 ++++++ lib/graphql/anycable/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b97e55..05129a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## 1.1.4 - 2022-07-28 + +- Fix deprecation warning about using client-side channel ids shown even if deprecated functionality was disabled in application code (not via config file or environment variable). [@gsamokovarov] ([#26](https://github.com/anycable/graphql-anycable/pull/26)) + + However, now deprecation warning won't be shown if graphql-anycable is used not in Ruby on Rails application. + ## 1.1.3 - 2022-03-11 ### Changed diff --git a/lib/graphql/anycable/version.rb b/lib/graphql/anycable/version.rb index 0182cf4..6fa5bc1 100644 --- a/lib/graphql/anycable/version.rb +++ b/lib/graphql/anycable/version.rb @@ -2,6 +2,6 @@ module GraphQL module AnyCable - VERSION = "1.1.3" + VERSION = "1.1.4" end end