grpc-tools 1.67.0 → 1.68.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17a6e08c1fcd2298d5871972f8db51409b7fd5d91ed03ac22f98812fd5fc1fd8
4
- data.tar.gz: e247eca9ed50247d535988e79324f151ae9ef02e7fa0e47a6808cd2bc7310b7d
3
+ metadata.gz: f187de4f455b2f6401ae7b0ed9fae25b42f98d5fc7d8f38167025322da7c7590
4
+ data.tar.gz: 5f96ab9ea95655e3ff162fe16f54611cfe8a218246beb13dcd0255f83d8aad4c
5
5
  SHA512:
6
- metadata.gz: 6de90dc6f4f47921d0ad31d7802c0a09dded373ecc0b0239b59636a3b3187e128f35876cf910771c69ee4f6ea4e6112feadb7178183093f5709bd514af256c2a
7
- data.tar.gz: 888a3420dc4716d53d0101932ddb05deaa7a077b8db8f38410c2b89716818368aa2c074441483c37130869e9068693c5bdab5b86ef64bf7f4b11cf41891b5102
6
+ metadata.gz: 3d6dafc4337c7963dea72c66d685c50f09dc29efa266ff350bba5cc09ff60af1f260322b36bcd2838dda6a741b33b5dfab1bd15f6fb275fa5bbc9273699ba542
7
+ data.tar.gz: 90523407fb66ef16b534e0ff1998ad8012b6103e11dea7cd18c2a6cd2d0bd45c6f712df51d6314c3a57446c9631acb84554d8d0172f71f718fdf86411344ac7a
@@ -635,13 +635,14 @@ message MessageOptions {
635
635
  }
636
636
 
637
637
  message FieldOptions {
638
+ // NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
638
639
  // The ctype option instructs the C++ code generator to use a different
639
640
  // representation of the field than it normally would. See the specific
640
641
  // options below. This option is only implemented to support use of
641
642
  // [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
642
- // type "bytes" in the open source release -- sorry, we'll try to include
643
- // other types in a future version!
644
- optional CType ctype = 1 [default = STRING];
643
+ // type "bytes" in the open source release.
644
+ // TODO: make ctype actually deprecated.
645
+ optional CType ctype = 1 [/*deprecated = true,*/ default = STRING];
645
646
  enum CType {
646
647
  // Default mode.
647
648
  STRING = 0;
@@ -974,11 +975,10 @@ message FeatureSet {
974
975
  retention = RETENTION_RUNTIME,
975
976
  targets = TARGET_TYPE_FIELD,
976
977
  targets = TARGET_TYPE_FILE,
977
- // TODO Enable this in google3 once protoc rolls out.
978
978
  feature_support = {
979
979
  edition_introduced: EDITION_2023,
980
980
  },
981
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPLICIT" },
981
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPLICIT" },
982
982
  edition_defaults = { edition: EDITION_PROTO3, value: "IMPLICIT" },
983
983
  edition_defaults = { edition: EDITION_2023, value: "EXPLICIT" }
984
984
  ];
@@ -992,11 +992,10 @@ message FeatureSet {
992
992
  retention = RETENTION_RUNTIME,
993
993
  targets = TARGET_TYPE_ENUM,
994
994
  targets = TARGET_TYPE_FILE,
995
- // TODO Enable this in google3 once protoc rolls out.
996
995
  feature_support = {
997
996
  edition_introduced: EDITION_2023,
998
997
  },
999
- edition_defaults = { edition: EDITION_PROTO2, value: "CLOSED" },
998
+ edition_defaults = { edition: EDITION_LEGACY, value: "CLOSED" },
1000
999
  edition_defaults = { edition: EDITION_PROTO3, value: "OPEN" }
1001
1000
  ];
1002
1001
 
@@ -1009,11 +1008,10 @@ message FeatureSet {
1009
1008
  retention = RETENTION_RUNTIME,
1010
1009
  targets = TARGET_TYPE_FIELD,
1011
1010
  targets = TARGET_TYPE_FILE,
1012
- // TODO Enable this in google3 once protoc rolls out.
1013
1011
  feature_support = {
1014
1012
  edition_introduced: EDITION_2023,
1015
1013
  },
1016
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPANDED" },
1014
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPANDED" },
1017
1015
  edition_defaults = { edition: EDITION_PROTO3, value: "PACKED" }
1018
1016
  ];
1019
1017
 
@@ -1027,11 +1025,10 @@ message FeatureSet {
1027
1025
  retention = RETENTION_RUNTIME,
1028
1026
  targets = TARGET_TYPE_FIELD,
1029
1027
  targets = TARGET_TYPE_FILE,
1030
- // TODO Enable this in google3 once protoc rolls out.
1031
1028
  feature_support = {
1032
1029
  edition_introduced: EDITION_2023,
1033
1030
  },
1034
- edition_defaults = { edition: EDITION_PROTO2, value: "NONE" },
1031
+ edition_defaults = { edition: EDITION_LEGACY, value: "NONE" },
1035
1032
  edition_defaults = { edition: EDITION_PROTO3, value: "VERIFY" }
1036
1033
  ];
1037
1034
 
@@ -1044,11 +1041,10 @@ message FeatureSet {
1044
1041
  retention = RETENTION_RUNTIME,
1045
1042
  targets = TARGET_TYPE_FIELD,
1046
1043
  targets = TARGET_TYPE_FILE,
1047
- // TODO Enable this in google3 once protoc rolls out.
1048
1044
  feature_support = {
1049
1045
  edition_introduced: EDITION_2023,
1050
1046
  },
1051
- edition_defaults = { edition: EDITION_PROTO2, value: "LENGTH_PREFIXED" }
1047
+ edition_defaults = { edition: EDITION_LEGACY, value: "LENGTH_PREFIXED" }
1052
1048
  ];
1053
1049
 
1054
1050
  enum JsonFormat {
@@ -1061,11 +1057,10 @@ message FeatureSet {
1061
1057
  targets = TARGET_TYPE_MESSAGE,
1062
1058
  targets = TARGET_TYPE_ENUM,
1063
1059
  targets = TARGET_TYPE_FILE,
1064
- // TODO Enable this in google3 once protoc rolls out.
1065
1060
  feature_support = {
1066
1061
  edition_introduced: EDITION_2023,
1067
1062
  },
1068
- edition_defaults = { edition: EDITION_PROTO2, value: "LEGACY_BEST_EFFORT" },
1063
+ edition_defaults = { edition: EDITION_LEGACY, value: "LEGACY_BEST_EFFORT" },
1069
1064
  edition_defaults = { edition: EDITION_PROTO3, value: "ALLOW" }
1070
1065
  ];
1071
1066
 
Binary file
data/bin/x86-linux/protoc CHANGED
Binary file
@@ -635,13 +635,14 @@ message MessageOptions {
635
635
  }
636
636
 
637
637
  message FieldOptions {
638
+ // NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
638
639
  // The ctype option instructs the C++ code generator to use a different
639
640
  // representation of the field than it normally would. See the specific
640
641
  // options below. This option is only implemented to support use of
641
642
  // [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
642
- // type "bytes" in the open source release -- sorry, we'll try to include
643
- // other types in a future version!
644
- optional CType ctype = 1 [default = STRING];
643
+ // type "bytes" in the open source release.
644
+ // TODO: make ctype actually deprecated.
645
+ optional CType ctype = 1 [/*deprecated = true,*/ default = STRING];
645
646
  enum CType {
646
647
  // Default mode.
647
648
  STRING = 0;
@@ -974,11 +975,10 @@ message FeatureSet {
974
975
  retention = RETENTION_RUNTIME,
975
976
  targets = TARGET_TYPE_FIELD,
976
977
  targets = TARGET_TYPE_FILE,
977
- // TODO Enable this in google3 once protoc rolls out.
978
978
  feature_support = {
979
979
  edition_introduced: EDITION_2023,
980
980
  },
981
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPLICIT" },
981
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPLICIT" },
982
982
  edition_defaults = { edition: EDITION_PROTO3, value: "IMPLICIT" },
983
983
  edition_defaults = { edition: EDITION_2023, value: "EXPLICIT" }
984
984
  ];
@@ -992,11 +992,10 @@ message FeatureSet {
992
992
  retention = RETENTION_RUNTIME,
993
993
  targets = TARGET_TYPE_ENUM,
994
994
  targets = TARGET_TYPE_FILE,
995
- // TODO Enable this in google3 once protoc rolls out.
996
995
  feature_support = {
997
996
  edition_introduced: EDITION_2023,
998
997
  },
999
- edition_defaults = { edition: EDITION_PROTO2, value: "CLOSED" },
998
+ edition_defaults = { edition: EDITION_LEGACY, value: "CLOSED" },
1000
999
  edition_defaults = { edition: EDITION_PROTO3, value: "OPEN" }
1001
1000
  ];
1002
1001
 
@@ -1009,11 +1008,10 @@ message FeatureSet {
1009
1008
  retention = RETENTION_RUNTIME,
1010
1009
  targets = TARGET_TYPE_FIELD,
1011
1010
  targets = TARGET_TYPE_FILE,
1012
- // TODO Enable this in google3 once protoc rolls out.
1013
1011
  feature_support = {
1014
1012
  edition_introduced: EDITION_2023,
1015
1013
  },
1016
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPANDED" },
1014
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPANDED" },
1017
1015
  edition_defaults = { edition: EDITION_PROTO3, value: "PACKED" }
1018
1016
  ];
1019
1017
 
@@ -1027,11 +1025,10 @@ message FeatureSet {
1027
1025
  retention = RETENTION_RUNTIME,
1028
1026
  targets = TARGET_TYPE_FIELD,
1029
1027
  targets = TARGET_TYPE_FILE,
1030
- // TODO Enable this in google3 once protoc rolls out.
1031
1028
  feature_support = {
1032
1029
  edition_introduced: EDITION_2023,
1033
1030
  },
1034
- edition_defaults = { edition: EDITION_PROTO2, value: "NONE" },
1031
+ edition_defaults = { edition: EDITION_LEGACY, value: "NONE" },
1035
1032
  edition_defaults = { edition: EDITION_PROTO3, value: "VERIFY" }
1036
1033
  ];
1037
1034
 
@@ -1044,11 +1041,10 @@ message FeatureSet {
1044
1041
  retention = RETENTION_RUNTIME,
1045
1042
  targets = TARGET_TYPE_FIELD,
1046
1043
  targets = TARGET_TYPE_FILE,
1047
- // TODO Enable this in google3 once protoc rolls out.
1048
1044
  feature_support = {
1049
1045
  edition_introduced: EDITION_2023,
1050
1046
  },
1051
- edition_defaults = { edition: EDITION_PROTO2, value: "LENGTH_PREFIXED" }
1047
+ edition_defaults = { edition: EDITION_LEGACY, value: "LENGTH_PREFIXED" }
1052
1048
  ];
1053
1049
 
1054
1050
  enum JsonFormat {
@@ -1061,11 +1057,10 @@ message FeatureSet {
1061
1057
  targets = TARGET_TYPE_MESSAGE,
1062
1058
  targets = TARGET_TYPE_ENUM,
1063
1059
  targets = TARGET_TYPE_FILE,
1064
- // TODO Enable this in google3 once protoc rolls out.
1065
1060
  feature_support = {
1066
1061
  edition_introduced: EDITION_2023,
1067
1062
  },
1068
- edition_defaults = { edition: EDITION_PROTO2, value: "LEGACY_BEST_EFFORT" },
1063
+ edition_defaults = { edition: EDITION_LEGACY, value: "LEGACY_BEST_EFFORT" },
1069
1064
  edition_defaults = { edition: EDITION_PROTO3, value: "ALLOW" }
1070
1065
  ];
1071
1066
 
Binary file
Binary file
@@ -635,13 +635,14 @@ message MessageOptions {
635
635
  }
636
636
 
637
637
  message FieldOptions {
638
+ // NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
638
639
  // The ctype option instructs the C++ code generator to use a different
639
640
  // representation of the field than it normally would. See the specific
640
641
  // options below. This option is only implemented to support use of
641
642
  // [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
642
- // type "bytes" in the open source release -- sorry, we'll try to include
643
- // other types in a future version!
644
- optional CType ctype = 1 [default = STRING];
643
+ // type "bytes" in the open source release.
644
+ // TODO: make ctype actually deprecated.
645
+ optional CType ctype = 1 [/*deprecated = true,*/ default = STRING];
645
646
  enum CType {
646
647
  // Default mode.
647
648
  STRING = 0;
@@ -974,11 +975,10 @@ message FeatureSet {
974
975
  retention = RETENTION_RUNTIME,
975
976
  targets = TARGET_TYPE_FIELD,
976
977
  targets = TARGET_TYPE_FILE,
977
- // TODO Enable this in google3 once protoc rolls out.
978
978
  feature_support = {
979
979
  edition_introduced: EDITION_2023,
980
980
  },
981
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPLICIT" },
981
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPLICIT" },
982
982
  edition_defaults = { edition: EDITION_PROTO3, value: "IMPLICIT" },
983
983
  edition_defaults = { edition: EDITION_2023, value: "EXPLICIT" }
984
984
  ];
@@ -992,11 +992,10 @@ message FeatureSet {
992
992
  retention = RETENTION_RUNTIME,
993
993
  targets = TARGET_TYPE_ENUM,
994
994
  targets = TARGET_TYPE_FILE,
995
- // TODO Enable this in google3 once protoc rolls out.
996
995
  feature_support = {
997
996
  edition_introduced: EDITION_2023,
998
997
  },
999
- edition_defaults = { edition: EDITION_PROTO2, value: "CLOSED" },
998
+ edition_defaults = { edition: EDITION_LEGACY, value: "CLOSED" },
1000
999
  edition_defaults = { edition: EDITION_PROTO3, value: "OPEN" }
1001
1000
  ];
1002
1001
 
@@ -1009,11 +1008,10 @@ message FeatureSet {
1009
1008
  retention = RETENTION_RUNTIME,
1010
1009
  targets = TARGET_TYPE_FIELD,
1011
1010
  targets = TARGET_TYPE_FILE,
1012
- // TODO Enable this in google3 once protoc rolls out.
1013
1011
  feature_support = {
1014
1012
  edition_introduced: EDITION_2023,
1015
1013
  },
1016
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPANDED" },
1014
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPANDED" },
1017
1015
  edition_defaults = { edition: EDITION_PROTO3, value: "PACKED" }
1018
1016
  ];
1019
1017
 
@@ -1027,11 +1025,10 @@ message FeatureSet {
1027
1025
  retention = RETENTION_RUNTIME,
1028
1026
  targets = TARGET_TYPE_FIELD,
1029
1027
  targets = TARGET_TYPE_FILE,
1030
- // TODO Enable this in google3 once protoc rolls out.
1031
1028
  feature_support = {
1032
1029
  edition_introduced: EDITION_2023,
1033
1030
  },
1034
- edition_defaults = { edition: EDITION_PROTO2, value: "NONE" },
1031
+ edition_defaults = { edition: EDITION_LEGACY, value: "NONE" },
1035
1032
  edition_defaults = { edition: EDITION_PROTO3, value: "VERIFY" }
1036
1033
  ];
1037
1034
 
@@ -1044,11 +1041,10 @@ message FeatureSet {
1044
1041
  retention = RETENTION_RUNTIME,
1045
1042
  targets = TARGET_TYPE_FIELD,
1046
1043
  targets = TARGET_TYPE_FILE,
1047
- // TODO Enable this in google3 once protoc rolls out.
1048
1044
  feature_support = {
1049
1045
  edition_introduced: EDITION_2023,
1050
1046
  },
1051
- edition_defaults = { edition: EDITION_PROTO2, value: "LENGTH_PREFIXED" }
1047
+ edition_defaults = { edition: EDITION_LEGACY, value: "LENGTH_PREFIXED" }
1052
1048
  ];
1053
1049
 
1054
1050
  enum JsonFormat {
@@ -1061,11 +1057,10 @@ message FeatureSet {
1061
1057
  targets = TARGET_TYPE_MESSAGE,
1062
1058
  targets = TARGET_TYPE_ENUM,
1063
1059
  targets = TARGET_TYPE_FILE,
1064
- // TODO Enable this in google3 once protoc rolls out.
1065
1060
  feature_support = {
1066
1061
  edition_introduced: EDITION_2023,
1067
1062
  },
1068
- edition_defaults = { edition: EDITION_PROTO2, value: "LEGACY_BEST_EFFORT" },
1063
+ edition_defaults = { edition: EDITION_LEGACY, value: "LEGACY_BEST_EFFORT" },
1069
1064
  edition_defaults = { edition: EDITION_PROTO3, value: "ALLOW" }
1070
1065
  ];
1071
1066
 
Binary file
Binary file
@@ -635,13 +635,14 @@ message MessageOptions {
635
635
  }
636
636
 
637
637
  message FieldOptions {
638
+ // NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
638
639
  // The ctype option instructs the C++ code generator to use a different
639
640
  // representation of the field than it normally would. See the specific
640
641
  // options below. This option is only implemented to support use of
641
642
  // [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
642
- // type "bytes" in the open source release -- sorry, we'll try to include
643
- // other types in a future version!
644
- optional CType ctype = 1 [default = STRING];
643
+ // type "bytes" in the open source release.
644
+ // TODO: make ctype actually deprecated.
645
+ optional CType ctype = 1 [/*deprecated = true,*/ default = STRING];
645
646
  enum CType {
646
647
  // Default mode.
647
648
  STRING = 0;
@@ -974,11 +975,10 @@ message FeatureSet {
974
975
  retention = RETENTION_RUNTIME,
975
976
  targets = TARGET_TYPE_FIELD,
976
977
  targets = TARGET_TYPE_FILE,
977
- // TODO Enable this in google3 once protoc rolls out.
978
978
  feature_support = {
979
979
  edition_introduced: EDITION_2023,
980
980
  },
981
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPLICIT" },
981
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPLICIT" },
982
982
  edition_defaults = { edition: EDITION_PROTO3, value: "IMPLICIT" },
983
983
  edition_defaults = { edition: EDITION_2023, value: "EXPLICIT" }
984
984
  ];
@@ -992,11 +992,10 @@ message FeatureSet {
992
992
  retention = RETENTION_RUNTIME,
993
993
  targets = TARGET_TYPE_ENUM,
994
994
  targets = TARGET_TYPE_FILE,
995
- // TODO Enable this in google3 once protoc rolls out.
996
995
  feature_support = {
997
996
  edition_introduced: EDITION_2023,
998
997
  },
999
- edition_defaults = { edition: EDITION_PROTO2, value: "CLOSED" },
998
+ edition_defaults = { edition: EDITION_LEGACY, value: "CLOSED" },
1000
999
  edition_defaults = { edition: EDITION_PROTO3, value: "OPEN" }
1001
1000
  ];
1002
1001
 
@@ -1009,11 +1008,10 @@ message FeatureSet {
1009
1008
  retention = RETENTION_RUNTIME,
1010
1009
  targets = TARGET_TYPE_FIELD,
1011
1010
  targets = TARGET_TYPE_FILE,
1012
- // TODO Enable this in google3 once protoc rolls out.
1013
1011
  feature_support = {
1014
1012
  edition_introduced: EDITION_2023,
1015
1013
  },
1016
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPANDED" },
1014
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPANDED" },
1017
1015
  edition_defaults = { edition: EDITION_PROTO3, value: "PACKED" }
1018
1016
  ];
1019
1017
 
@@ -1027,11 +1025,10 @@ message FeatureSet {
1027
1025
  retention = RETENTION_RUNTIME,
1028
1026
  targets = TARGET_TYPE_FIELD,
1029
1027
  targets = TARGET_TYPE_FILE,
1030
- // TODO Enable this in google3 once protoc rolls out.
1031
1028
  feature_support = {
1032
1029
  edition_introduced: EDITION_2023,
1033
1030
  },
1034
- edition_defaults = { edition: EDITION_PROTO2, value: "NONE" },
1031
+ edition_defaults = { edition: EDITION_LEGACY, value: "NONE" },
1035
1032
  edition_defaults = { edition: EDITION_PROTO3, value: "VERIFY" }
1036
1033
  ];
1037
1034
 
@@ -1044,11 +1041,10 @@ message FeatureSet {
1044
1041
  retention = RETENTION_RUNTIME,
1045
1042
  targets = TARGET_TYPE_FIELD,
1046
1043
  targets = TARGET_TYPE_FILE,
1047
- // TODO Enable this in google3 once protoc rolls out.
1048
1044
  feature_support = {
1049
1045
  edition_introduced: EDITION_2023,
1050
1046
  },
1051
- edition_defaults = { edition: EDITION_PROTO2, value: "LENGTH_PREFIXED" }
1047
+ edition_defaults = { edition: EDITION_LEGACY, value: "LENGTH_PREFIXED" }
1052
1048
  ];
1053
1049
 
1054
1050
  enum JsonFormat {
@@ -1061,11 +1057,10 @@ message FeatureSet {
1061
1057
  targets = TARGET_TYPE_MESSAGE,
1062
1058
  targets = TARGET_TYPE_ENUM,
1063
1059
  targets = TARGET_TYPE_FILE,
1064
- // TODO Enable this in google3 once protoc rolls out.
1065
1060
  feature_support = {
1066
1061
  edition_introduced: EDITION_2023,
1067
1062
  },
1068
- edition_defaults = { edition: EDITION_PROTO2, value: "LEGACY_BEST_EFFORT" },
1063
+ edition_defaults = { edition: EDITION_LEGACY, value: "LEGACY_BEST_EFFORT" },
1069
1064
  edition_defaults = { edition: EDITION_PROTO3, value: "ALLOW" }
1070
1065
  ];
1071
1066
 
Binary file
Binary file
@@ -635,13 +635,14 @@ message MessageOptions {
635
635
  }
636
636
 
637
637
  message FieldOptions {
638
+ // NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
638
639
  // The ctype option instructs the C++ code generator to use a different
639
640
  // representation of the field than it normally would. See the specific
640
641
  // options below. This option is only implemented to support use of
641
642
  // [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
642
- // type "bytes" in the open source release -- sorry, we'll try to include
643
- // other types in a future version!
644
- optional CType ctype = 1 [default = STRING];
643
+ // type "bytes" in the open source release.
644
+ // TODO: make ctype actually deprecated.
645
+ optional CType ctype = 1 [/*deprecated = true,*/ default = STRING];
645
646
  enum CType {
646
647
  // Default mode.
647
648
  STRING = 0;
@@ -974,11 +975,10 @@ message FeatureSet {
974
975
  retention = RETENTION_RUNTIME,
975
976
  targets = TARGET_TYPE_FIELD,
976
977
  targets = TARGET_TYPE_FILE,
977
- // TODO Enable this in google3 once protoc rolls out.
978
978
  feature_support = {
979
979
  edition_introduced: EDITION_2023,
980
980
  },
981
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPLICIT" },
981
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPLICIT" },
982
982
  edition_defaults = { edition: EDITION_PROTO3, value: "IMPLICIT" },
983
983
  edition_defaults = { edition: EDITION_2023, value: "EXPLICIT" }
984
984
  ];
@@ -992,11 +992,10 @@ message FeatureSet {
992
992
  retention = RETENTION_RUNTIME,
993
993
  targets = TARGET_TYPE_ENUM,
994
994
  targets = TARGET_TYPE_FILE,
995
- // TODO Enable this in google3 once protoc rolls out.
996
995
  feature_support = {
997
996
  edition_introduced: EDITION_2023,
998
997
  },
999
- edition_defaults = { edition: EDITION_PROTO2, value: "CLOSED" },
998
+ edition_defaults = { edition: EDITION_LEGACY, value: "CLOSED" },
1000
999
  edition_defaults = { edition: EDITION_PROTO3, value: "OPEN" }
1001
1000
  ];
1002
1001
 
@@ -1009,11 +1008,10 @@ message FeatureSet {
1009
1008
  retention = RETENTION_RUNTIME,
1010
1009
  targets = TARGET_TYPE_FIELD,
1011
1010
  targets = TARGET_TYPE_FILE,
1012
- // TODO Enable this in google3 once protoc rolls out.
1013
1011
  feature_support = {
1014
1012
  edition_introduced: EDITION_2023,
1015
1013
  },
1016
- edition_defaults = { edition: EDITION_PROTO2, value: "EXPANDED" },
1014
+ edition_defaults = { edition: EDITION_LEGACY, value: "EXPANDED" },
1017
1015
  edition_defaults = { edition: EDITION_PROTO3, value: "PACKED" }
1018
1016
  ];
1019
1017
 
@@ -1027,11 +1025,10 @@ message FeatureSet {
1027
1025
  retention = RETENTION_RUNTIME,
1028
1026
  targets = TARGET_TYPE_FIELD,
1029
1027
  targets = TARGET_TYPE_FILE,
1030
- // TODO Enable this in google3 once protoc rolls out.
1031
1028
  feature_support = {
1032
1029
  edition_introduced: EDITION_2023,
1033
1030
  },
1034
- edition_defaults = { edition: EDITION_PROTO2, value: "NONE" },
1031
+ edition_defaults = { edition: EDITION_LEGACY, value: "NONE" },
1035
1032
  edition_defaults = { edition: EDITION_PROTO3, value: "VERIFY" }
1036
1033
  ];
1037
1034
 
@@ -1044,11 +1041,10 @@ message FeatureSet {
1044
1041
  retention = RETENTION_RUNTIME,
1045
1042
  targets = TARGET_TYPE_FIELD,
1046
1043
  targets = TARGET_TYPE_FILE,
1047
- // TODO Enable this in google3 once protoc rolls out.
1048
1044
  feature_support = {
1049
1045
  edition_introduced: EDITION_2023,
1050
1046
  },
1051
- edition_defaults = { edition: EDITION_PROTO2, value: "LENGTH_PREFIXED" }
1047
+ edition_defaults = { edition: EDITION_LEGACY, value: "LENGTH_PREFIXED" }
1052
1048
  ];
1053
1049
 
1054
1050
  enum JsonFormat {
@@ -1061,11 +1057,10 @@ message FeatureSet {
1061
1057
  targets = TARGET_TYPE_MESSAGE,
1062
1058
  targets = TARGET_TYPE_ENUM,
1063
1059
  targets = TARGET_TYPE_FILE,
1064
- // TODO Enable this in google3 once protoc rolls out.
1065
1060
  feature_support = {
1066
1061
  edition_introduced: EDITION_2023,
1067
1062
  },
1068
- edition_defaults = { edition: EDITION_PROTO2, value: "LEGACY_BEST_EFFORT" },
1063
+ edition_defaults = { edition: EDITION_LEGACY, value: "LEGACY_BEST_EFFORT" },
1069
1064
  edition_defaults = { edition: EDITION_PROTO3, value: "ALLOW" }
1070
1065
  ];
1071
1066
 
Binary file
data/version.rb CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  module GRPC
16
16
  module Tools
17
- VERSION = '1.67.0'
17
+ VERSION = '1.68.1'
18
18
  end
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - grpc Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-08 00:00:00.000000000 Z
11
+ date: 2024-11-27 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