grpc 1.7.1-x64-mingw32 → 1.7.3-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4be72cf0fce8f99f9f11f1364c9e5d0e0a149232
4
- data.tar.gz: 857cd45cc6120f54bf53b27e89d4ff3ca491308f
2
+ SHA256:
3
+ metadata.gz: 9579d75e9448de876a9d8f9b8e6ead20b95a34c63ab57808c18350016996d986
4
+ data.tar.gz: d60524a1d39662833f57a76926fb0bd1c009e2080c86b7aa595835ff94aed5e0
5
5
  SHA512:
6
- metadata.gz: 19677a756739442ab183d0a0903538703b13a569d363a21f08eaf7dbac20679c04b40e48e93c92dddc360a5e42d7cd039535510ada8fd452ecfc17fe43a1ce4f
7
- data.tar.gz: 50172df5ea50dc3262c01634994eed2d872a9765dd7984f978b4ce4f7208a0bd12b489b78deb23514253268021343ddbb884233fe6b13a8562f4dab822db2df6
6
+ metadata.gz: d3032106a7e08c45c262900bdbae12dc8931ce3b10e929a4ea52b2db957ab785c64d58f2630bd13937d9c59318f8ce83371bcb26897d28449af33a05924ca857
7
+ data.tar.gz: 415df04bb2bf9cde7c0262491b7389d7c391d784868368ab509c5531cd55916553d8688fcdb06510a21db12bb4f27f79b18d1afbb282dbfc52ee9068d148601d
Binary file
Binary file
@@ -41,7 +41,7 @@ module GRPC
41
41
  # @param [Method] method
42
42
  # @param [Hash] metadata
43
43
  #
44
- def request_response(request:, call:, method:, metadata:)
44
+ def request_response(request: nil, call: nil, method: nil, metadata: nil)
45
45
  GRPC.logger.debug "Intercepting request response method #{method}" \
46
46
  " for request #{request} with call #{call} and metadata: #{metadata}"
47
47
  yield
@@ -55,7 +55,7 @@ module GRPC
55
55
  # @param [Method] method
56
56
  # @param [Hash] metadata
57
57
  #
58
- def client_streamer(requests:, call:, method:, metadata:)
58
+ def client_streamer(requests: nil, call: nil, method: nil, metadata: nil)
59
59
  GRPC.logger.debug "Intercepting client streamer method #{method}" \
60
60
  " for requests #{requests} with call #{call} and metadata: #{metadata}"
61
61
  yield
@@ -69,7 +69,7 @@ module GRPC
69
69
  # @param [Method] method
70
70
  # @param [Hash] metadata
71
71
  #
72
- def server_streamer(request:, call:, method:, metadata:)
72
+ def server_streamer(request: nil, call: nil, method: nil, metadata: nil)
73
73
  GRPC.logger.debug "Intercepting server streamer method #{method}" \
74
74
  " for request #{request} with call #{call} and metadata: #{metadata}"
75
75
  yield
@@ -83,7 +83,7 @@ module GRPC
83
83
  # @param [Method] method
84
84
  # @param [Hash] metadata
85
85
  #
86
- def bidi_streamer(requests:, call:, method:, metadata:)
86
+ def bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil)
87
87
  GRPC.logger.debug "Intercepting bidi streamer method #{method}" \
88
88
  " for requests #{requests} with call #{call} and metadata: #{metadata}"
89
89
  yield
@@ -102,7 +102,7 @@ module GRPC
102
102
  # @param [GRPC::ActiveCall::SingleReqView] call
103
103
  # @param [Method] method
104
104
  #
105
- def request_response(request:, call:, method:)
105
+ def request_response(request: nil, call: nil, method: nil)
106
106
  GRPC.logger.debug "Intercepting request response method #{method}" \
107
107
  " for request #{request} with call #{call}"
108
108
  yield
@@ -114,7 +114,7 @@ module GRPC
114
114
  # @param [GRPC::ActiveCall::MultiReqView] call
115
115
  # @param [Method] method
116
116
  #
117
- def client_streamer(call:, method:)
117
+ def client_streamer(call: nil, method: nil)
118
118
  GRPC.logger.debug "Intercepting client streamer method #{method}" \
119
119
  " with call #{call}"
120
120
  yield
@@ -127,7 +127,7 @@ module GRPC
127
127
  # @param [GRPC::ActiveCall::SingleReqView] call
128
128
  # @param [Method] method
129
129
  #
130
- def server_streamer(request:, call:, method:)
130
+ def server_streamer(request: nil, call: nil, method: nil)
131
131
  GRPC.logger.debug "Intercepting server streamer method #{method}" \
132
132
  " for request #{request} with call #{call}"
133
133
  yield
@@ -140,7 +140,7 @@ module GRPC
140
140
  # @param [GRPC::ActiveCall::MultiReqView] call
141
141
  # @param [Method] method
142
142
  #
143
- def bidi_streamer(requests:, call:, method:)
143
+ def bidi_streamer(requests: nil, call: nil, method: nil)
144
144
  GRPC.logger.debug "Intercepting bidi streamer method #{method}" \
145
145
  " for requests #{requests} with call #{call}"
146
146
  yield
Binary file
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.7.1'
17
+ VERSION = '1.7.3'
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.3
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2017-10-31 00:00:00.000000000 Z
11
+ date: 2017-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -340,7 +340,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
340
340
  version: '0'
341
341
  requirements: []
342
342
  rubyforge_project:
343
- rubygems_version: 2.6.14
343
+ rubygems_version: 2.7.3
344
344
  signing_key:
345
345
  specification_version: 4
346
346
  summary: GRPC system in Ruby