grpc-tools 1.68.1 → 1.69.0
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 +4 -4
- data/bin/x86-linux/google/protobuf/api.proto +1 -1
- data/bin/x86-linux/google/protobuf/descriptor.proto +16 -5
- data/bin/x86-linux/grpc_ruby_plugin +0 -0
- data/bin/x86-linux/protoc +0 -0
- data/bin/x86-windows/google/protobuf/api.proto +1 -1
- data/bin/x86-windows/google/protobuf/descriptor.proto +16 -5
- 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/api.proto +1 -1
- data/bin/x86_64-linux/google/protobuf/descriptor.proto +16 -5
- 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/api.proto +1 -1
- data/bin/x86_64-macos/google/protobuf/descriptor.proto +16 -5
- 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/api.proto +1 -1
- data/bin/x86_64-windows/google/protobuf/descriptor.proto +16 -5
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea96746ba97371b233cf8a8048f4b255ddc0558b2ce5cb482a7466947b388f46
|
4
|
+
data.tar.gz: d123085da0e7b258dfc429dd911b9dd0ba97526ceab8d980676c93c41c162982
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ae07a5db1eaac899de8c5179ca42befef4dc42ec446d6edf4652f3b6cb0140d0a333db46a62677d4451c2352eedb13afe470bd82ffeb150e67d1b3d8883747f
|
7
|
+
data.tar.gz: c177553bdb189743504cfd066da594184308ff61bdf1fbac190a804205b6e4d7f50748984392720eaf51557ed3528e578b0932d00b93d88052aa686d3da8b3da
|
@@ -166,7 +166,7 @@ message Method {
|
|
166
166
|
// The mixin construct implies that all methods in `AccessControl` are
|
167
167
|
// also declared with same name and request/response types in
|
168
168
|
// `Storage`. A documentation generator or annotation processor will
|
169
|
-
// see the effective `Storage.GetAcl` method after
|
169
|
+
// see the effective `Storage.GetAcl` method after inheriting
|
170
170
|
// documentation and annotations as follows:
|
171
171
|
//
|
172
172
|
// service Storage {
|
@@ -55,6 +55,13 @@ option optimize_for = SPEED;
|
|
55
55
|
// files it parses.
|
56
56
|
message FileDescriptorSet {
|
57
57
|
repeated FileDescriptorProto file = 1;
|
58
|
+
|
59
|
+
// Extensions for tooling.
|
60
|
+
extensions 536000000 [declaration = {
|
61
|
+
number: 536000000
|
62
|
+
type: ".buf.descriptor.v1.FileDescriptorSetExtension"
|
63
|
+
full_name: ".buf.descriptor.v1.buf_file_descriptor_set_extension"
|
64
|
+
}];
|
58
65
|
}
|
59
66
|
|
60
67
|
// The full set of known editions.
|
@@ -80,7 +87,7 @@ enum Edition {
|
|
80
87
|
EDITION_2024 = 1001;
|
81
88
|
|
82
89
|
// Placeholder editions for testing feature resolution. These should not be
|
83
|
-
// used or
|
90
|
+
// used or relied on outside of tests.
|
84
91
|
EDITION_1_TEST_ONLY = 1;
|
85
92
|
EDITION_2_TEST_ONLY = 2;
|
86
93
|
EDITION_99997_TEST_ONLY = 99997;
|
@@ -732,8 +739,6 @@ message FieldOptions {
|
|
732
739
|
optional bool debug_redact = 16 [default = false];
|
733
740
|
|
734
741
|
// If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
735
|
-
// Note: as of January 2023, support for this is in progress and does not yet
|
736
|
-
// have an effect (b/264593489).
|
737
742
|
enum OptionRetention {
|
738
743
|
RETENTION_UNKNOWN = 0;
|
739
744
|
RETENTION_RUNTIME = 1;
|
@@ -744,8 +749,7 @@ message FieldOptions {
|
|
744
749
|
|
745
750
|
// This indicates the types of entities that the field may apply to when used
|
746
751
|
// as an option. If it is unset, then the field may be freely used as an
|
747
|
-
// option on any kind of entity.
|
748
|
-
// in progress and does not yet have an effect (b/264593489).
|
752
|
+
// option on any kind of entity.
|
749
753
|
enum OptionTargetType {
|
750
754
|
TARGET_TYPE_UNKNOWN = 0;
|
751
755
|
TARGET_TYPE_FILE = 1;
|
@@ -1255,6 +1259,13 @@ message SourceCodeInfo {
|
|
1255
1259
|
optional string trailing_comments = 4;
|
1256
1260
|
repeated string leading_detached_comments = 6;
|
1257
1261
|
}
|
1262
|
+
|
1263
|
+
// Extensions for tooling.
|
1264
|
+
extensions 536000000 [declaration = {
|
1265
|
+
number: 536000000
|
1266
|
+
type: ".buf.descriptor.v1.SourceCodeInfoExtension"
|
1267
|
+
full_name: ".buf.descriptor.v1.buf_source_code_info_extension"
|
1268
|
+
}];
|
1258
1269
|
}
|
1259
1270
|
|
1260
1271
|
// Describes the relationship between generated code and its original source
|
Binary file
|
data/bin/x86-linux/protoc
CHANGED
Binary file
|
@@ -166,7 +166,7 @@ message Method {
|
|
166
166
|
// The mixin construct implies that all methods in `AccessControl` are
|
167
167
|
// also declared with same name and request/response types in
|
168
168
|
// `Storage`. A documentation generator or annotation processor will
|
169
|
-
// see the effective `Storage.GetAcl` method after
|
169
|
+
// see the effective `Storage.GetAcl` method after inheriting
|
170
170
|
// documentation and annotations as follows:
|
171
171
|
//
|
172
172
|
// service Storage {
|
@@ -55,6 +55,13 @@ option optimize_for = SPEED;
|
|
55
55
|
// files it parses.
|
56
56
|
message FileDescriptorSet {
|
57
57
|
repeated FileDescriptorProto file = 1;
|
58
|
+
|
59
|
+
// Extensions for tooling.
|
60
|
+
extensions 536000000 [declaration = {
|
61
|
+
number: 536000000
|
62
|
+
type: ".buf.descriptor.v1.FileDescriptorSetExtension"
|
63
|
+
full_name: ".buf.descriptor.v1.buf_file_descriptor_set_extension"
|
64
|
+
}];
|
58
65
|
}
|
59
66
|
|
60
67
|
// The full set of known editions.
|
@@ -80,7 +87,7 @@ enum Edition {
|
|
80
87
|
EDITION_2024 = 1001;
|
81
88
|
|
82
89
|
// Placeholder editions for testing feature resolution. These should not be
|
83
|
-
// used or
|
90
|
+
// used or relied on outside of tests.
|
84
91
|
EDITION_1_TEST_ONLY = 1;
|
85
92
|
EDITION_2_TEST_ONLY = 2;
|
86
93
|
EDITION_99997_TEST_ONLY = 99997;
|
@@ -732,8 +739,6 @@ message FieldOptions {
|
|
732
739
|
optional bool debug_redact = 16 [default = false];
|
733
740
|
|
734
741
|
// If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
735
|
-
// Note: as of January 2023, support for this is in progress and does not yet
|
736
|
-
// have an effect (b/264593489).
|
737
742
|
enum OptionRetention {
|
738
743
|
RETENTION_UNKNOWN = 0;
|
739
744
|
RETENTION_RUNTIME = 1;
|
@@ -744,8 +749,7 @@ message FieldOptions {
|
|
744
749
|
|
745
750
|
// This indicates the types of entities that the field may apply to when used
|
746
751
|
// as an option. If it is unset, then the field may be freely used as an
|
747
|
-
// option on any kind of entity.
|
748
|
-
// in progress and does not yet have an effect (b/264593489).
|
752
|
+
// option on any kind of entity.
|
749
753
|
enum OptionTargetType {
|
750
754
|
TARGET_TYPE_UNKNOWN = 0;
|
751
755
|
TARGET_TYPE_FILE = 1;
|
@@ -1255,6 +1259,13 @@ message SourceCodeInfo {
|
|
1255
1259
|
optional string trailing_comments = 4;
|
1256
1260
|
repeated string leading_detached_comments = 6;
|
1257
1261
|
}
|
1262
|
+
|
1263
|
+
// Extensions for tooling.
|
1264
|
+
extensions 536000000 [declaration = {
|
1265
|
+
number: 536000000
|
1266
|
+
type: ".buf.descriptor.v1.SourceCodeInfoExtension"
|
1267
|
+
full_name: ".buf.descriptor.v1.buf_source_code_info_extension"
|
1268
|
+
}];
|
1258
1269
|
}
|
1259
1270
|
|
1260
1271
|
// Describes the relationship between generated code and its original source
|
Binary file
|
data/bin/x86-windows/protoc.exe
CHANGED
Binary file
|
@@ -166,7 +166,7 @@ message Method {
|
|
166
166
|
// The mixin construct implies that all methods in `AccessControl` are
|
167
167
|
// also declared with same name and request/response types in
|
168
168
|
// `Storage`. A documentation generator or annotation processor will
|
169
|
-
// see the effective `Storage.GetAcl` method after
|
169
|
+
// see the effective `Storage.GetAcl` method after inheriting
|
170
170
|
// documentation and annotations as follows:
|
171
171
|
//
|
172
172
|
// service Storage {
|
@@ -55,6 +55,13 @@ option optimize_for = SPEED;
|
|
55
55
|
// files it parses.
|
56
56
|
message FileDescriptorSet {
|
57
57
|
repeated FileDescriptorProto file = 1;
|
58
|
+
|
59
|
+
// Extensions for tooling.
|
60
|
+
extensions 536000000 [declaration = {
|
61
|
+
number: 536000000
|
62
|
+
type: ".buf.descriptor.v1.FileDescriptorSetExtension"
|
63
|
+
full_name: ".buf.descriptor.v1.buf_file_descriptor_set_extension"
|
64
|
+
}];
|
58
65
|
}
|
59
66
|
|
60
67
|
// The full set of known editions.
|
@@ -80,7 +87,7 @@ enum Edition {
|
|
80
87
|
EDITION_2024 = 1001;
|
81
88
|
|
82
89
|
// Placeholder editions for testing feature resolution. These should not be
|
83
|
-
// used or
|
90
|
+
// used or relied on outside of tests.
|
84
91
|
EDITION_1_TEST_ONLY = 1;
|
85
92
|
EDITION_2_TEST_ONLY = 2;
|
86
93
|
EDITION_99997_TEST_ONLY = 99997;
|
@@ -732,8 +739,6 @@ message FieldOptions {
|
|
732
739
|
optional bool debug_redact = 16 [default = false];
|
733
740
|
|
734
741
|
// If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
735
|
-
// Note: as of January 2023, support for this is in progress and does not yet
|
736
|
-
// have an effect (b/264593489).
|
737
742
|
enum OptionRetention {
|
738
743
|
RETENTION_UNKNOWN = 0;
|
739
744
|
RETENTION_RUNTIME = 1;
|
@@ -744,8 +749,7 @@ message FieldOptions {
|
|
744
749
|
|
745
750
|
// This indicates the types of entities that the field may apply to when used
|
746
751
|
// as an option. If it is unset, then the field may be freely used as an
|
747
|
-
// option on any kind of entity.
|
748
|
-
// in progress and does not yet have an effect (b/264593489).
|
752
|
+
// option on any kind of entity.
|
749
753
|
enum OptionTargetType {
|
750
754
|
TARGET_TYPE_UNKNOWN = 0;
|
751
755
|
TARGET_TYPE_FILE = 1;
|
@@ -1255,6 +1259,13 @@ message SourceCodeInfo {
|
|
1255
1259
|
optional string trailing_comments = 4;
|
1256
1260
|
repeated string leading_detached_comments = 6;
|
1257
1261
|
}
|
1262
|
+
|
1263
|
+
// Extensions for tooling.
|
1264
|
+
extensions 536000000 [declaration = {
|
1265
|
+
number: 536000000
|
1266
|
+
type: ".buf.descriptor.v1.SourceCodeInfoExtension"
|
1267
|
+
full_name: ".buf.descriptor.v1.buf_source_code_info_extension"
|
1268
|
+
}];
|
1258
1269
|
}
|
1259
1270
|
|
1260
1271
|
// Describes the relationship between generated code and its original source
|
Binary file
|
data/bin/x86_64-linux/protoc
CHANGED
Binary file
|
@@ -166,7 +166,7 @@ message Method {
|
|
166
166
|
// The mixin construct implies that all methods in `AccessControl` are
|
167
167
|
// also declared with same name and request/response types in
|
168
168
|
// `Storage`. A documentation generator or annotation processor will
|
169
|
-
// see the effective `Storage.GetAcl` method after
|
169
|
+
// see the effective `Storage.GetAcl` method after inheriting
|
170
170
|
// documentation and annotations as follows:
|
171
171
|
//
|
172
172
|
// service Storage {
|
@@ -55,6 +55,13 @@ option optimize_for = SPEED;
|
|
55
55
|
// files it parses.
|
56
56
|
message FileDescriptorSet {
|
57
57
|
repeated FileDescriptorProto file = 1;
|
58
|
+
|
59
|
+
// Extensions for tooling.
|
60
|
+
extensions 536000000 [declaration = {
|
61
|
+
number: 536000000
|
62
|
+
type: ".buf.descriptor.v1.FileDescriptorSetExtension"
|
63
|
+
full_name: ".buf.descriptor.v1.buf_file_descriptor_set_extension"
|
64
|
+
}];
|
58
65
|
}
|
59
66
|
|
60
67
|
// The full set of known editions.
|
@@ -80,7 +87,7 @@ enum Edition {
|
|
80
87
|
EDITION_2024 = 1001;
|
81
88
|
|
82
89
|
// Placeholder editions for testing feature resolution. These should not be
|
83
|
-
// used or
|
90
|
+
// used or relied on outside of tests.
|
84
91
|
EDITION_1_TEST_ONLY = 1;
|
85
92
|
EDITION_2_TEST_ONLY = 2;
|
86
93
|
EDITION_99997_TEST_ONLY = 99997;
|
@@ -732,8 +739,6 @@ message FieldOptions {
|
|
732
739
|
optional bool debug_redact = 16 [default = false];
|
733
740
|
|
734
741
|
// If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
735
|
-
// Note: as of January 2023, support for this is in progress and does not yet
|
736
|
-
// have an effect (b/264593489).
|
737
742
|
enum OptionRetention {
|
738
743
|
RETENTION_UNKNOWN = 0;
|
739
744
|
RETENTION_RUNTIME = 1;
|
@@ -744,8 +749,7 @@ message FieldOptions {
|
|
744
749
|
|
745
750
|
// This indicates the types of entities that the field may apply to when used
|
746
751
|
// as an option. If it is unset, then the field may be freely used as an
|
747
|
-
// option on any kind of entity.
|
748
|
-
// in progress and does not yet have an effect (b/264593489).
|
752
|
+
// option on any kind of entity.
|
749
753
|
enum OptionTargetType {
|
750
754
|
TARGET_TYPE_UNKNOWN = 0;
|
751
755
|
TARGET_TYPE_FILE = 1;
|
@@ -1255,6 +1259,13 @@ message SourceCodeInfo {
|
|
1255
1259
|
optional string trailing_comments = 4;
|
1256
1260
|
repeated string leading_detached_comments = 6;
|
1257
1261
|
}
|
1262
|
+
|
1263
|
+
// Extensions for tooling.
|
1264
|
+
extensions 536000000 [declaration = {
|
1265
|
+
number: 536000000
|
1266
|
+
type: ".buf.descriptor.v1.SourceCodeInfoExtension"
|
1267
|
+
full_name: ".buf.descriptor.v1.buf_source_code_info_extension"
|
1268
|
+
}];
|
1258
1269
|
}
|
1259
1270
|
|
1260
1271
|
// Describes the relationship between generated code and its original source
|
Binary file
|
data/bin/x86_64-macos/protoc
CHANGED
Binary file
|
@@ -166,7 +166,7 @@ message Method {
|
|
166
166
|
// The mixin construct implies that all methods in `AccessControl` are
|
167
167
|
// also declared with same name and request/response types in
|
168
168
|
// `Storage`. A documentation generator or annotation processor will
|
169
|
-
// see the effective `Storage.GetAcl` method after
|
169
|
+
// see the effective `Storage.GetAcl` method after inheriting
|
170
170
|
// documentation and annotations as follows:
|
171
171
|
//
|
172
172
|
// service Storage {
|
@@ -55,6 +55,13 @@ option optimize_for = SPEED;
|
|
55
55
|
// files it parses.
|
56
56
|
message FileDescriptorSet {
|
57
57
|
repeated FileDescriptorProto file = 1;
|
58
|
+
|
59
|
+
// Extensions for tooling.
|
60
|
+
extensions 536000000 [declaration = {
|
61
|
+
number: 536000000
|
62
|
+
type: ".buf.descriptor.v1.FileDescriptorSetExtension"
|
63
|
+
full_name: ".buf.descriptor.v1.buf_file_descriptor_set_extension"
|
64
|
+
}];
|
58
65
|
}
|
59
66
|
|
60
67
|
// The full set of known editions.
|
@@ -80,7 +87,7 @@ enum Edition {
|
|
80
87
|
EDITION_2024 = 1001;
|
81
88
|
|
82
89
|
// Placeholder editions for testing feature resolution. These should not be
|
83
|
-
// used or
|
90
|
+
// used or relied on outside of tests.
|
84
91
|
EDITION_1_TEST_ONLY = 1;
|
85
92
|
EDITION_2_TEST_ONLY = 2;
|
86
93
|
EDITION_99997_TEST_ONLY = 99997;
|
@@ -732,8 +739,6 @@ message FieldOptions {
|
|
732
739
|
optional bool debug_redact = 16 [default = false];
|
733
740
|
|
734
741
|
// If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
735
|
-
// Note: as of January 2023, support for this is in progress and does not yet
|
736
|
-
// have an effect (b/264593489).
|
737
742
|
enum OptionRetention {
|
738
743
|
RETENTION_UNKNOWN = 0;
|
739
744
|
RETENTION_RUNTIME = 1;
|
@@ -744,8 +749,7 @@ message FieldOptions {
|
|
744
749
|
|
745
750
|
// This indicates the types of entities that the field may apply to when used
|
746
751
|
// as an option. If it is unset, then the field may be freely used as an
|
747
|
-
// option on any kind of entity.
|
748
|
-
// in progress and does not yet have an effect (b/264593489).
|
752
|
+
// option on any kind of entity.
|
749
753
|
enum OptionTargetType {
|
750
754
|
TARGET_TYPE_UNKNOWN = 0;
|
751
755
|
TARGET_TYPE_FILE = 1;
|
@@ -1255,6 +1259,13 @@ message SourceCodeInfo {
|
|
1255
1259
|
optional string trailing_comments = 4;
|
1256
1260
|
repeated string leading_detached_comments = 6;
|
1257
1261
|
}
|
1262
|
+
|
1263
|
+
// Extensions for tooling.
|
1264
|
+
extensions 536000000 [declaration = {
|
1265
|
+
number: 536000000
|
1266
|
+
type: ".buf.descriptor.v1.SourceCodeInfoExtension"
|
1267
|
+
full_name: ".buf.descriptor.v1.buf_source_code_info_extension"
|
1268
|
+
}];
|
1258
1269
|
}
|
1259
1270
|
|
1260
1271
|
// Describes the relationship between generated code and its original source
|
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.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- grpc Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-24 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
|