grpc-tools 1.40.0.pre1 → 1.41.1

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: 7017714a73d12f3b7a495766960ad32b5bab9cdc0d1c5a691e98975369044570
4
- data.tar.gz: 30f4637af19abeff7bccfdcf4c63081af862a478aa24c5668a68acd7261bc044
3
+ metadata.gz: deb7842eb23f97a27adbf2d67b153eb69b8235c3dc86da62b32fd076828e7b2e
4
+ data.tar.gz: 0bd9e399115f9240993dd99178924e5f7a99737265cafae9ad554dcd1a976e37
5
5
  SHA512:
6
- metadata.gz: fb482efe1f27e64e6ce8b1bf0f28ac710851458b3912f25211b6acbea7d2eee036766b3cb699efaef1a1ef52212b7e55ffc6fc5108efca7e22f117d9373d856a
7
- data.tar.gz: e72cf99eea19fd1cc8c3c145d29edd3a7f89e77e3ceb81c54780789e7d8bff8036cb5bfc6de4a091d3f889730561035b9c1f41911635a4a8e70eada63b04b233
6
+ metadata.gz: 62924ab3f6f5838f925a342062bb1aba22c6fa4cbc2a6bcaad6b4fd12fd70a76927b3316a07088b26c442cd8f8ce752d8ac0b0c7803451478e413a8df259c956
7
+ data.tar.gz: 3dd8267c0658005f301f0bf73bd8f75b17262da888682d79df7150e26bd99e2abce0b2a2a7182072436cf18d1cc707cca44d859ebda9670d90037cdce6174fad
@@ -348,17 +348,17 @@ message FileOptions {
348
348
  optional string java_package = 1;
349
349
 
350
350
 
351
- // If set, all the classes from the .proto file are wrapped in a single
352
- // outer class with the given name. This applies to both Proto1
353
- // (equivalent to the old "--one_java_file" option) and Proto2 (where
354
- // a .proto always translates to a single class, but you may want to
355
- // explicitly choose the class name).
351
+ // Controls the name of the wrapper Java class generated for the .proto file.
352
+ // That class will always contain the .proto file's getDescriptor() method as
353
+ // well as any top-level extensions defined in the .proto file.
354
+ // If java_multiple_files is disabled, then all the other classes from the
355
+ // .proto file will be nested inside the single wrapper outer class.
356
356
  optional string java_outer_classname = 8;
357
357
 
358
- // If set true, then the Java code generator will generate a separate .java
358
+ // If enabled, then the Java code generator will generate a separate .java
359
359
  // file for each top-level message, enum, and service defined in the .proto
360
- // file. Thus, these types will *not* be nested inside the outer class
361
- // named by java_outer_classname. However, the outer class will still be
360
+ // file. Thus, these types will *not* be nested inside the wrapper class
361
+ // named by java_outer_classname. However, the wrapper class will still be
362
362
  // generated to contain the file's getDescriptor() method as well as any
363
363
  // top-level extensions defined in the file.
364
364
  optional bool java_multiple_files = 10 [default = false];
@@ -496,6 +496,8 @@ message MessageOptions {
496
496
  // this is a formalization for deprecating messages.
497
497
  optional bool deprecated = 3 [default = false];
498
498
 
499
+ reserved 4, 5, 6;
500
+
499
501
  // Whether the message is an automatically generated map entry type for the
500
502
  // maps field.
501
503
  //
Binary file
data/bin/x86-linux/protoc CHANGED
Binary file
@@ -348,17 +348,17 @@ message FileOptions {
348
348
  optional string java_package = 1;
349
349
 
350
350
 
351
- // If set, all the classes from the .proto file are wrapped in a single
352
- // outer class with the given name. This applies to both Proto1
353
- // (equivalent to the old "--one_java_file" option) and Proto2 (where
354
- // a .proto always translates to a single class, but you may want to
355
- // explicitly choose the class name).
351
+ // Controls the name of the wrapper Java class generated for the .proto file.
352
+ // That class will always contain the .proto file's getDescriptor() method as
353
+ // well as any top-level extensions defined in the .proto file.
354
+ // If java_multiple_files is disabled, then all the other classes from the
355
+ // .proto file will be nested inside the single wrapper outer class.
356
356
  optional string java_outer_classname = 8;
357
357
 
358
- // If set true, then the Java code generator will generate a separate .java
358
+ // If enabled, then the Java code generator will generate a separate .java
359
359
  // file for each top-level message, enum, and service defined in the .proto
360
- // file. Thus, these types will *not* be nested inside the outer class
361
- // named by java_outer_classname. However, the outer class will still be
360
+ // file. Thus, these types will *not* be nested inside the wrapper class
361
+ // named by java_outer_classname. However, the wrapper class will still be
362
362
  // generated to contain the file's getDescriptor() method as well as any
363
363
  // top-level extensions defined in the file.
364
364
  optional bool java_multiple_files = 10 [default = false];
@@ -496,6 +496,8 @@ message MessageOptions {
496
496
  // this is a formalization for deprecating messages.
497
497
  optional bool deprecated = 3 [default = false];
498
498
 
499
+ reserved 4, 5, 6;
500
+
499
501
  // Whether the message is an automatically generated map entry type for the
500
502
  // maps field.
501
503
  //
Binary file
Binary file
@@ -348,17 +348,17 @@ message FileOptions {
348
348
  optional string java_package = 1;
349
349
 
350
350
 
351
- // If set, all the classes from the .proto file are wrapped in a single
352
- // outer class with the given name. This applies to both Proto1
353
- // (equivalent to the old "--one_java_file" option) and Proto2 (where
354
- // a .proto always translates to a single class, but you may want to
355
- // explicitly choose the class name).
351
+ // Controls the name of the wrapper Java class generated for the .proto file.
352
+ // That class will always contain the .proto file's getDescriptor() method as
353
+ // well as any top-level extensions defined in the .proto file.
354
+ // If java_multiple_files is disabled, then all the other classes from the
355
+ // .proto file will be nested inside the single wrapper outer class.
356
356
  optional string java_outer_classname = 8;
357
357
 
358
- // If set true, then the Java code generator will generate a separate .java
358
+ // If enabled, then the Java code generator will generate a separate .java
359
359
  // file for each top-level message, enum, and service defined in the .proto
360
- // file. Thus, these types will *not* be nested inside the outer class
361
- // named by java_outer_classname. However, the outer class will still be
360
+ // file. Thus, these types will *not* be nested inside the wrapper class
361
+ // named by java_outer_classname. However, the wrapper class will still be
362
362
  // generated to contain the file's getDescriptor() method as well as any
363
363
  // top-level extensions defined in the file.
364
364
  optional bool java_multiple_files = 10 [default = false];
@@ -496,6 +496,8 @@ message MessageOptions {
496
496
  // this is a formalization for deprecating messages.
497
497
  optional bool deprecated = 3 [default = false];
498
498
 
499
+ reserved 4, 5, 6;
500
+
499
501
  // Whether the message is an automatically generated map entry type for the
500
502
  // maps field.
501
503
  //
Binary file
Binary file
@@ -348,17 +348,17 @@ message FileOptions {
348
348
  optional string java_package = 1;
349
349
 
350
350
 
351
- // If set, all the classes from the .proto file are wrapped in a single
352
- // outer class with the given name. This applies to both Proto1
353
- // (equivalent to the old "--one_java_file" option) and Proto2 (where
354
- // a .proto always translates to a single class, but you may want to
355
- // explicitly choose the class name).
351
+ // Controls the name of the wrapper Java class generated for the .proto file.
352
+ // That class will always contain the .proto file's getDescriptor() method as
353
+ // well as any top-level extensions defined in the .proto file.
354
+ // If java_multiple_files is disabled, then all the other classes from the
355
+ // .proto file will be nested inside the single wrapper outer class.
356
356
  optional string java_outer_classname = 8;
357
357
 
358
- // If set true, then the Java code generator will generate a separate .java
358
+ // If enabled, then the Java code generator will generate a separate .java
359
359
  // file for each top-level message, enum, and service defined in the .proto
360
- // file. Thus, these types will *not* be nested inside the outer class
361
- // named by java_outer_classname. However, the outer class will still be
360
+ // file. Thus, these types will *not* be nested inside the wrapper class
361
+ // named by java_outer_classname. However, the wrapper class will still be
362
362
  // generated to contain the file's getDescriptor() method as well as any
363
363
  // top-level extensions defined in the file.
364
364
  optional bool java_multiple_files = 10 [default = false];
@@ -496,6 +496,8 @@ message MessageOptions {
496
496
  // this is a formalization for deprecating messages.
497
497
  optional bool deprecated = 3 [default = false];
498
498
 
499
+ reserved 4, 5, 6;
500
+
499
501
  // Whether the message is an automatically generated map entry type for the
500
502
  // maps field.
501
503
  //
Binary file
Binary file
@@ -348,17 +348,17 @@ message FileOptions {
348
348
  optional string java_package = 1;
349
349
 
350
350
 
351
- // If set, all the classes from the .proto file are wrapped in a single
352
- // outer class with the given name. This applies to both Proto1
353
- // (equivalent to the old "--one_java_file" option) and Proto2 (where
354
- // a .proto always translates to a single class, but you may want to
355
- // explicitly choose the class name).
351
+ // Controls the name of the wrapper Java class generated for the .proto file.
352
+ // That class will always contain the .proto file's getDescriptor() method as
353
+ // well as any top-level extensions defined in the .proto file.
354
+ // If java_multiple_files is disabled, then all the other classes from the
355
+ // .proto file will be nested inside the single wrapper outer class.
356
356
  optional string java_outer_classname = 8;
357
357
 
358
- // If set true, then the Java code generator will generate a separate .java
358
+ // If enabled, then the Java code generator will generate a separate .java
359
359
  // file for each top-level message, enum, and service defined in the .proto
360
- // file. Thus, these types will *not* be nested inside the outer class
361
- // named by java_outer_classname. However, the outer class will still be
360
+ // file. Thus, these types will *not* be nested inside the wrapper class
361
+ // named by java_outer_classname. However, the wrapper class will still be
362
362
  // generated to contain the file's getDescriptor() method as well as any
363
363
  // top-level extensions defined in the file.
364
364
  optional bool java_multiple_files = 10 [default = false];
@@ -496,6 +496,8 @@ message MessageOptions {
496
496
  // this is a formalization for deprecating messages.
497
497
  optional bool deprecated = 3 [default = false];
498
498
 
499
+ reserved 4, 5, 6;
500
+
499
501
  // Whether the message is an automatically generated map entry type for the
500
502
  // maps field.
501
503
  //
Binary file
data/version.rb CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  module GRPC
16
16
  module Tools
17
- VERSION = '1.40.0.pre1'
17
+ VERSION = '1.41.1'
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.40.0.pre1
4
+ version: 1.41.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - grpc Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-21 00:00:00.000000000 Z
11
+ date: 2021-10-20 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
@@ -108,9 +108,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
108
108
  version: '0'
109
109
  required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  requirements:
111
- - - ">"
111
+ - - ">="
112
112
  - !ruby/object:Gem::Version
113
- version: 1.3.1
113
+ version: '0'
114
114
  requirements: []
115
115
  rubygems_version: 3.0.8
116
116
  signing_key: