grpc-tools 1.65.2 → 1.82.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/any.proto +52 -108
- data/bin/x86-linux/google/protobuf/api.proto +24 -2
- data/bin/x86-linux/google/protobuf/compiler/plugin.proto +2 -2
- data/bin/x86-linux/google/protobuf/descriptor.proto +306 -53
- data/bin/x86-linux/google/protobuf/field_mask.proto +16 -18
- data/bin/x86-linux/google/protobuf/struct.proto +38 -22
- data/bin/x86-linux/google/protobuf/timestamp.proto +9 -8
- data/bin/x86-linux/google/protobuf/type.proto +24 -0
- data/bin/x86-linux/google/protobuf/wrappers.proto +38 -4
- data/bin/x86-linux/grpc_ruby_plugin +0 -0
- data/bin/x86-linux/protoc +0 -0
- data/bin/x86-windows/google/protobuf/any.proto +52 -108
- data/bin/x86-windows/google/protobuf/api.proto +24 -2
- data/bin/x86-windows/google/protobuf/compiler/plugin.proto +2 -2
- data/bin/x86-windows/google/protobuf/descriptor.proto +306 -53
- data/bin/x86-windows/google/protobuf/field_mask.proto +16 -18
- data/bin/x86-windows/google/protobuf/struct.proto +38 -22
- data/bin/x86-windows/google/protobuf/timestamp.proto +9 -8
- data/bin/x86-windows/google/protobuf/type.proto +24 -0
- data/bin/x86-windows/google/protobuf/wrappers.proto +38 -4
- 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/any.proto +52 -108
- data/bin/x86_64-linux/google/protobuf/api.proto +24 -2
- data/bin/x86_64-linux/google/protobuf/compiler/plugin.proto +2 -2
- data/bin/x86_64-linux/google/protobuf/descriptor.proto +306 -53
- data/bin/x86_64-linux/google/protobuf/field_mask.proto +16 -18
- data/bin/x86_64-linux/google/protobuf/struct.proto +38 -22
- data/bin/x86_64-linux/google/protobuf/timestamp.proto +9 -8
- data/bin/x86_64-linux/google/protobuf/type.proto +24 -0
- data/bin/x86_64-linux/google/protobuf/wrappers.proto +38 -4
- 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/any.proto +52 -108
- data/bin/x86_64-macos/google/protobuf/api.proto +24 -2
- data/bin/x86_64-macos/google/protobuf/compiler/plugin.proto +2 -2
- data/bin/x86_64-macos/google/protobuf/descriptor.proto +306 -53
- data/bin/x86_64-macos/google/protobuf/field_mask.proto +16 -18
- data/bin/x86_64-macos/google/protobuf/struct.proto +38 -22
- data/bin/x86_64-macos/google/protobuf/timestamp.proto +9 -8
- data/bin/x86_64-macos/google/protobuf/type.proto +24 -0
- data/bin/x86_64-macos/google/protobuf/wrappers.proto +38 -4
- 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/any.proto +52 -108
- data/bin/x86_64-windows/google/protobuf/api.proto +24 -2
- data/bin/x86_64-windows/google/protobuf/compiler/plugin.proto +2 -2
- data/bin/x86_64-windows/google/protobuf/descriptor.proto +306 -53
- data/bin/x86_64-windows/google/protobuf/field_mask.proto +16 -18
- data/bin/x86_64-windows/google/protobuf/struct.proto +38 -22
- data/bin/x86_64-windows/google/protobuf/timestamp.proto +9 -8
- data/bin/x86_64-windows/google/protobuf/type.proto +24 -0
- data/bin/x86_64-windows/google/protobuf/wrappers.proto +38 -4
- 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
|
@@ -40,55 +40,71 @@ option java_multiple_files = true;
|
|
|
40
40
|
option objc_class_prefix = "GPB";
|
|
41
41
|
option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
|
42
42
|
|
|
43
|
-
//
|
|
44
|
-
// which map to dynamically typed values. In some languages, `Struct`
|
|
45
|
-
// might be supported by a native representation. For example, in
|
|
46
|
-
// scripting languages like JS a struct is represented as an
|
|
47
|
-
// object. The details of that representation are described together
|
|
48
|
-
// with the proto support for the language.
|
|
43
|
+
// Represents a JSON object.
|
|
49
44
|
//
|
|
50
|
-
//
|
|
45
|
+
// An unordered key-value map, intending to perfectly capture the semantics of a
|
|
46
|
+
// JSON object. This enables parsing any arbitrary JSON payload as a message
|
|
47
|
+
// field in ProtoJSON format.
|
|
48
|
+
//
|
|
49
|
+
// This follows RFC 8259 guidelines for interoperable JSON: notably this type
|
|
50
|
+
// cannot represent large Int64 values or `NaN`/`Infinity` numbers,
|
|
51
|
+
// since the JSON format generally does not support those values in its number
|
|
52
|
+
// type.
|
|
53
|
+
//
|
|
54
|
+
// If you do not intend to parse arbitrary JSON into your message, a custom
|
|
55
|
+
// typed message should be preferred instead of using this type.
|
|
51
56
|
message Struct {
|
|
52
57
|
// Unordered map of dynamically typed values.
|
|
53
58
|
map<string, Value> fields = 1;
|
|
54
59
|
}
|
|
55
60
|
|
|
61
|
+
// Represents a JSON value.
|
|
62
|
+
//
|
|
56
63
|
// `Value` represents a dynamically typed value which can be either
|
|
57
64
|
// null, a number, a string, a boolean, a recursive struct value, or a
|
|
58
65
|
// list of values. A producer of value is expected to set one of these
|
|
59
|
-
// variants. Absence of any variant
|
|
60
|
-
//
|
|
61
|
-
// The JSON representation for `Value` is JSON value.
|
|
66
|
+
// variants. Absence of any variant is an invalid state.
|
|
62
67
|
message Value {
|
|
63
68
|
// The kind of value.
|
|
64
69
|
oneof kind {
|
|
65
|
-
// Represents a null
|
|
70
|
+
// Represents a JSON `null`.
|
|
66
71
|
NullValue null_value = 1;
|
|
67
|
-
|
|
72
|
+
|
|
73
|
+
// Represents a JSON number. Must not be `NaN`, `Infinity` or
|
|
74
|
+
// `-Infinity`, since those are not supported in JSON. This also cannot
|
|
75
|
+
// represent large Int64 values, since JSON format generally does not
|
|
76
|
+
// support them in its number type.
|
|
68
77
|
double number_value = 2;
|
|
69
|
-
|
|
78
|
+
|
|
79
|
+
// Represents a JSON string.
|
|
70
80
|
string string_value = 3;
|
|
71
|
-
|
|
81
|
+
|
|
82
|
+
// Represents a JSON boolean (`true` or `false` literal in JSON).
|
|
72
83
|
bool bool_value = 4;
|
|
73
|
-
|
|
84
|
+
|
|
85
|
+
// Represents a JSON object.
|
|
74
86
|
Struct struct_value = 5;
|
|
75
|
-
|
|
87
|
+
|
|
88
|
+
// Represents a JSON array.
|
|
76
89
|
ListValue list_value = 6;
|
|
77
90
|
}
|
|
78
91
|
}
|
|
79
92
|
|
|
80
|
-
//
|
|
81
|
-
// `Value` type union.
|
|
93
|
+
// Represents a JSON `null`.
|
|
82
94
|
//
|
|
83
|
-
//
|
|
95
|
+
// `NullValue` is a sentinel, using an enum with only one value to represent
|
|
96
|
+
// the null value for the `Value` type union.
|
|
97
|
+
//
|
|
98
|
+
// A field of type `NullValue` with any value other than `0` is considered
|
|
99
|
+
// invalid. Most ProtoJSON serializers will emit a Value with a `null_value` set
|
|
100
|
+
// as a JSON `null` regardless of the integer value, and so will round trip to
|
|
101
|
+
// a `0` value.
|
|
84
102
|
enum NullValue {
|
|
85
103
|
// Null value.
|
|
86
104
|
NULL_VALUE = 0;
|
|
87
105
|
}
|
|
88
106
|
|
|
89
|
-
//
|
|
90
|
-
//
|
|
91
|
-
// The JSON representation for `ListValue` is JSON array.
|
|
107
|
+
// Represents a JSON array.
|
|
92
108
|
message ListValue {
|
|
93
109
|
// Repeated field of dynamically typed values.
|
|
94
110
|
repeated Value values = 1;
|
|
@@ -112,8 +112,8 @@ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
|
|
112
112
|
// {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
|
|
113
113
|
// seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
|
|
114
114
|
// are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
|
|
115
|
-
// is required. A
|
|
116
|
-
// "Z") when printing the Timestamp type and a
|
|
115
|
+
// is required. A ProtoJSON serializer should always use UTC (as indicated by
|
|
116
|
+
// "Z") when printing the Timestamp type and a ProtoJSON parser should be
|
|
117
117
|
// able to accept both UTC and other timezones (as indicated by an offset).
|
|
118
118
|
//
|
|
119
119
|
// For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
|
|
@@ -131,14 +131,15 @@ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
|
|
131
131
|
// ) to obtain a formatter capable of generating timestamps in this format.
|
|
132
132
|
//
|
|
133
133
|
message Timestamp {
|
|
134
|
-
// Represents seconds of UTC time since Unix epoch
|
|
135
|
-
//
|
|
136
|
-
// 9999-12-31T23:59:59Z
|
|
134
|
+
// Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
|
|
135
|
+
// be between -62135596800 and 253402300799 inclusive (which corresponds to
|
|
136
|
+
// 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z).
|
|
137
137
|
int64 seconds = 1;
|
|
138
138
|
|
|
139
|
-
// Non-negative fractions of a second at nanosecond resolution.
|
|
140
|
-
//
|
|
141
|
-
//
|
|
139
|
+
// Non-negative fractions of a second at nanosecond resolution. This field is
|
|
140
|
+
// the nanosecond portion of the duration, not an alternative to seconds.
|
|
141
|
+
// Negative second values with fractions must still have non-negative nanos
|
|
142
|
+
// values that count forward in time. Must be between 0 and 999,999,999
|
|
142
143
|
// inclusive.
|
|
143
144
|
int32 nanos = 2;
|
|
144
145
|
}
|
|
@@ -44,6 +44,11 @@ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
|
|
44
44
|
option go_package = "google.golang.org/protobuf/types/known/typepb";
|
|
45
45
|
|
|
46
46
|
// A protocol buffer message type.
|
|
47
|
+
//
|
|
48
|
+
// New usages of this message as an alternative to DescriptorProto are strongly
|
|
49
|
+
// discouraged. This message does not reliability preserve all information
|
|
50
|
+
// necessary to model the schema and preserve semantics. Instead make use of
|
|
51
|
+
// FileDescriptorSet which preserves the necessary information.
|
|
47
52
|
message Type {
|
|
48
53
|
// The fully qualified message name.
|
|
49
54
|
string name = 1;
|
|
@@ -62,6 +67,11 @@ message Type {
|
|
|
62
67
|
}
|
|
63
68
|
|
|
64
69
|
// A single field of a message type.
|
|
70
|
+
//
|
|
71
|
+
// New usages of this message as an alternative to FieldDescriptorProto are
|
|
72
|
+
// strongly discouraged. This message does not reliability preserve all
|
|
73
|
+
// information necessary to model the schema and preserve semantics. Instead
|
|
74
|
+
// make use of FileDescriptorSet which preserves the necessary information.
|
|
65
75
|
message Field {
|
|
66
76
|
// Basic field types.
|
|
67
77
|
enum Kind {
|
|
@@ -142,6 +152,11 @@ message Field {
|
|
|
142
152
|
}
|
|
143
153
|
|
|
144
154
|
// Enum type definition.
|
|
155
|
+
//
|
|
156
|
+
// New usages of this message as an alternative to EnumDescriptorProto are
|
|
157
|
+
// strongly discouraged. This message does not reliability preserve all
|
|
158
|
+
// information necessary to model the schema and preserve semantics. Instead
|
|
159
|
+
// make use of FileDescriptorSet which preserves the necessary information.
|
|
145
160
|
message Enum {
|
|
146
161
|
// Enum type name.
|
|
147
162
|
string name = 1;
|
|
@@ -158,6 +173,11 @@ message Enum {
|
|
|
158
173
|
}
|
|
159
174
|
|
|
160
175
|
// Enum value definition.
|
|
176
|
+
//
|
|
177
|
+
// New usages of this message as an alternative to EnumValueDescriptorProto are
|
|
178
|
+
// strongly discouraged. This message does not reliability preserve all
|
|
179
|
+
// information necessary to model the schema and preserve semantics. Instead
|
|
180
|
+
// make use of FileDescriptorSet which preserves the necessary information.
|
|
161
181
|
message EnumValue {
|
|
162
182
|
// Enum value name.
|
|
163
183
|
string name = 1;
|
|
@@ -169,6 +189,10 @@ message EnumValue {
|
|
|
169
189
|
|
|
170
190
|
// A protocol buffer option, which can be attached to a message, field,
|
|
171
191
|
// enumeration, etc.
|
|
192
|
+
//
|
|
193
|
+
// New usages of this message as an alternative to FileOptions, MessageOptions,
|
|
194
|
+
// FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions, or MethodOptions
|
|
195
|
+
// are strongly discouraged.
|
|
172
196
|
message Option {
|
|
173
197
|
// The option's name. For protobuf built-in options (options defined in
|
|
174
198
|
// descriptor.proto), this is the short name. For example, `"map_entry"`.
|
|
@@ -28,10 +28,17 @@
|
|
|
28
28
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
29
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
30
30
|
//
|
|
31
|
-
// Wrappers for primitive (non-message) types. These types
|
|
32
|
-
// for
|
|
33
|
-
//
|
|
34
|
-
//
|
|
31
|
+
// Wrappers for primitive (non-message) types. These types were needed
|
|
32
|
+
// for legacy reasons and are not recommended for use in new APIs.
|
|
33
|
+
//
|
|
34
|
+
// Historically these wrappers were useful to have presence on proto3 primitive
|
|
35
|
+
// fields, but proto3 syntax has been updated to support the `optional` keyword.
|
|
36
|
+
// Using that keyword is now the strongly preferred way to add presence to
|
|
37
|
+
// proto3 primitive fields.
|
|
38
|
+
//
|
|
39
|
+
// A secondary usecase was to embed primitives in the `google.protobuf.Any`
|
|
40
|
+
// type: it is now recommended that you embed your value in your own wrapper
|
|
41
|
+
// message which can be specifically documented.
|
|
35
42
|
//
|
|
36
43
|
// These wrappers have no meaningful use within repeated fields as they lack
|
|
37
44
|
// the ability to detect presence on individual elements.
|
|
@@ -53,6 +60,9 @@ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
|
|
53
60
|
// Wrapper message for `double`.
|
|
54
61
|
//
|
|
55
62
|
// The JSON representation for `DoubleValue` is JSON number.
|
|
63
|
+
//
|
|
64
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
65
|
+
// has no plan to be removed.
|
|
56
66
|
message DoubleValue {
|
|
57
67
|
// The double value.
|
|
58
68
|
double value = 1;
|
|
@@ -61,6 +71,9 @@ message DoubleValue {
|
|
|
61
71
|
// Wrapper message for `float`.
|
|
62
72
|
//
|
|
63
73
|
// The JSON representation for `FloatValue` is JSON number.
|
|
74
|
+
//
|
|
75
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
76
|
+
// has no plan to be removed.
|
|
64
77
|
message FloatValue {
|
|
65
78
|
// The float value.
|
|
66
79
|
float value = 1;
|
|
@@ -69,6 +82,9 @@ message FloatValue {
|
|
|
69
82
|
// Wrapper message for `int64`.
|
|
70
83
|
//
|
|
71
84
|
// The JSON representation for `Int64Value` is JSON string.
|
|
85
|
+
//
|
|
86
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
87
|
+
// has no plan to be removed.
|
|
72
88
|
message Int64Value {
|
|
73
89
|
// The int64 value.
|
|
74
90
|
int64 value = 1;
|
|
@@ -77,6 +93,9 @@ message Int64Value {
|
|
|
77
93
|
// Wrapper message for `uint64`.
|
|
78
94
|
//
|
|
79
95
|
// The JSON representation for `UInt64Value` is JSON string.
|
|
96
|
+
//
|
|
97
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
98
|
+
// has no plan to be removed.
|
|
80
99
|
message UInt64Value {
|
|
81
100
|
// The uint64 value.
|
|
82
101
|
uint64 value = 1;
|
|
@@ -85,6 +104,9 @@ message UInt64Value {
|
|
|
85
104
|
// Wrapper message for `int32`.
|
|
86
105
|
//
|
|
87
106
|
// The JSON representation for `Int32Value` is JSON number.
|
|
107
|
+
//
|
|
108
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
109
|
+
// has no plan to be removed.
|
|
88
110
|
message Int32Value {
|
|
89
111
|
// The int32 value.
|
|
90
112
|
int32 value = 1;
|
|
@@ -93,6 +115,9 @@ message Int32Value {
|
|
|
93
115
|
// Wrapper message for `uint32`.
|
|
94
116
|
//
|
|
95
117
|
// The JSON representation for `UInt32Value` is JSON number.
|
|
118
|
+
//
|
|
119
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
120
|
+
// has no plan to be removed.
|
|
96
121
|
message UInt32Value {
|
|
97
122
|
// The uint32 value.
|
|
98
123
|
uint32 value = 1;
|
|
@@ -101,6 +126,9 @@ message UInt32Value {
|
|
|
101
126
|
// Wrapper message for `bool`.
|
|
102
127
|
//
|
|
103
128
|
// The JSON representation for `BoolValue` is JSON `true` and `false`.
|
|
129
|
+
//
|
|
130
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
131
|
+
// has no plan to be removed.
|
|
104
132
|
message BoolValue {
|
|
105
133
|
// The bool value.
|
|
106
134
|
bool value = 1;
|
|
@@ -109,6 +137,9 @@ message BoolValue {
|
|
|
109
137
|
// Wrapper message for `string`.
|
|
110
138
|
//
|
|
111
139
|
// The JSON representation for `StringValue` is JSON string.
|
|
140
|
+
//
|
|
141
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
142
|
+
// has no plan to be removed.
|
|
112
143
|
message StringValue {
|
|
113
144
|
// The string value.
|
|
114
145
|
string value = 1;
|
|
@@ -117,6 +148,9 @@ message StringValue {
|
|
|
117
148
|
// Wrapper message for `bytes`.
|
|
118
149
|
//
|
|
119
150
|
// The JSON representation for `BytesValue` is JSON string.
|
|
151
|
+
//
|
|
152
|
+
// Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
153
|
+
// has no plan to be removed.
|
|
120
154
|
message BytesValue {
|
|
121
155
|
// The bytes value.
|
|
122
156
|
bytes value = 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.82.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:
|
|
11
|
+
date: 2026-07-02 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
|
|
@@ -105,14 +105,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
105
105
|
requirements:
|
|
106
106
|
- - ">="
|
|
107
107
|
- !ruby/object:Gem::Version
|
|
108
|
-
version: '
|
|
108
|
+
version: '3.2'
|
|
109
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
requirements:
|
|
111
111
|
- - ">="
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
113
|
version: '0'
|
|
114
114
|
requirements: []
|
|
115
|
-
rubygems_version: 3.
|
|
115
|
+
rubygems_version: 3.4.19
|
|
116
116
|
signing_key:
|
|
117
117
|
specification_version: 4
|
|
118
118
|
summary: Development tools for Ruby gRPC
|