Releases: anycable/graphql-anycable
Bump 1.3.1
v1.3.1 Bump 1.3.1
Bump 1.3.0
1.1.7: Depend on anycable-core gem
Changed
-
Depend on
anycable-coregem instead ofanycable.This allows to avoid installing
grpcgem when using alternate AnyCable broadcasting adapters (like HTTP).See #43 for details.
1.2.0: Stats, anycable-core dependency, dropping legacy
Added
-
Stats collection about subscriptions, channels, etc via
GraphQL::AnyCable.stats. [@prog-supdex] (#37)See Stats section in README for details.
-
Configuration option
redis_prefixfor namespacing Redis keys. [@prog-supdex] (#36)
Changed
-
Depend on
anycable-coregem instead ofanycable.This allows to avoid installing
grpcgem when using alternate AnyCable broadcasting adapters (like HTTP).See #43 for details.
Removed
-
Handling of client-provided channel identifiers. BREAKING CHANGE
Please make sure that you have changed your channel
disconnectedmethod to pass channel instance to GraphQL-AnyCable'sdelete_channel_subscriptionsmethod.
See release notes for version 1.1.0 for details. -
Handling of pre-1.0 subscriptions data.
If you're still using version 0.5 or below, please upgrade to 1.0 or 1.1 first with
handle_legacy_subscriptionssetting enabled.
See release notes for version 1.0.0 for details.
1.1.6: Redis.rb v5 compatibility
Fixed
- Fix empty operation name handling when using redis-client or redis.rb v5. [@ilyasgaraev] (#34)
- Fix deprecation warnings for redis.rb v4.8+ and support for redis.rb v5. [@smasry] (#29)
1.1.5: Fix deprecation warning for `use_client_provided_uniq_id` (again)
- Fix that deprecation warning about
config.use_client_provided_uniq_idagain, so it can be issued outside of Rails. [@gsamokovarov] (#27)
1.1.4: Fix deprecation warning for `use_client_provided_uniq_id`
-
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)
However, now deprecation warning won't be shown if graphql-anycable is used not in Ruby on Rails application.
1.1.3: Allow using with GraphQL-Ruby 2.x
Changed
- Allow using graphql-anycable with GraphQL-Ruby 2.x (it seem to be already compatible). [@Envek]