gruf 2.13.1 → 2.14.0
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 +5 -0
- data/README.md +1 -1
- data/gruf.gemspec +1 -1
- data/lib/gruf/configuration.rb +1 -1
- data/lib/gruf/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aebffd1712a25d5025e60e61797fd6089417db3d79c5be2de9374b3eeda71571
|
|
4
|
+
data.tar.gz: 82324e0b421ac2d82d2133dcf482746e6c6faaa31f7cbf50de3adaf31ae857ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eae3c9439c9b8e9c6b7d26a30c7485aac0c3919bb174a9b2a8b23b7f863f5f2ddacbb52c87489724ac9e4345214ec585f257f852e94d8af27486ec12bb971aaf
|
|
7
|
+
data.tar.gz: 0fb952bb1e354fc5f756e1263b5a1929e68647df757d5da97d0689aa4f09185abd2cd4f91d023faf56fa75fc9b828098c670cf17a5bd171b2511ae0ae5d4096b
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@ Changelog for the gruf gem. This includes internal history before the gem was ma
|
|
|
2
2
|
|
|
3
3
|
### Pending release
|
|
4
4
|
|
|
5
|
+
### 2.14.0
|
|
6
|
+
|
|
7
|
+
- Set default client host to 0.0.0.0:9001 (same as default server host)
|
|
8
|
+
- Add support for Ruby 3.1
|
|
9
|
+
|
|
5
10
|
### 2.13.1
|
|
6
11
|
|
|
7
12
|
- Fix issue with race condition in server starts where servers may fail to bind connections and never reach
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ up fast and efficiently at scale. Some of its features include:
|
|
|
17
17
|
still preserving gRPC BadStatus codes
|
|
18
18
|
* Server and client execution timings in responses
|
|
19
19
|
|
|
20
|
-
gruf currently has active support for gRPC 1.10.x+. gruf is compatible and tested with Ruby 2.
|
|
20
|
+
gruf currently has active support for gRPC 1.10.x+. gruf is compatible and tested with Ruby 2.6-3.1.
|
|
21
21
|
gruf is also not [Rails](https://github.com/rails/rails)-specific, and can be used in any Ruby framework
|
|
22
22
|
(such as [Grape](https://github.com/ruby-grape/grape) or [dry-rb](https://dry-rb.org/), for instance).
|
|
23
23
|
|
data/gruf.gemspec
CHANGED
data/lib/gruf/configuration.rb
CHANGED
data/lib/gruf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gruf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shaun McCormick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-04-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler-audit
|
|
@@ -375,14 +375,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
375
375
|
version: '2.6'
|
|
376
376
|
- - "<"
|
|
377
377
|
- !ruby/object:Gem::Version
|
|
378
|
-
version: '3.
|
|
378
|
+
version: '3.2'
|
|
379
379
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
380
380
|
requirements:
|
|
381
381
|
- - ">="
|
|
382
382
|
- !ruby/object:Gem::Version
|
|
383
383
|
version: '0'
|
|
384
384
|
requirements: []
|
|
385
|
-
rubygems_version: 3.3.
|
|
385
|
+
rubygems_version: 3.3.7
|
|
386
386
|
signing_key:
|
|
387
387
|
specification_version: 4
|
|
388
388
|
summary: gRPC Ruby Framework
|