Skip to content

Commit

Permalink
1.1.0: Allow not to rely on client-generated channel ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Envek committed Nov 17, 2021
1 parent a1c26e7 commit 8589687
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## 1.1.0 - 2021-11-17

### Added

- Support for generating unique channel IDs server-side and storing them in the channel states.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ GraphQL-AnyCable uses [anyway_config] to configure itself. There are several pos
GRAPHQL_ANYCABLE_SUBSCRIPTION_EXPIRATION_SECONDS=604800
GRAPHQL_ANYCABLE_USE_REDIS_OBJECT_ON_CLEANUP=true
GRAPHQL_ANYCABLE_HANDLE_LEGACY_SUBSCRIPTIONS=false
GRAPHQL_ANYCABLE_USE_CLIENT_PROVIDED_UNIQ_ID=false
```
2. YAML configuration files:
Expand All @@ -151,6 +152,7 @@ GraphQL-AnyCable uses [anyway_config] to configure itself. There are several pos
subscription_expiration_seconds: 300 # 5 minutes
use_redis_object_on_cleanup: false # For restricted redis installations
handle_legacy_subscriptions: false # For seamless upgrade from pre-1.0 versions
use_client_provided_uniq_id: false # To avoid problems with non-uniqueness of Apollo channel identifiers
```
3. Configuration from your application code:
Expand Down
2 changes: 1 addition & 1 deletion lib/graphql/anycable/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module GraphQL
module AnyCable
VERSION = "1.0.1"
VERSION = "1.1.0"
end
end

0 comments on commit 8589687

Please sign in to comment.