gruf-balancer 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da7ba1903a2be65d647577b24642f3e80f53154920c7749ce74a9af4e11e93cb
4
- data.tar.gz: 7bde6baf890ce9946b0c0e1928b331c1bd9556f3410fbf78fc3ab6cb1bca4900
3
+ metadata.gz: b33d914ca1a77cc5455163bc21594c248043c425ea83c362acc520d55b7fd29a
4
+ data.tar.gz: 3c096755fa4e866f3a12743df05658a87e39e03995044bb594deac6bda87035f
5
5
  SHA512:
6
- metadata.gz: 9f1d38a8f68166702292758d93c8835e8cc40bb3b790ba6a978d8529c1f256d81413cc56b5761792c60a6289fb4c90260bc4dd39f96304fc8640543bb9022614
7
- data.tar.gz: 42bcffa2238c48cc51bb5d727ef9eee791d9035f3d7400489b3710f6a54b41506316a891534b5ab2edab33dfef52d6a26ffc1c30f629f4a8cb739585fdd088dd
6
+ metadata.gz: afa17ca1dc0464ba3d4d4b2ab8b95fb18cb29c3c735d99534f518f7a570ef9f83c620121890700917c6faac7a16cef2e2f1dc0df09eded37fea158cd626b01b4
7
+ data.tar.gz: 8bd49f2c29c74a4dc1771cfd58f6e3d1c30e074dc99f4f5831529e98045165f29684082de7881962878538097b7cb4b445c9e920d0973d5fb9239499e486a25e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@ Changelog for the gruf-balancer gem.
2
2
 
3
3
  ### Pending release
4
4
 
5
+ ### 0.2.0
6
+
7
+ - Add Ruby 3.1 support
8
+ - Drop Ruby 2.6 support
9
+
5
10
  ### 0.1.0
6
11
 
7
12
  - Add Ruby 3.0 support
data/README.md CHANGED
@@ -1,9 +1,12 @@
1
1
  # gruf-balancer - Testing framework for Gruf Clients
2
2
 
3
- [![CircleCI](https://circleci.com/gh/bigcommerce/gruf-balancer/tree/main.svg?style=svg)](https://circleci.com/gh/bigcommerce/gruf-balancer/tree/main) [![Gem Version](https://badge.fury.io/rb/gruf-scientist.svg)](https://badge.fury.io/rb/gruf-balancer) [![Documentation](https://inch-ci.org/github/bigcommerce/gruf-balancer.svg?branch=main)](https://inch-ci.org/github/bigcommerce/gruf-balancer?branch=main)
3
+ [![CircleCI](https://circleci.com/gh/bigcommerce/gruf-balancer/tree/main.svg?style=svg)](https://circleci.com/gh/bigcommerce/gruf-balancer/tree/main) [![Gem Version](https://badge.fury.io/rb/gruf-balancer.svg)](https://badge.fury.io/rb/gruf-balancer)
4
4
 
5
- Provides a framework for testing various outbound `Gruf::Client` calls on a percentage-basis, letting you balance
6
- requests between multiple clients for testing new services, code paths, or networking operations.
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/5644b038f277f345d0b3/maintainability)](https://codeclimate.com/github/bigcommerce/gruf-balancer/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/5644b038f277f345d0b3/test_coverage)](https://codeclimate.com/github/bigcommerce/gruf-balancer/test_coverage)
6
+
7
+ Provides an integration for [gruf](https://github.com/bigcommerce/gruf) Ruby gRPC framework, allowing testing
8
+ various outbound `Gruf::Client` calls on a percentage-basis, letting you balance requests between multiple clients
9
+ for testing new services, code paths, or networking operations.
7
10
 
8
11
  ## Installation
9
12
 
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.files = Dir['README.md', 'CHANGELOG.md', 'CODE_OF_CONDUCT.md', 'lib/**/*', 'gruf-balancer.gemspec']
33
33
  spec.require_paths = ['lib']
34
34
 
35
- spec.required_ruby_version = '>= 2.6'
35
+ spec.required_ruby_version = '>= 2.7'
36
36
 
37
37
  spec.add_development_dependency 'benchmark-memory', '0.1.2'
38
38
  spec.add_development_dependency 'bundler-audit', '>= 0.6'
@@ -17,6 +17,6 @@
17
17
  #
18
18
  module Gruf
19
19
  module Balancer
20
- VERSION = '0.1.0'
20
+ VERSION = '0.2.0'
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gruf-balancer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: benchmark-memory
@@ -219,14 +219,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
219
219
  requirements:
220
220
  - - ">="
221
221
  - !ruby/object:Gem::Version
222
- version: '2.6'
222
+ version: '2.7'
223
223
  required_rubygems_version: !ruby/object:Gem::Requirement
224
224
  requirements:
225
225
  - - ">="
226
226
  - !ruby/object:Gem::Version
227
227
  version: '0'
228
228
  requirements: []
229
- rubygems_version: 3.2.17
229
+ rubygems_version: 3.3.3
230
230
  signing_key:
231
231
  specification_version: 4
232
232
  summary: Allows for percentage-based balancing of gruf client calls