anycable-rails 1.1.0.rc1 → 1.1.0.rc1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -1
- data/README.md +2 -1
- data/lib/anycable/rails/config.rb +3 -0
- data/lib/anycable/rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33403e16cdec9dcc23b463e6545da2fc099e553904c1613f33325fa0a859a648
|
|
4
|
+
data.tar.gz: 02cba22030f78425799d289769b49520ca660a38142637c6df5afe3a8b2f4310
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1942550b2959eeec5fa8688489027bb127b25b8a564d2d5b2a004bd6e762ef100a698398af22f5e3af12b203d2588046f375a1fc9b5ecc98cbafb0dc5c6545f1
|
|
7
|
+
data.tar.gz: 677fb04bdf6256b8f5b93c8088453584b31131dbcf69fa63991b7a9246fe795cb756e2e5c4b13207505fd9df903946435e295a9ef9849b5f62c5d26af0dd57ed
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
-
## 1.1.0.rc1
|
|
5
|
+
## 1.1.0.rc1.1 (2021-05-12)
|
|
6
|
+
|
|
7
|
+
- Fixed config loading regression introduced in 1.1.0.rc1.
|
|
8
|
+
|
|
9
|
+
## 1.1.0.rc1 (2021-05-12)
|
|
10
|
+
|
|
11
|
+
- Adding `anycable` or `grpc` gem as an explicit dependency is required.
|
|
12
|
+
|
|
13
|
+
Now, `anycable-rails` depends on `anycable-core`, which doesn't include gRPC server implementation.
|
|
14
|
+
You should either add `anycable` or `grpc` (>= 1.37) gem as an explicit dependency.
|
|
6
15
|
|
|
7
16
|
- Add option to embed AnyCable RPC into a Rails server process. ([@palkan][])
|
|
8
17
|
|
data/README.md
CHANGED
|
@@ -26,9 +26,10 @@ You can even use Action Cable in development and not be afraid of [compatibility
|
|
|
26
26
|
|
|
27
27
|
## Usage
|
|
28
28
|
|
|
29
|
-
Add `anycable-rails`
|
|
29
|
+
Add `anycable-rails` and `anycable` gems to your Gemfile:
|
|
30
30
|
|
|
31
31
|
```ruby
|
|
32
|
+
gem "anycable"
|
|
32
33
|
gem "anycable-rails"
|
|
33
34
|
|
|
34
35
|
# when using Redis broadcast adapter
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require "anycable/config"
|
|
4
|
+
# Make sure Rails extensions for Anyway Config are loaded
|
|
5
|
+
# See https://github.com/anycable/anycable-rails/issues/63
|
|
6
|
+
require "anyway/rails"
|
|
4
7
|
|
|
5
8
|
# Extend AnyCable configuration with:
|
|
6
9
|
# - `access_logs_disabled` (defaults to true) — whether to print Started/Finished logs
|