From 5a304180d90be7be6ffb6794778d7cd06964f0b7 Mon Sep 17 00:00:00 2001 From: Andrey Novikov Date: Thu, 3 Aug 2023 19:51:44 +0900 Subject: [PATCH] 1.1.6: Redis.rb v5 compatibility --- CHANGELOG.md | 9 +++++++++ lib/graphql/anycable/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3c3b53..7ac6bba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## 1.1.6 - 2023-08-03 + +### Fixed + +- Fix empty operation name handling when using redis-client or redis.rb v5. [@ilyasgaraev] ([#34](https://github.com/anycable/graphql-anycable/pull/34)) +- Fix deprecation warnings for redis.rb v4.8+ and support for redis.rb v5. [@smasry] ([#29](https://github.com/anycable/graphql-anycable/pull/29)) + ## 1.1.5 - 2022-10-26 - Fix that deprecation warning about `config.use_client_provided_uniq_id` again, so it can be issued outside of Rails. [@gsamokovarov] ([#27](https://github.com/anycable/graphql-anycable/pull/27)) @@ -168,6 +175,8 @@ Technical release to test publishing via GitHub Actions. Initial version: store subscriptions on redis, re-execute queries in sync. [@Envek] +[@ilyasgaraev]: https://github.com/ilyasgaraev "Ilyas Garaev" +[@smasry]: https://github.com/smasry "Samer Masry" [@gsamokovarov]: https://github.com/gsamokovarov "Genadi Samokovarov" [@bibendi]: https://github.com/bibendi "Misha Merkushin" [@FX-HAO]: https://github.com/FX-HAO "Fuxin Hao" diff --git a/lib/graphql/anycable/version.rb b/lib/graphql/anycable/version.rb index 3d4555f..6105bd6 100644 --- a/lib/graphql/anycable/version.rb +++ b/lib/graphql/anycable/version.rb @@ -2,6 +2,6 @@ module GraphQL module AnyCable - VERSION = "1.1.5" + VERSION = "1.1.6" end end