Skip to content

Commit

Permalink
updated submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 3, 2024
1 parent 2a859c7 commit 7366c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tweaks/protobuf
Submodule protobuf updated 84 files
+0 −1 .github/workflows/test_java.yml
+0 −2 .github/workflows/test_php.yml
+1 −1 .github/workflows/test_rust.yml
+3 −4 build_defs/java_opts.bzl
+21 −1 conformance/binary_json_conformance_suite.cc
+24 −0 conformance/failure_list_jruby_ffi.txt
+24 −0 conformance/failure_list_php_c.txt
+24 −0 conformance/failure_list_ruby.txt
+0 −1 hpb/bazel/hpb_proto_library.bzl
+41 −0 hpb/extension.h
+1 −96 hpb/hpb.cc
+7 −81 hpb/hpb.h
+85 −0 hpb/internal/message_lock.cc
+21 −0 hpb/internal/message_lock.h
+37 −0 hpb/status.cc
+39 −0 hpb/status.h
+24 −11 java/core/src/main/java/com/google/protobuf/CodedOutputStream.java
+31 −0 java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java
+0 −6 protos/BUILD
+0 −9 protos/protos.h
+76 −12 rust/BUILD
+14 −10 rust/cargo_test.sh
+98 −0 rust/dist.bzl
+1 −8 rust/protobuf_codegen/example/build.rs
+50 −16 rust/protobuf_codegen/src/lib.rs
+33 −27 src/google/protobuf/any.pb.cc
+5 −1 src/google/protobuf/any.pb.h
+99 −81 src/google/protobuf/api.pb.cc
+15 −3 src/google/protobuf/api.pb.h
+6 −0 src/google/protobuf/compiler/cpp/field.cc
+3 −0 src/google/protobuf/compiler/cpp/field.h
+2 −4 src/google/protobuf/compiler/cpp/field_generators/string_field.cc
+1 −2 src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc
+5 −2 src/google/protobuf/compiler/cpp/file.cc
+12 −16 src/google/protobuf/compiler/cpp/helpers.cc
+6 −7 src/google/protobuf/compiler/cpp/helpers.h
+77 −64 src/google/protobuf/compiler/cpp/message.cc
+1 −1 src/google/protobuf/compiler/cpp/parse_function_generator.cc
+1 −0 src/google/protobuf/compiler/java/full/BUILD.bazel
+16 −17 src/google/protobuf/compiler/java/full/enum.cc
+9 −11 src/google/protobuf/compiler/java/full/message.cc
+4 −5 src/google/protobuf/compiler/java/full/message_builder.cc
+32 −26 src/google/protobuf/compiler/java/java_features.pb.cc
+5 −1 src/google/protobuf/compiler/java/java_features.pb.h
+16 −16 src/google/protobuf/compiler/java/lite/enum.cc
+132 −108 src/google/protobuf/compiler/plugin.pb.cc
+20 −4 src/google/protobuf/compiler/plugin.pb.h
+3 −1 src/google/protobuf/compiler/rust/relative_path.cc
+32 −26 src/google/protobuf/cpp_features.pb.cc
+5 −1 src/google/protobuf/cpp_features.pb.h
+0 −14 src/google/protobuf/descriptor.h
+1,153 −955 src/google/protobuf/descriptor.pb.cc
+165 −33 src/google/protobuf/descriptor.pb.h
+32 −26 src/google/protobuf/duration.pb.cc
+5 −1 src/google/protobuf/duration.pb.h
+33 −27 src/google/protobuf/empty.pb.cc
+5 −1 src/google/protobuf/empty.pb.h
+33 −27 src/google/protobuf/field_mask.pb.cc
+5 −1 src/google/protobuf/field_mask.pb.h
+13 −2 src/google/protobuf/generated_message_reflection.cc
+1 −0 src/google/protobuf/io/BUILD.bazel
+4 −2 src/google/protobuf/io/printer.h
+2 −1 src/google/protobuf/map_field.cc
+4 −4 src/google/protobuf/map_field.h
+10 −16 src/google/protobuf/message_lite.h
+9 −0 src/google/protobuf/message_unittest.inc
+3 −3 src/google/protobuf/reflection_visit_field_info.h
+22 −15 src/google/protobuf/reflection_visit_fields.h
+0 −30 src/google/protobuf/repeated_field_unittest.cc
+3 −11 src/google/protobuf/repeated_ptr_field.h
+33 −27 src/google/protobuf/source_context.pb.cc
+5 −1 src/google/protobuf/source_context.pb.h
+135 −110 src/google/protobuf/struct.pb.cc
+19 −4 src/google/protobuf/struct.pb.h
+2 −1 src/google/protobuf/text_format.cc
+32 −26 src/google/protobuf/timestamp.pb.cc
+5 −1 src/google/protobuf/timestamp.pb.h
+165 −135 src/google/protobuf/type.pb.cc
+25 −5 src/google/protobuf/type.pb.h
+2 −1 src/google/protobuf/util/field_comparator.h
+0 −1 src/google/protobuf/util/message_differencer.h
+290 −236 src/google/protobuf/wrappers.pb.cc
+45 −9 src/google/protobuf/wrappers.pb.h
+24 −0 upb/conformance/conformance_upb_failures.txt

0 comments on commit 7366c7b

Please sign in to comment.