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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/bin/x86-linux/google/protobuf/descriptor.proto +5 -2
  3. data/bin/x86-linux/google/protobuf/duration.proto +1 -1
  4. data/bin/x86-linux/google/protobuf/field_mask.proto +1 -1
  5. data/bin/x86-linux/grpc_ruby_plugin +0 -0
  6. data/bin/x86-linux/protoc +0 -0
  7. data/bin/x86-macos/google/protobuf/descriptor.proto +5 -2
  8. data/bin/x86-macos/google/protobuf/duration.proto +1 -1
  9. data/bin/x86-macos/google/protobuf/field_mask.proto +1 -1
  10. data/bin/x86-macos/grpc_ruby_plugin +0 -0
  11. data/bin/x86-macos/protoc +0 -0
  12. data/bin/x86-windows/google/protobuf/descriptor.proto +5 -2
  13. data/bin/x86-windows/google/protobuf/duration.proto +1 -1
  14. data/bin/x86-windows/google/protobuf/field_mask.proto +1 -1
  15. data/bin/x86-windows/grpc_ruby_plugin.exe +0 -0
  16. data/bin/x86-windows/protoc.exe +0 -0
  17. data/bin/x86_64-linux/google/protobuf/descriptor.proto +5 -2
  18. data/bin/x86_64-linux/google/protobuf/duration.proto +1 -1
  19. data/bin/x86_64-linux/google/protobuf/field_mask.proto +1 -1
  20. data/bin/x86_64-linux/grpc_ruby_plugin +0 -0
  21. data/bin/x86_64-linux/protoc +0 -0
  22. data/bin/x86_64-macos/google/protobuf/descriptor.proto +5 -2
  23. data/bin/x86_64-macos/google/protobuf/duration.proto +1 -1
  24. data/bin/x86_64-macos/google/protobuf/field_mask.proto +1 -1
  25. data/bin/x86_64-macos/grpc_ruby_plugin +0 -0
  26. data/bin/x86_64-macos/protoc +0 -0
  27. data/bin/x86_64-windows/google/protobuf/descriptor.proto +5 -2
  28. data/bin/x86_64-windows/google/protobuf/duration.proto +1 -1
  29. data/bin/x86_64-windows/google/protobuf/field_mask.proto +1 -1
  30. data/bin/x86_64-windows/grpc_ruby_plugin.exe +0 -0
  31. data/bin/x86_64-windows/protoc.exe +0 -0
  32. data/version.rb +1 -1
  33. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c253f5cc763e50b6c78d93a4523d3c0194551699e0044314eb6bd788415108b5
4
- data.tar.gz: ab83f4fdcee51c71a5c70a8e668fc1e55a0f30e9fe92612d42021c0af3856e76
3
+ metadata.gz: 7d367543e9c61800b0bb1fd6ac8b85c6773b09376413d2d34493b2a1bf09a351
4
+ data.tar.gz: 5e7dea4620ef742d87b57280c9d5ee962063f96b76761e3d0de4b74e434390cb
5
5
  SHA512:
6
- metadata.gz: daa778097e7212cfc8eaecf03e13e03d8f6e395c2c7fc0cfc7d705d8cd4a31410849774191620d4ab89c0e15e98229a6bf62e435c64bc58d41843ca55d38179d
7
- data.tar.gz: 51e26d2358c518117f92c57ced9d82d7617c27fc902979ea4e5ac76d360164beaefe3b6be152f5e920adb15af8f0e0335b97ec4c8d0da7f3e9b91894ea05397b
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 (durations.seconds > 0 && duration.nanos < 0) {
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 duplicated or unmappable.
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 (durations.seconds > 0 && duration.nanos < 0) {
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 duplicated or unmappable.
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 (durations.seconds > 0 && duration.nanos < 0) {
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 duplicated or unmappable.
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
@@ -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 (durations.seconds > 0 && duration.nanos < 0) {
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 duplicated or unmappable.
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
@@ -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 (durations.seconds > 0 && duration.nanos < 0) {
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 duplicated or unmappable.
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
@@ -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 (durations.seconds > 0 && duration.nanos < 0) {
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 duplicated or unmappable.
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/version.rb CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  module GRPC
16
16
  module Tools
17
- VERSION = '1.26.0'
17
+ VERSION = '1.27.0.pre1'
18
18
  end
19
19
  end
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.26.0
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: 2019-12-18 00:00:00.000000000 Z
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: '0'
127
+ version: 1.3.1
128
128
  requirements: []
129
129
  rubygems_version: 3.0.6
130
130
  signing_key: