grpc 1.7.1 → 1.7.2

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
2
  SHA1:
3
- metadata.gz: 4f2a634802fddddda190232562f3eb121d240786
4
- data.tar.gz: 6658d87f05975a09f99cd2b5c1aeb7f092591c06
3
+ metadata.gz: a40959f1aae71a9912bf0a29c194d4ab8e7f6e5c
4
+ data.tar.gz: c9e3415321b7d7d61851d515693a410b529f11c9
5
5
  SHA512:
6
- metadata.gz: bfce0d052a938899650f4d025ecd495258c1913d7b4d542ea85e94a828e6c1d4ccb95e27d65e0af592c4fcb6ca4f81b4766c957851a3d096d0f2f90d73a6e732
7
- data.tar.gz: c92a499c26ad4441bf426c11a368e4a62cbc604dfbb85e70720ed365365c8c1b533190aa8b6f614942292d7b000cadc15fda724c8ec5ec1f01435727aab5dc57
6
+ metadata.gz: 24f947a35dfe2a167377ff4fc2e55bae7856a391fb97a4f3e407a507ac9bdf2a9252b27c7f16fa2d57aa304221b4bdca9b559264ad0092dfafffdc59ca8e1794
7
+ data.tar.gz: c022d82a42205c5646618fb461fcf174b255eef6812795e0e49f1f9106761364032b87ea1433551723834a5a6d0b51489b794053ecdf47935f8bd10a716f248b
data/Makefile CHANGED
@@ -411,8 +411,8 @@ Q = @
411
411
  endif
412
412
 
413
413
  CORE_VERSION = 5.0.0
414
- CPP_VERSION = 1.7.1
415
- CSHARP_VERSION = 1.7.1
414
+ CPP_VERSION = 1.7.2
415
+ CSHARP_VERSION = 1.7.2
416
416
 
417
417
  CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
418
418
  CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
@@ -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
@@ -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.2'
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.2
5
5
  platform: ruby
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-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf