anycable 1.1.0.rc1 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -1
  3. data/README.md +2 -0
  4. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19f46f07ed855f434aa4e3747d30e7848a8fa8bfd65de1fae1c72fc5c3878a2d
4
- data.tar.gz: ab8c80c2bce9a92205dca4da225dde39f96a44a48c796442726a50756eb63c13
3
+ metadata.gz: f5c9e53beeb7b9a7c049c7c749b3cbf181ce33aed9c2609fe828839bb5f8989e
4
+ data.tar.gz: 0d75ac951ea5b830ff29b5abedc6004382757add7f526c02e216fabe428f643a
5
5
  SHA512:
6
- metadata.gz: bba47915081eeb4356956514f123fa7eaddc18846890f2eac3e5d46b1823248a9ec7349c6ea609a86625d232c4d28ef57d8f46a1a2698ff7d5c02ba2c84487b4
7
- data.tar.gz: 1c7c23283b2cb014797171933dde6e2748b47c14f360052be739334fb899ddc66b7941f67dd15cb9f1ba6ac7a3200294dde968c415d97707baefc88bbde88f33
6
+ metadata.gz: ac6e5b03826298dd6ef50b56712a2e030ed6a2513018467daa501e9b51eeab4f6203d32628666ec08b50ad2e2243d7171d1b968b74cb5db64c27dff998408c7f
7
+ data.tar.gz: 0a2db460608013ee27a1e5ddec03fa99aa2b60e1a6f7af0b24a306a60f473a0c7519bbdd7ec2a34eddf45356c48919cf057c2639979a3f4ecad63172d2f67981
data/CHANGELOG.md CHANGED
@@ -2,7 +2,27 @@
2
2
 
3
3
  ## master
4
4
 
5
- ## 1.1.0.rc1
5
+ ## 1.1.3 (2021-09-29)
6
+
7
+ - Added support for type coercion from Anyway Config 2.2. ([@palkan][])
8
+
9
+ ## 1.1.2 (2021-09-10) 🤵👰
10
+
11
+ - Improved gRPC server args support. ([@palkan][])
12
+
13
+ Add ability to declare gRPC server args without namespacing (i.e., `"max_connection_age_ms"` instead of `"grpc.max_connection_age_ms"`). That makes it possible to use ENV vars to provide the gRPC configuration.
14
+
15
+ ## 1.1.1 (2021-06-05)
16
+
17
+ - Fixed error message when RPC implementation is missing. ([@palkan][])
18
+
19
+ We haven't extracted `anycable-grpc` yet.
20
+
21
+ ## 1.1.0 🚸 (2021-06-01)
22
+
23
+ - No changes since 1.1.0.rc1.
24
+
25
+ ## 1.1.0.rc1 (2021-05-12)
6
26
 
7
27
  - **BREAKING** Move middlewares from gRPC interceptors to custom implementation. ([@palkan][])
8
28
 
data/README.md CHANGED
@@ -12,6 +12,8 @@ AnyCable allows you to use any WebSocket server (written in any language) as a r
12
12
 
13
13
  AnyCable uses the same protocol as ActionCable, so you can use its [JavaScript client](https://www.npmjs.com/package/actioncable) without any monkey-patching.
14
14
 
15
+ > [AnyCable Pro](https://docs.anycable.io/pro) has been launched 🚀
16
+
15
17
  <a href="https://evilmartians.com/">
16
18
  <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54"></a>
17
19
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anycable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0.rc1
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - palkan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-12 00:00:00.000000000 Z
11
+ date: 2021-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: anycable-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.0.rc1
19
+ version: 1.1.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 1.1.0.rc1
26
+ version: 1.1.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: grpc
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -69,11 +69,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
69
  version: 2.6.0
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - ">"
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
- version: 1.3.1
74
+ version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.2.15
76
+ rubygems_version: 3.2.22
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: AnyCable is a polyglot replacement for ActionCable-compatible servers