grpc-tools 1.26.0 → 1.27.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/x86-linux/google/protobuf/descriptor.proto +5 -2
- data/bin/x86-linux/google/protobuf/duration.proto +1 -1
- data/bin/x86-linux/google/protobuf/field_mask.proto +1 -1
- data/bin/x86-linux/grpc_ruby_plugin +0 -0
- data/bin/x86-linux/protoc +0 -0
- data/bin/x86-macos/google/protobuf/descriptor.proto +5 -2
- data/bin/x86-macos/google/protobuf/duration.proto +1 -1
- data/bin/x86-macos/google/protobuf/field_mask.proto +1 -1
- data/bin/x86-macos/grpc_ruby_plugin +0 -0
- data/bin/x86-macos/protoc +0 -0
- data/bin/x86-windows/google/protobuf/descriptor.proto +5 -2
- data/bin/x86-windows/google/protobuf/duration.proto +1 -1
- data/bin/x86-windows/google/protobuf/field_mask.proto +1 -1
- data/bin/x86-windows/grpc_ruby_plugin.exe +0 -0
- data/bin/x86-windows/protoc.exe +0 -0
- data/bin/x86_64-linux/google/protobuf/descriptor.proto +5 -2
- data/bin/x86_64-linux/google/protobuf/duration.proto +1 -1
- data/bin/x86_64-linux/google/protobuf/field_mask.proto +1 -1
- data/bin/x86_64-linux/grpc_ruby_plugin +0 -0
- data/bin/x86_64-linux/protoc +0 -0
- data/bin/x86_64-macos/google/protobuf/descriptor.proto +5 -2
- data/bin/x86_64-macos/google/protobuf/duration.proto +1 -1
- data/bin/x86_64-macos/google/protobuf/field_mask.proto +1 -1
- data/bin/x86_64-macos/grpc_ruby_plugin +0 -0
- data/bin/x86_64-macos/protoc +0 -0
- data/bin/x86_64-windows/google/protobuf/descriptor.proto +5 -2
- data/bin/x86_64-windows/google/protobuf/duration.proto +1 -1
- data/bin/x86_64-windows/google/protobuf/field_mask.proto +1 -1
- data/bin/x86_64-windows/grpc_ruby_plugin.exe +0 -0
- data/bin/x86_64-windows/protoc.exe +0 -0
- data/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: 7d367543e9c61800b0bb1fd6ac8b85c6773b09376413d2d34493b2a1bf09a351
|
4
|
+
data.tar.gz: 5e7dea4620ef742d87b57280c9d5ee962063f96b76761e3d0de4b74e434390cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6278b0ef445b1747bc2d29cffd4c5587f0c941a6669115b2ee549109a62da0a3f27103b8330d1050249cdf9085711aa50ff34aac2fdb5ecb8f5b19b06f3d8d93
|
7
|
+
data.tar.gz: 25418e37005b2c0ba878b07871a7ea8d82c9bb1bdcdec22a1ba14095bc7cdcf1e7e327093492efc09757a3d877191a57a7775bfa7f5a157a4427290123692221
|
@@ -101,8 +101,8 @@ message DescriptorProto {
|
|
101
101
|
repeated EnumDescriptorProto enum_type = 4;
|
102
102
|
|
103
103
|
message ExtensionRange {
|
104
|
-
optional int32 start = 1;
|
105
|
-
optional int32 end = 2;
|
104
|
+
optional int32 start = 1; // Inclusive.
|
105
|
+
optional int32 end = 2; // Exclusive.
|
106
106
|
|
107
107
|
optional ExtensionRangeOptions options = 3;
|
108
108
|
}
|
@@ -369,6 +369,7 @@ message FileOptions {
|
|
369
369
|
|
370
370
|
|
371
371
|
|
372
|
+
|
372
373
|
// Should generic services be generated in each language? "Generic" services
|
373
374
|
// are not specific to any particular RPC system. They are generated by the
|
374
375
|
// main code generators in each language (without additional plugins).
|
@@ -427,6 +428,7 @@ message FileOptions {
|
|
427
428
|
// determining the ruby package.
|
428
429
|
optional string ruby_package = 45;
|
429
430
|
|
431
|
+
|
430
432
|
// The parser stores options it doesn't recognize here.
|
431
433
|
// See the documentation for the "Options" section above.
|
432
434
|
repeated UninterpretedOption uninterpreted_option = 999;
|
@@ -496,6 +498,7 @@ message MessageOptions {
|
|
496
498
|
reserved 8; // javalite_serializable
|
497
499
|
reserved 9; // javanano_as_lite
|
498
500
|
|
501
|
+
|
499
502
|
// The parser stores options it doesn't recognize here. See above.
|
500
503
|
repeated UninterpretedOption uninterpreted_option = 999;
|
501
504
|
|
@@ -61,7 +61,7 @@ option objc_class_prefix = "GPB";
|
|
61
61
|
// if (duration.seconds < 0 && duration.nanos > 0) {
|
62
62
|
// duration.seconds += 1;
|
63
63
|
// duration.nanos -= 1000000000;
|
64
|
-
// } else if (
|
64
|
+
// } else if (duration.seconds > 0 && duration.nanos < 0) {
|
65
65
|
// duration.seconds -= 1;
|
66
66
|
// duration.nanos += 1000000000;
|
67
67
|
// }
|
@@ -238,7 +238,7 @@ option cc_enable_arenas = true;
|
|
238
238
|
//
|
239
239
|
// The implementation of any API method which has a FieldMask type field in the
|
240
240
|
// request should verify the included field paths, and return an
|
241
|
-
// `INVALID_ARGUMENT` error if any path is
|
241
|
+
// `INVALID_ARGUMENT` error if any path is unmappable.
|
242
242
|
message FieldMask {
|
243
243
|
// The set of field mask paths.
|
244
244
|
repeated string paths = 1;
|
Binary file
|
data/bin/x86-linux/protoc
CHANGED
Binary file
|
@@ -101,8 +101,8 @@ message DescriptorProto {
|
|
101
101
|
repeated EnumDescriptorProto enum_type = 4;
|
102
102
|
|
103
103
|
message ExtensionRange {
|
104
|
-
optional int32 start = 1;
|
105
|
-
optional int32 end = 2;
|
104
|
+
optional int32 start = 1; // Inclusive.
|
105
|
+
optional int32 end = 2; // Exclusive.
|
106
106
|
|
107
107
|
optional ExtensionRangeOptions options = 3;
|
108
108
|
}
|
@@ -369,6 +369,7 @@ message FileOptions {
|
|
369
369
|
|
370
370
|
|
371
371
|
|
372
|
+
|
372
373
|
// Should generic services be generated in each language? "Generic" services
|
373
374
|
// are not specific to any particular RPC system. They are generated by the
|
374
375
|
// main code generators in each language (without additional plugins).
|
@@ -427,6 +428,7 @@ message FileOptions {
|
|
427
428
|
// determining the ruby package.
|
428
429
|
optional string ruby_package = 45;
|
429
430
|
|
431
|
+
|
430
432
|
// The parser stores options it doesn't recognize here.
|
431
433
|
// See the documentation for the "Options" section above.
|
432
434
|
repeated UninterpretedOption uninterpreted_option = 999;
|
@@ -496,6 +498,7 @@ message MessageOptions {
|
|
496
498
|
reserved 8; // javalite_serializable
|
497
499
|
reserved 9; // javanano_as_lite
|
498
500
|
|
501
|
+
|
499
502
|
// The parser stores options it doesn't recognize here. See above.
|
500
503
|
repeated UninterpretedOption uninterpreted_option = 999;
|
501
504
|
|
@@ -61,7 +61,7 @@ option objc_class_prefix = "GPB";
|
|
61
61
|
// if (duration.seconds < 0 && duration.nanos > 0) {
|
62
62
|
// duration.seconds += 1;
|
63
63
|
// duration.nanos -= 1000000000;
|
64
|
-
// } else if (
|
64
|
+
// } else if (duration.seconds > 0 && duration.nanos < 0) {
|
65
65
|
// duration.seconds -= 1;
|
66
66
|
// duration.nanos += 1000000000;
|
67
67
|
// }
|
@@ -238,7 +238,7 @@ option cc_enable_arenas = true;
|
|
238
238
|
//
|
239
239
|
// The implementation of any API method which has a FieldMask type field in the
|
240
240
|
// request should verify the included field paths, and return an
|
241
|
-
// `INVALID_ARGUMENT` error if any path is
|
241
|
+
// `INVALID_ARGUMENT` error if any path is unmappable.
|
242
242
|
message FieldMask {
|
243
243
|
// The set of field mask paths.
|
244
244
|
repeated string paths = 1;
|
Binary file
|
data/bin/x86-macos/protoc
CHANGED
Binary file
|
@@ -101,8 +101,8 @@ message DescriptorProto {
|
|
101
101
|
repeated EnumDescriptorProto enum_type = 4;
|
102
102
|
|
103
103
|
message ExtensionRange {
|
104
|
-
optional int32 start = 1;
|
105
|
-
optional int32 end = 2;
|
104
|
+
optional int32 start = 1; // Inclusive.
|
105
|
+
optional int32 end = 2; // Exclusive.
|
106
106
|
|
107
107
|
optional ExtensionRangeOptions options = 3;
|
108
108
|
}
|
@@ -369,6 +369,7 @@ message FileOptions {
|
|
369
369
|
|
370
370
|
|
371
371
|
|
372
|
+
|
372
373
|
// Should generic services be generated in each language? "Generic" services
|
373
374
|
// are not specific to any particular RPC system. They are generated by the
|
374
375
|
// main code generators in each language (without additional plugins).
|
@@ -427,6 +428,7 @@ message FileOptions {
|
|
427
428
|
// determining the ruby package.
|
428
429
|
optional string ruby_package = 45;
|
429
430
|
|
431
|
+
|
430
432
|
// The parser stores options it doesn't recognize here.
|
431
433
|
// See the documentation for the "Options" section above.
|
432
434
|
repeated UninterpretedOption uninterpreted_option = 999;
|
@@ -496,6 +498,7 @@ message MessageOptions {
|
|
496
498
|
reserved 8; // javalite_serializable
|
497
499
|
reserved 9; // javanano_as_lite
|
498
500
|
|
501
|
+
|
499
502
|
// The parser stores options it doesn't recognize here. See above.
|
500
503
|
repeated UninterpretedOption uninterpreted_option = 999;
|
501
504
|
|
@@ -61,7 +61,7 @@ option objc_class_prefix = "GPB";
|
|
61
61
|
// if (duration.seconds < 0 && duration.nanos > 0) {
|
62
62
|
// duration.seconds += 1;
|
63
63
|
// duration.nanos -= 1000000000;
|
64
|
-
// } else if (
|
64
|
+
// } else if (duration.seconds > 0 && duration.nanos < 0) {
|
65
65
|
// duration.seconds -= 1;
|
66
66
|
// duration.nanos += 1000000000;
|
67
67
|
// }
|
@@ -238,7 +238,7 @@ option cc_enable_arenas = true;
|
|
238
238
|
//
|
239
239
|
// The implementation of any API method which has a FieldMask type field in the
|
240
240
|
// request should verify the included field paths, and return an
|
241
|
-
// `INVALID_ARGUMENT` error if any path is
|
241
|
+
// `INVALID_ARGUMENT` error if any path is unmappable.
|
242
242
|
message FieldMask {
|
243
243
|
// The set of field mask paths.
|
244
244
|
repeated string paths = 1;
|
Binary file
|
data/bin/x86-windows/protoc.exe
CHANGED
Binary file
|
@@ -101,8 +101,8 @@ message DescriptorProto {
|
|
101
101
|
repeated EnumDescriptorProto enum_type = 4;
|
102
102
|
|
103
103
|
message ExtensionRange {
|
104
|
-
optional int32 start = 1;
|
105
|
-
optional int32 end = 2;
|
104
|
+
optional int32 start = 1; // Inclusive.
|
105
|
+
optional int32 end = 2; // Exclusive.
|
106
106
|
|
107
107
|
optional ExtensionRangeOptions options = 3;
|
108
108
|
}
|
@@ -369,6 +369,7 @@ message FileOptions {
|
|
369
369
|
|
370
370
|
|
371
371
|
|
372
|
+
|
372
373
|
// Should generic services be generated in each language? "Generic" services
|
373
374
|
// are not specific to any particular RPC system. They are generated by the
|
374
375
|
// main code generators in each language (without additional plugins).
|
@@ -427,6 +428,7 @@ message FileOptions {
|
|
427
428
|
// determining the ruby package.
|
428
429
|
optional string ruby_package = 45;
|
429
430
|
|
431
|
+
|
430
432
|
// The parser stores options it doesn't recognize here.
|
431
433
|
// See the documentation for the "Options" section above.
|
432
434
|
repeated UninterpretedOption uninterpreted_option = 999;
|
@@ -496,6 +498,7 @@ message MessageOptions {
|
|
496
498
|
reserved 8; // javalite_serializable
|
497
499
|
reserved 9; // javanano_as_lite
|
498
500
|
|
501
|
+
|
499
502
|
// The parser stores options it doesn't recognize here. See above.
|
500
503
|
repeated UninterpretedOption uninterpreted_option = 999;
|
501
504
|
|
@@ -61,7 +61,7 @@ option objc_class_prefix = "GPB";
|
|
61
61
|
// if (duration.seconds < 0 && duration.nanos > 0) {
|
62
62
|
// duration.seconds += 1;
|
63
63
|
// duration.nanos -= 1000000000;
|
64
|
-
// } else if (
|
64
|
+
// } else if (duration.seconds > 0 && duration.nanos < 0) {
|
65
65
|
// duration.seconds -= 1;
|
66
66
|
// duration.nanos += 1000000000;
|
67
67
|
// }
|
@@ -238,7 +238,7 @@ option cc_enable_arenas = true;
|
|
238
238
|
//
|
239
239
|
// The implementation of any API method which has a FieldMask type field in the
|
240
240
|
// request should verify the included field paths, and return an
|
241
|
-
// `INVALID_ARGUMENT` error if any path is
|
241
|
+
// `INVALID_ARGUMENT` error if any path is unmappable.
|
242
242
|
message FieldMask {
|
243
243
|
// The set of field mask paths.
|
244
244
|
repeated string paths = 1;
|
Binary file
|
data/bin/x86_64-linux/protoc
CHANGED
Binary file
|
@@ -101,8 +101,8 @@ message DescriptorProto {
|
|
101
101
|
repeated EnumDescriptorProto enum_type = 4;
|
102
102
|
|
103
103
|
message ExtensionRange {
|
104
|
-
optional int32 start = 1;
|
105
|
-
optional int32 end = 2;
|
104
|
+
optional int32 start = 1; // Inclusive.
|
105
|
+
optional int32 end = 2; // Exclusive.
|
106
106
|
|
107
107
|
optional ExtensionRangeOptions options = 3;
|
108
108
|
}
|
@@ -369,6 +369,7 @@ message FileOptions {
|
|
369
369
|
|
370
370
|
|
371
371
|
|
372
|
+
|
372
373
|
// Should generic services be generated in each language? "Generic" services
|
373
374
|
// are not specific to any particular RPC system. They are generated by the
|
374
375
|
// main code generators in each language (without additional plugins).
|
@@ -427,6 +428,7 @@ message FileOptions {
|
|
427
428
|
// determining the ruby package.
|
428
429
|
optional string ruby_package = 45;
|
429
430
|
|
431
|
+
|
430
432
|
// The parser stores options it doesn't recognize here.
|
431
433
|
// See the documentation for the "Options" section above.
|
432
434
|
repeated UninterpretedOption uninterpreted_option = 999;
|
@@ -496,6 +498,7 @@ message MessageOptions {
|
|
496
498
|
reserved 8; // javalite_serializable
|
497
499
|
reserved 9; // javanano_as_lite
|
498
500
|
|
501
|
+
|
499
502
|
// The parser stores options it doesn't recognize here. See above.
|
500
503
|
repeated UninterpretedOption uninterpreted_option = 999;
|
501
504
|
|
@@ -61,7 +61,7 @@ option objc_class_prefix = "GPB";
|
|
61
61
|
// if (duration.seconds < 0 && duration.nanos > 0) {
|
62
62
|
// duration.seconds += 1;
|
63
63
|
// duration.nanos -= 1000000000;
|
64
|
-
// } else if (
|
64
|
+
// } else if (duration.seconds > 0 && duration.nanos < 0) {
|
65
65
|
// duration.seconds -= 1;
|
66
66
|
// duration.nanos += 1000000000;
|
67
67
|
// }
|
@@ -238,7 +238,7 @@ option cc_enable_arenas = true;
|
|
238
238
|
//
|
239
239
|
// The implementation of any API method which has a FieldMask type field in the
|
240
240
|
// request should verify the included field paths, and return an
|
241
|
-
// `INVALID_ARGUMENT` error if any path is
|
241
|
+
// `INVALID_ARGUMENT` error if any path is unmappable.
|
242
242
|
message FieldMask {
|
243
243
|
// The set of field mask paths.
|
244
244
|
repeated string paths = 1;
|
Binary file
|
data/bin/x86_64-macos/protoc
CHANGED
Binary file
|
@@ -101,8 +101,8 @@ message DescriptorProto {
|
|
101
101
|
repeated EnumDescriptorProto enum_type = 4;
|
102
102
|
|
103
103
|
message ExtensionRange {
|
104
|
-
optional int32 start = 1;
|
105
|
-
optional int32 end = 2;
|
104
|
+
optional int32 start = 1; // Inclusive.
|
105
|
+
optional int32 end = 2; // Exclusive.
|
106
106
|
|
107
107
|
optional ExtensionRangeOptions options = 3;
|
108
108
|
}
|
@@ -369,6 +369,7 @@ message FileOptions {
|
|
369
369
|
|
370
370
|
|
371
371
|
|
372
|
+
|
372
373
|
// Should generic services be generated in each language? "Generic" services
|
373
374
|
// are not specific to any particular RPC system. They are generated by the
|
374
375
|
// main code generators in each language (without additional plugins).
|
@@ -427,6 +428,7 @@ message FileOptions {
|
|
427
428
|
// determining the ruby package.
|
428
429
|
optional string ruby_package = 45;
|
429
430
|
|
431
|
+
|
430
432
|
// The parser stores options it doesn't recognize here.
|
431
433
|
// See the documentation for the "Options" section above.
|
432
434
|
repeated UninterpretedOption uninterpreted_option = 999;
|
@@ -496,6 +498,7 @@ message MessageOptions {
|
|
496
498
|
reserved 8; // javalite_serializable
|
497
499
|
reserved 9; // javanano_as_lite
|
498
500
|
|
501
|
+
|
499
502
|
// The parser stores options it doesn't recognize here. See above.
|
500
503
|
repeated UninterpretedOption uninterpreted_option = 999;
|
501
504
|
|
@@ -61,7 +61,7 @@ option objc_class_prefix = "GPB";
|
|
61
61
|
// if (duration.seconds < 0 && duration.nanos > 0) {
|
62
62
|
// duration.seconds += 1;
|
63
63
|
// duration.nanos -= 1000000000;
|
64
|
-
// } else if (
|
64
|
+
// } else if (duration.seconds > 0 && duration.nanos < 0) {
|
65
65
|
// duration.seconds -= 1;
|
66
66
|
// duration.nanos += 1000000000;
|
67
67
|
// }
|
@@ -238,7 +238,7 @@ option cc_enable_arenas = true;
|
|
238
238
|
//
|
239
239
|
// The implementation of any API method which has a FieldMask type field in the
|
240
240
|
// request should verify the included field paths, and return an
|
241
|
-
// `INVALID_ARGUMENT` error if any path is
|
241
|
+
// `INVALID_ARGUMENT` error if any path is unmappable.
|
242
242
|
message FieldMask {
|
243
243
|
// The set of field mask paths.
|
244
244
|
repeated string paths = 1;
|
Binary file
|
Binary file
|
data/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0.pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- grpc Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: protoc and the Ruby gRPC protoc plugin
|
14
14
|
email: grpc-io@googlegroups.com
|
@@ -122,9 +122,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
122
|
version: '0'
|
123
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
|
-
- - "
|
125
|
+
- - ">"
|
126
126
|
- !ruby/object:Gem::Version
|
127
|
-
version:
|
127
|
+
version: 1.3.1
|
128
128
|
requirements: []
|
129
129
|
rubygems_version: 3.0.6
|
130
130
|
signing_key:
|