grpc-tools 1.68.1 → 1.69.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/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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcf855c58fa7c82327021ca36cdaf508d603941215430165eb9a9aea0c3a036e
|
4
|
+
data.tar.gz: 95c1dbf82ffba53b5d4b76e9c69ccecbfd5f81b3ee97385643a65cacf7e6fe16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c60ff770f608b4e48395be19808c030e8c61f1fe08ce5e2bbd09f77206957bda48e2fbdd120a515637e37e054539aef6ce512179d5b7302a11fcb8d6487b7589
|
7
|
+
data.tar.gz: ca8da8a061d8f118f4161cd8230ef2dd223a93508a86d4cff0ca014f3954659fea628fcfb0ffcb291b042c7ceb0d8955fb3476674cb81f590b2f61699ea4202f
|
@@ -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.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: 2024-
|
11
|
+
date: 2024-12-05 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:
|
113
|
+
version: 1.3.1
|
114
114
|
requirements: []
|
115
115
|
rubygems_version: 3.0.8
|
116
116
|
signing_key:
|