grpc-tools 1.80.0 → 1.81.0.pre1

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/bin/x86-linux/google/protobuf/api.proto +23 -1
  3. data/bin/x86-linux/google/protobuf/compiler/plugin.proto +2 -2
  4. data/bin/x86-linux/google/protobuf/descriptor.proto +18 -1
  5. data/bin/x86-linux/google/protobuf/timestamp.proto +7 -6
  6. data/bin/x86-linux/google/protobuf/type.proto +24 -0
  7. data/bin/x86-linux/grpc_ruby_plugin +0 -0
  8. data/bin/x86-linux/protoc +0 -0
  9. data/bin/x86-windows/google/protobuf/api.proto +23 -1
  10. data/bin/x86-windows/google/protobuf/compiler/plugin.proto +2 -2
  11. data/bin/x86-windows/google/protobuf/descriptor.proto +18 -1
  12. data/bin/x86-windows/google/protobuf/timestamp.proto +7 -6
  13. data/bin/x86-windows/google/protobuf/type.proto +24 -0
  14. data/bin/x86-windows/grpc_ruby_plugin.exe +0 -0
  15. data/bin/x86-windows/protoc.exe +0 -0
  16. data/bin/x86_64-linux/google/protobuf/api.proto +23 -1
  17. data/bin/x86_64-linux/google/protobuf/compiler/plugin.proto +2 -2
  18. data/bin/x86_64-linux/google/protobuf/descriptor.proto +18 -1
  19. data/bin/x86_64-linux/google/protobuf/timestamp.proto +7 -6
  20. data/bin/x86_64-linux/google/protobuf/type.proto +24 -0
  21. data/bin/x86_64-linux/grpc_ruby_plugin +0 -0
  22. data/bin/x86_64-linux/protoc +0 -0
  23. data/bin/x86_64-macos/google/protobuf/api.proto +23 -1
  24. data/bin/x86_64-macos/google/protobuf/compiler/plugin.proto +2 -2
  25. data/bin/x86_64-macos/google/protobuf/descriptor.proto +18 -1
  26. data/bin/x86_64-macos/google/protobuf/timestamp.proto +7 -6
  27. data/bin/x86_64-macos/google/protobuf/type.proto +24 -0
  28. data/bin/x86_64-macos/grpc_ruby_plugin +0 -0
  29. data/bin/x86_64-macos/protoc +0 -0
  30. data/bin/x86_64-windows/google/protobuf/api.proto +23 -1
  31. data/bin/x86_64-windows/google/protobuf/compiler/plugin.proto +2 -2
  32. data/bin/x86_64-windows/google/protobuf/descriptor.proto +18 -1
  33. data/bin/x86_64-windows/google/protobuf/timestamp.proto +7 -6
  34. data/bin/x86_64-windows/google/protobuf/type.proto +24 -0
  35. data/bin/x86_64-windows/grpc_ruby_plugin.exe +0 -0
  36. data/bin/x86_64-windows/protoc.exe +0 -0
  37. data/version.rb +1 -1
  38. metadata +9 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee51838c57cc389a675cc94e540ade201f4fb60eaa6bc9ae0c3ab711e27cbab4
4
- data.tar.gz: 32d87d543446f54e5b7a9aa5f13bf483884498302cc8b5ef96b1868f4ea3639d
3
+ metadata.gz: 74157f663886aabcda6af51de3446d478ef7bd6c45b3c1642697f64f82a651c2
4
+ data.tar.gz: 4f72489d66f45547dc441d036d0ff9b6655fd4f0f98055feddd8a7a1b7d43c37
5
5
  SHA512:
6
- metadata.gz: 8acf0c963c18bccd93728840d810cf8e0bf8217d0b9146e09151d2d5e02d33f7ef37023abe7e1abb67626d5e8aa677ddc3596c41a187e26eecaa24f75135d0db
7
- data.tar.gz: a2af74e16680467eda69e73e59943682db9ceba2eb7bd200db9a71763b3f276f76d208706dd536baa634435512344fbc3510ff62c0c97e1a48b48bb1ecf3d3a9
6
+ metadata.gz: 9283a19e63bf3462993466ad6899df0ead6827449a7a9e102f9f9c6e0dae13d798633ffb0e9d5fb183d1ad70df7c5af64255fb4a9ba99a7b15d5f54c9474e132
7
+ data.tar.gz: 9ecc10e54cce2e6959da099fd6fbc64651919a23e1bc8cb26395b5e4ddbf1202f225953603d1a4e033419159aa10c05a3ca86c22861c45c63a48658bee6709e0
@@ -51,6 +51,11 @@ option go_package = "google.golang.org/protobuf/types/known/apipb";
51
51
  // sometimes simply referred to as "APIs" in other contexts, such as the name of
52
52
  // this message itself. See https://cloud.google.com/apis/design/glossary for
53
53
  // detailed terminology.
54
+ //
55
+ // New usages of this message as an alternative to ServiceDescriptorProto are
56
+ // strongly discouraged. This message does not reliability preserve all
57
+ // information necessary to model the schema and preserve semantics. Instead
58
+ // make use of FileDescriptorSet which preserves the necessary information.
54
59
  message Api {
55
60
  // The fully qualified name of this interface, including package name
56
61
  // followed by the interface's simple name.
@@ -93,9 +98,17 @@ message Api {
93
98
 
94
99
  // The source syntax of the service.
95
100
  Syntax syntax = 7;
101
+
102
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
103
+ string edition = 8;
96
104
  }
97
105
 
98
106
  // Method represents a method of an API interface.
107
+ //
108
+ // New usages of this message as an alternative to MethodDescriptorProto are
109
+ // strongly discouraged. This message does not reliability preserve all
110
+ // information necessary to model the schema and preserve semantics. Instead
111
+ // make use of FileDescriptorSet which preserves the necessary information.
99
112
  message Method {
100
113
  // The simple name of this method.
101
114
  string name = 1;
@@ -116,7 +129,16 @@ message Method {
116
129
  repeated Option options = 6;
117
130
 
118
131
  // The source syntax of this method.
119
- Syntax syntax = 7;
132
+ //
133
+ // This field should be ignored, instead the syntax should be inherited from
134
+ // Api. This is similar to Field and EnumValue.
135
+ Syntax syntax = 7 [deprecated = true];
136
+
137
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
138
+ //
139
+ // This field should be ignored, instead the edition should be inherited from
140
+ // Api. This is similar to Field and EnumValue.
141
+ string edition = 8 [deprecated = true];
120
142
  }
121
143
 
122
144
  // Declares an API Interface to be included in this interface. The including
@@ -24,11 +24,11 @@ package google.protobuf.compiler;
24
24
  option java_package = "com.google.protobuf.compiler";
25
25
  option java_outer_classname = "PluginProtos";
26
26
 
27
+ import "google/protobuf/descriptor.proto";
28
+
27
29
  option csharp_namespace = "Google.Protobuf.Compiler";
28
30
  option go_package = "google.golang.org/protobuf/types/pluginpb";
29
31
 
30
- import "google/protobuf/descriptor.proto";
31
-
32
32
  // The version number of protocol compiler.
33
33
  message Version {
34
34
  optional int32 major = 1;
@@ -86,6 +86,9 @@ enum Edition {
86
86
  EDITION_2023 = 1000;
87
87
  EDITION_2024 = 1001;
88
88
 
89
+ // A placeholder edition for developing and testing unscheduled features.
90
+ EDITION_UNSTABLE = 9999;
91
+
89
92
  // Placeholder editions for testing feature resolution. These should not be
90
93
  // used or relied on outside of tests.
91
94
  EDITION_1_TEST_ONLY = 1;
@@ -398,6 +401,9 @@ message ServiceDescriptorProto {
398
401
  repeated MethodDescriptorProto method = 2;
399
402
 
400
403
  optional ServiceOptions options = 3;
404
+
405
+ reserved 4;
406
+ reserved "stream";
401
407
  }
402
408
 
403
409
  // Describes a method of a service.
@@ -753,8 +759,9 @@ message FieldOptions {
753
759
  // is a formalization for deprecating fields.
754
760
  optional bool deprecated = 3 [default = false];
755
761
 
762
+ // DEPRECATED. DO NOT USE!
756
763
  // For Google-internal migration only. Do not use.
757
- optional bool weak = 10 [default = false];
764
+ optional bool weak = 10 [default = false, deprecated = true];
758
765
 
759
766
  // Indicate that the field value should not be printed out when using debug
760
767
  // formats, e.g. when the field contains sensitive credentials.
@@ -1181,6 +1188,16 @@ message FeatureSet {
1181
1188
  full_name: ".pb.python",
1182
1189
  type: ".pb.PythonFeatures"
1183
1190
  },
1191
+ declaration = {
1192
+ number: 1100,
1193
+ full_name: ".imp.impress_feature_set",
1194
+ type: ".imp.ImpressFeatureSet"
1195
+ },
1196
+ declaration = {
1197
+ number: 9989,
1198
+ full_name: ".pb.java_mutable",
1199
+ type: ".pb.JavaMutableFeatures"
1200
+ },
1184
1201
  declaration = {
1185
1202
  number: 9990,
1186
1203
  full_name: ".pb.proto1",
@@ -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
- // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
136
- // 9999-12-31T23:59:59Z inclusive.
134
+ // Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
135
+ // be between -315576000000 and 315576000000 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. Negative
140
- // second values with fractions must still have non-negative nanos values
141
- // that count forward in time. Must be from 0 to 999,999,999
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"`.
Binary file
data/bin/x86-linux/protoc CHANGED
Binary file
@@ -51,6 +51,11 @@ option go_package = "google.golang.org/protobuf/types/known/apipb";
51
51
  // sometimes simply referred to as "APIs" in other contexts, such as the name of
52
52
  // this message itself. See https://cloud.google.com/apis/design/glossary for
53
53
  // detailed terminology.
54
+ //
55
+ // New usages of this message as an alternative to ServiceDescriptorProto are
56
+ // strongly discouraged. This message does not reliability preserve all
57
+ // information necessary to model the schema and preserve semantics. Instead
58
+ // make use of FileDescriptorSet which preserves the necessary information.
54
59
  message Api {
55
60
  // The fully qualified name of this interface, including package name
56
61
  // followed by the interface's simple name.
@@ -93,9 +98,17 @@ message Api {
93
98
 
94
99
  // The source syntax of the service.
95
100
  Syntax syntax = 7;
101
+
102
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
103
+ string edition = 8;
96
104
  }
97
105
 
98
106
  // Method represents a method of an API interface.
107
+ //
108
+ // New usages of this message as an alternative to MethodDescriptorProto are
109
+ // strongly discouraged. This message does not reliability preserve all
110
+ // information necessary to model the schema and preserve semantics. Instead
111
+ // make use of FileDescriptorSet which preserves the necessary information.
99
112
  message Method {
100
113
  // The simple name of this method.
101
114
  string name = 1;
@@ -116,7 +129,16 @@ message Method {
116
129
  repeated Option options = 6;
117
130
 
118
131
  // The source syntax of this method.
119
- Syntax syntax = 7;
132
+ //
133
+ // This field should be ignored, instead the syntax should be inherited from
134
+ // Api. This is similar to Field and EnumValue.
135
+ Syntax syntax = 7 [deprecated = true];
136
+
137
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
138
+ //
139
+ // This field should be ignored, instead the edition should be inherited from
140
+ // Api. This is similar to Field and EnumValue.
141
+ string edition = 8 [deprecated = true];
120
142
  }
121
143
 
122
144
  // Declares an API Interface to be included in this interface. The including
@@ -24,11 +24,11 @@ package google.protobuf.compiler;
24
24
  option java_package = "com.google.protobuf.compiler";
25
25
  option java_outer_classname = "PluginProtos";
26
26
 
27
+ import "google/protobuf/descriptor.proto";
28
+
27
29
  option csharp_namespace = "Google.Protobuf.Compiler";
28
30
  option go_package = "google.golang.org/protobuf/types/pluginpb";
29
31
 
30
- import "google/protobuf/descriptor.proto";
31
-
32
32
  // The version number of protocol compiler.
33
33
  message Version {
34
34
  optional int32 major = 1;
@@ -86,6 +86,9 @@ enum Edition {
86
86
  EDITION_2023 = 1000;
87
87
  EDITION_2024 = 1001;
88
88
 
89
+ // A placeholder edition for developing and testing unscheduled features.
90
+ EDITION_UNSTABLE = 9999;
91
+
89
92
  // Placeholder editions for testing feature resolution. These should not be
90
93
  // used or relied on outside of tests.
91
94
  EDITION_1_TEST_ONLY = 1;
@@ -398,6 +401,9 @@ message ServiceDescriptorProto {
398
401
  repeated MethodDescriptorProto method = 2;
399
402
 
400
403
  optional ServiceOptions options = 3;
404
+
405
+ reserved 4;
406
+ reserved "stream";
401
407
  }
402
408
 
403
409
  // Describes a method of a service.
@@ -753,8 +759,9 @@ message FieldOptions {
753
759
  // is a formalization for deprecating fields.
754
760
  optional bool deprecated = 3 [default = false];
755
761
 
762
+ // DEPRECATED. DO NOT USE!
756
763
  // For Google-internal migration only. Do not use.
757
- optional bool weak = 10 [default = false];
764
+ optional bool weak = 10 [default = false, deprecated = true];
758
765
 
759
766
  // Indicate that the field value should not be printed out when using debug
760
767
  // formats, e.g. when the field contains sensitive credentials.
@@ -1181,6 +1188,16 @@ message FeatureSet {
1181
1188
  full_name: ".pb.python",
1182
1189
  type: ".pb.PythonFeatures"
1183
1190
  },
1191
+ declaration = {
1192
+ number: 1100,
1193
+ full_name: ".imp.impress_feature_set",
1194
+ type: ".imp.ImpressFeatureSet"
1195
+ },
1196
+ declaration = {
1197
+ number: 9989,
1198
+ full_name: ".pb.java_mutable",
1199
+ type: ".pb.JavaMutableFeatures"
1200
+ },
1184
1201
  declaration = {
1185
1202
  number: 9990,
1186
1203
  full_name: ".pb.proto1",
@@ -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
- // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
136
- // 9999-12-31T23:59:59Z inclusive.
134
+ // Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
135
+ // be between -315576000000 and 315576000000 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. Negative
140
- // second values with fractions must still have non-negative nanos values
141
- // that count forward in time. Must be from 0 to 999,999,999
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"`.
Binary file
Binary file
@@ -51,6 +51,11 @@ option go_package = "google.golang.org/protobuf/types/known/apipb";
51
51
  // sometimes simply referred to as "APIs" in other contexts, such as the name of
52
52
  // this message itself. See https://cloud.google.com/apis/design/glossary for
53
53
  // detailed terminology.
54
+ //
55
+ // New usages of this message as an alternative to ServiceDescriptorProto are
56
+ // strongly discouraged. This message does not reliability preserve all
57
+ // information necessary to model the schema and preserve semantics. Instead
58
+ // make use of FileDescriptorSet which preserves the necessary information.
54
59
  message Api {
55
60
  // The fully qualified name of this interface, including package name
56
61
  // followed by the interface's simple name.
@@ -93,9 +98,17 @@ message Api {
93
98
 
94
99
  // The source syntax of the service.
95
100
  Syntax syntax = 7;
101
+
102
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
103
+ string edition = 8;
96
104
  }
97
105
 
98
106
  // Method represents a method of an API interface.
107
+ //
108
+ // New usages of this message as an alternative to MethodDescriptorProto are
109
+ // strongly discouraged. This message does not reliability preserve all
110
+ // information necessary to model the schema and preserve semantics. Instead
111
+ // make use of FileDescriptorSet which preserves the necessary information.
99
112
  message Method {
100
113
  // The simple name of this method.
101
114
  string name = 1;
@@ -116,7 +129,16 @@ message Method {
116
129
  repeated Option options = 6;
117
130
 
118
131
  // The source syntax of this method.
119
- Syntax syntax = 7;
132
+ //
133
+ // This field should be ignored, instead the syntax should be inherited from
134
+ // Api. This is similar to Field and EnumValue.
135
+ Syntax syntax = 7 [deprecated = true];
136
+
137
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
138
+ //
139
+ // This field should be ignored, instead the edition should be inherited from
140
+ // Api. This is similar to Field and EnumValue.
141
+ string edition = 8 [deprecated = true];
120
142
  }
121
143
 
122
144
  // Declares an API Interface to be included in this interface. The including
@@ -24,11 +24,11 @@ package google.protobuf.compiler;
24
24
  option java_package = "com.google.protobuf.compiler";
25
25
  option java_outer_classname = "PluginProtos";
26
26
 
27
+ import "google/protobuf/descriptor.proto";
28
+
27
29
  option csharp_namespace = "Google.Protobuf.Compiler";
28
30
  option go_package = "google.golang.org/protobuf/types/pluginpb";
29
31
 
30
- import "google/protobuf/descriptor.proto";
31
-
32
32
  // The version number of protocol compiler.
33
33
  message Version {
34
34
  optional int32 major = 1;
@@ -86,6 +86,9 @@ enum Edition {
86
86
  EDITION_2023 = 1000;
87
87
  EDITION_2024 = 1001;
88
88
 
89
+ // A placeholder edition for developing and testing unscheduled features.
90
+ EDITION_UNSTABLE = 9999;
91
+
89
92
  // Placeholder editions for testing feature resolution. These should not be
90
93
  // used or relied on outside of tests.
91
94
  EDITION_1_TEST_ONLY = 1;
@@ -398,6 +401,9 @@ message ServiceDescriptorProto {
398
401
  repeated MethodDescriptorProto method = 2;
399
402
 
400
403
  optional ServiceOptions options = 3;
404
+
405
+ reserved 4;
406
+ reserved "stream";
401
407
  }
402
408
 
403
409
  // Describes a method of a service.
@@ -753,8 +759,9 @@ message FieldOptions {
753
759
  // is a formalization for deprecating fields.
754
760
  optional bool deprecated = 3 [default = false];
755
761
 
762
+ // DEPRECATED. DO NOT USE!
756
763
  // For Google-internal migration only. Do not use.
757
- optional bool weak = 10 [default = false];
764
+ optional bool weak = 10 [default = false, deprecated = true];
758
765
 
759
766
  // Indicate that the field value should not be printed out when using debug
760
767
  // formats, e.g. when the field contains sensitive credentials.
@@ -1181,6 +1188,16 @@ message FeatureSet {
1181
1188
  full_name: ".pb.python",
1182
1189
  type: ".pb.PythonFeatures"
1183
1190
  },
1191
+ declaration = {
1192
+ number: 1100,
1193
+ full_name: ".imp.impress_feature_set",
1194
+ type: ".imp.ImpressFeatureSet"
1195
+ },
1196
+ declaration = {
1197
+ number: 9989,
1198
+ full_name: ".pb.java_mutable",
1199
+ type: ".pb.JavaMutableFeatures"
1200
+ },
1184
1201
  declaration = {
1185
1202
  number: 9990,
1186
1203
  full_name: ".pb.proto1",
@@ -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
- // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
136
- // 9999-12-31T23:59:59Z inclusive.
134
+ // Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
135
+ // be between -315576000000 and 315576000000 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. Negative
140
- // second values with fractions must still have non-negative nanos values
141
- // that count forward in time. Must be from 0 to 999,999,999
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"`.
Binary file
Binary file
@@ -51,6 +51,11 @@ option go_package = "google.golang.org/protobuf/types/known/apipb";
51
51
  // sometimes simply referred to as "APIs" in other contexts, such as the name of
52
52
  // this message itself. See https://cloud.google.com/apis/design/glossary for
53
53
  // detailed terminology.
54
+ //
55
+ // New usages of this message as an alternative to ServiceDescriptorProto are
56
+ // strongly discouraged. This message does not reliability preserve all
57
+ // information necessary to model the schema and preserve semantics. Instead
58
+ // make use of FileDescriptorSet which preserves the necessary information.
54
59
  message Api {
55
60
  // The fully qualified name of this interface, including package name
56
61
  // followed by the interface's simple name.
@@ -93,9 +98,17 @@ message Api {
93
98
 
94
99
  // The source syntax of the service.
95
100
  Syntax syntax = 7;
101
+
102
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
103
+ string edition = 8;
96
104
  }
97
105
 
98
106
  // Method represents a method of an API interface.
107
+ //
108
+ // New usages of this message as an alternative to MethodDescriptorProto are
109
+ // strongly discouraged. This message does not reliability preserve all
110
+ // information necessary to model the schema and preserve semantics. Instead
111
+ // make use of FileDescriptorSet which preserves the necessary information.
99
112
  message Method {
100
113
  // The simple name of this method.
101
114
  string name = 1;
@@ -116,7 +129,16 @@ message Method {
116
129
  repeated Option options = 6;
117
130
 
118
131
  // The source syntax of this method.
119
- Syntax syntax = 7;
132
+ //
133
+ // This field should be ignored, instead the syntax should be inherited from
134
+ // Api. This is similar to Field and EnumValue.
135
+ Syntax syntax = 7 [deprecated = true];
136
+
137
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
138
+ //
139
+ // This field should be ignored, instead the edition should be inherited from
140
+ // Api. This is similar to Field and EnumValue.
141
+ string edition = 8 [deprecated = true];
120
142
  }
121
143
 
122
144
  // Declares an API Interface to be included in this interface. The including
@@ -24,11 +24,11 @@ package google.protobuf.compiler;
24
24
  option java_package = "com.google.protobuf.compiler";
25
25
  option java_outer_classname = "PluginProtos";
26
26
 
27
+ import "google/protobuf/descriptor.proto";
28
+
27
29
  option csharp_namespace = "Google.Protobuf.Compiler";
28
30
  option go_package = "google.golang.org/protobuf/types/pluginpb";
29
31
 
30
- import "google/protobuf/descriptor.proto";
31
-
32
32
  // The version number of protocol compiler.
33
33
  message Version {
34
34
  optional int32 major = 1;
@@ -86,6 +86,9 @@ enum Edition {
86
86
  EDITION_2023 = 1000;
87
87
  EDITION_2024 = 1001;
88
88
 
89
+ // A placeholder edition for developing and testing unscheduled features.
90
+ EDITION_UNSTABLE = 9999;
91
+
89
92
  // Placeholder editions for testing feature resolution. These should not be
90
93
  // used or relied on outside of tests.
91
94
  EDITION_1_TEST_ONLY = 1;
@@ -398,6 +401,9 @@ message ServiceDescriptorProto {
398
401
  repeated MethodDescriptorProto method = 2;
399
402
 
400
403
  optional ServiceOptions options = 3;
404
+
405
+ reserved 4;
406
+ reserved "stream";
401
407
  }
402
408
 
403
409
  // Describes a method of a service.
@@ -753,8 +759,9 @@ message FieldOptions {
753
759
  // is a formalization for deprecating fields.
754
760
  optional bool deprecated = 3 [default = false];
755
761
 
762
+ // DEPRECATED. DO NOT USE!
756
763
  // For Google-internal migration only. Do not use.
757
- optional bool weak = 10 [default = false];
764
+ optional bool weak = 10 [default = false, deprecated = true];
758
765
 
759
766
  // Indicate that the field value should not be printed out when using debug
760
767
  // formats, e.g. when the field contains sensitive credentials.
@@ -1181,6 +1188,16 @@ message FeatureSet {
1181
1188
  full_name: ".pb.python",
1182
1189
  type: ".pb.PythonFeatures"
1183
1190
  },
1191
+ declaration = {
1192
+ number: 1100,
1193
+ full_name: ".imp.impress_feature_set",
1194
+ type: ".imp.ImpressFeatureSet"
1195
+ },
1196
+ declaration = {
1197
+ number: 9989,
1198
+ full_name: ".pb.java_mutable",
1199
+ type: ".pb.JavaMutableFeatures"
1200
+ },
1184
1201
  declaration = {
1185
1202
  number: 9990,
1186
1203
  full_name: ".pb.proto1",
@@ -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
- // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
136
- // 9999-12-31T23:59:59Z inclusive.
134
+ // Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
135
+ // be between -315576000000 and 315576000000 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. Negative
140
- // second values with fractions must still have non-negative nanos values
141
- // that count forward in time. Must be from 0 to 999,999,999
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"`.
Binary file
Binary file
@@ -51,6 +51,11 @@ option go_package = "google.golang.org/protobuf/types/known/apipb";
51
51
  // sometimes simply referred to as "APIs" in other contexts, such as the name of
52
52
  // this message itself. See https://cloud.google.com/apis/design/glossary for
53
53
  // detailed terminology.
54
+ //
55
+ // New usages of this message as an alternative to ServiceDescriptorProto are
56
+ // strongly discouraged. This message does not reliability preserve all
57
+ // information necessary to model the schema and preserve semantics. Instead
58
+ // make use of FileDescriptorSet which preserves the necessary information.
54
59
  message Api {
55
60
  // The fully qualified name of this interface, including package name
56
61
  // followed by the interface's simple name.
@@ -93,9 +98,17 @@ message Api {
93
98
 
94
99
  // The source syntax of the service.
95
100
  Syntax syntax = 7;
101
+
102
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
103
+ string edition = 8;
96
104
  }
97
105
 
98
106
  // Method represents a method of an API interface.
107
+ //
108
+ // New usages of this message as an alternative to MethodDescriptorProto are
109
+ // strongly discouraged. This message does not reliability preserve all
110
+ // information necessary to model the schema and preserve semantics. Instead
111
+ // make use of FileDescriptorSet which preserves the necessary information.
99
112
  message Method {
100
113
  // The simple name of this method.
101
114
  string name = 1;
@@ -116,7 +129,16 @@ message Method {
116
129
  repeated Option options = 6;
117
130
 
118
131
  // The source syntax of this method.
119
- Syntax syntax = 7;
132
+ //
133
+ // This field should be ignored, instead the syntax should be inherited from
134
+ // Api. This is similar to Field and EnumValue.
135
+ Syntax syntax = 7 [deprecated = true];
136
+
137
+ // The source edition string, only valid when syntax is SYNTAX_EDITIONS.
138
+ //
139
+ // This field should be ignored, instead the edition should be inherited from
140
+ // Api. This is similar to Field and EnumValue.
141
+ string edition = 8 [deprecated = true];
120
142
  }
121
143
 
122
144
  // Declares an API Interface to be included in this interface. The including
@@ -24,11 +24,11 @@ package google.protobuf.compiler;
24
24
  option java_package = "com.google.protobuf.compiler";
25
25
  option java_outer_classname = "PluginProtos";
26
26
 
27
+ import "google/protobuf/descriptor.proto";
28
+
27
29
  option csharp_namespace = "Google.Protobuf.Compiler";
28
30
  option go_package = "google.golang.org/protobuf/types/pluginpb";
29
31
 
30
- import "google/protobuf/descriptor.proto";
31
-
32
32
  // The version number of protocol compiler.
33
33
  message Version {
34
34
  optional int32 major = 1;
@@ -86,6 +86,9 @@ enum Edition {
86
86
  EDITION_2023 = 1000;
87
87
  EDITION_2024 = 1001;
88
88
 
89
+ // A placeholder edition for developing and testing unscheduled features.
90
+ EDITION_UNSTABLE = 9999;
91
+
89
92
  // Placeholder editions for testing feature resolution. These should not be
90
93
  // used or relied on outside of tests.
91
94
  EDITION_1_TEST_ONLY = 1;
@@ -398,6 +401,9 @@ message ServiceDescriptorProto {
398
401
  repeated MethodDescriptorProto method = 2;
399
402
 
400
403
  optional ServiceOptions options = 3;
404
+
405
+ reserved 4;
406
+ reserved "stream";
401
407
  }
402
408
 
403
409
  // Describes a method of a service.
@@ -753,8 +759,9 @@ message FieldOptions {
753
759
  // is a formalization for deprecating fields.
754
760
  optional bool deprecated = 3 [default = false];
755
761
 
762
+ // DEPRECATED. DO NOT USE!
756
763
  // For Google-internal migration only. Do not use.
757
- optional bool weak = 10 [default = false];
764
+ optional bool weak = 10 [default = false, deprecated = true];
758
765
 
759
766
  // Indicate that the field value should not be printed out when using debug
760
767
  // formats, e.g. when the field contains sensitive credentials.
@@ -1181,6 +1188,16 @@ message FeatureSet {
1181
1188
  full_name: ".pb.python",
1182
1189
  type: ".pb.PythonFeatures"
1183
1190
  },
1191
+ declaration = {
1192
+ number: 1100,
1193
+ full_name: ".imp.impress_feature_set",
1194
+ type: ".imp.ImpressFeatureSet"
1195
+ },
1196
+ declaration = {
1197
+ number: 9989,
1198
+ full_name: ".pb.java_mutable",
1199
+ type: ".pb.JavaMutableFeatures"
1200
+ },
1184
1201
  declaration = {
1185
1202
  number: 9990,
1186
1203
  full_name: ".pb.proto1",
@@ -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
- // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
136
- // 9999-12-31T23:59:59Z inclusive.
134
+ // Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
135
+ // be between -315576000000 and 315576000000 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. Negative
140
- // second values with fractions must still have non-negative nanos values
141
- // that count forward in time. Must be from 0 to 999,999,999
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"`.
Binary file
data/version.rb CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  module GRPC
16
16
  module Tools
17
- VERSION = '1.80.0'
17
+ VERSION = '1.81.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.80.0
4
+ version: 1.81.0.pre1
5
5
  platform: ruby
6
6
  authors:
7
7
  - grpc Authors
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-25 00:00:00.000000000 Z
11
+ date: 2026-05-14 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
@@ -97,7 +97,7 @@ homepage: https://github.com/google/grpc/tree/master/src/ruby/tools
97
97
  licenses:
98
98
  - Apache-2.0
99
99
  metadata: {}
100
- post_install_message:
100
+ post_install_message:
101
101
  rdoc_options: []
102
102
  require_paths:
103
103
  - lib
@@ -105,15 +105,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
105
  requirements:
106
106
  - - ">="
107
107
  - !ruby/object:Gem::Version
108
- version: '0'
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
- version: '0'
113
+ version: 1.3.1
114
114
  requirements: []
115
- rubygems_version: 3.3.26
116
- signing_key:
115
+ rubygems_version: 3.4.19
116
+ signing_key:
117
117
  specification_version: 4
118
118
  summary: Development tools for Ruby gRPC
119
119
  test_files: []