Skip to content

Commit

Permalink
updated submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 8, 2025
1 parent c712f41 commit 3914189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tweaks/protobuf
Submodule protobuf updated 72 files
+0 −2 .github/workflows/test_python.yml
+3 −9 .github/workflows/test_upb.yml
+34 −0 conformance/binary_json_conformance_suite.cc
+4 −0 conformance/failure_list_csharp.txt
+1 −0 conformance/failure_list_jruby.txt
+1 −0 conformance/failure_list_jruby_ffi.txt
+1 −0 conformance/failure_list_php.txt
+1 −0 conformance/failure_list_php_c.txt
+1 −0 conformance/failure_list_ruby.txt
+273 −0 docs/upb/arena_fusion.md
+11 −0 hpb/hpb.h
+9 −0 hpb_generator/tests/test_generated.cc
+231 −77 php/ext/google/protobuf/php-upb.c
+181 −5 php/ext/google/protobuf/php-upb.h
+0 −1 python/dist/BUILD.bazel
+0 −1 python/google/protobuf/internal/numpy/BUILD.bazel
+58 −53 python/google/protobuf/internal/reflection_test.py
+0 −22 python/pb_unit_tests/BUILD
+0 −11 python/pb_unit_tests/README.md
+0 −25 python/pb_unit_tests/pyproto_test_wrapper.bzl
+0 −53 python/pb_unit_tests/reflection_test_wrapper.py
+2 −1 ruby/ext/google/protobuf_c/message.c
+231 −77 ruby/ext/google/protobuf_c/ruby-upb.c
+181 −5 ruby/ext/google/protobuf_c/ruby-upb.h
+4 −2 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java
+9 −0 ruby/tests/basic_proto2.rb
+11 −10 src/google/protobuf/any.pb.cc
+30 −26 src/google/protobuf/any.pb.h
+29 −26 src/google/protobuf/api.pb.cc
+93 −87 src/google/protobuf/api.pb.h
+132 −130 src/google/protobuf/compiler/cpp/field_generators/message_field.cc
+90 −90 src/google/protobuf/compiler/cpp/field_generators/string_field.cc
+11 −11 src/google/protobuf/compiler/cpp/file.cc
+51 −38 src/google/protobuf/compiler/cpp/message.cc
+22 −17 src/google/protobuf/compiler/cpp/service.cc
+7 −7 src/google/protobuf/compiler/java/java_features.pb.cc
+16 −12 src/google/protobuf/compiler/java/java_features.pb.h
+37 −33 src/google/protobuf/compiler/plugin.pb.cc
+114 −102 src/google/protobuf/compiler/plugin.pb.h
+7 −7 src/google/protobuf/cpp_features.pb.cc
+16 −12 src/google/protobuf/cpp_features.pb.h
+37 −9 src/google/protobuf/descriptor.cc
+292 −261 src/google/protobuf/descriptor.pb.cc
+943 −825 src/google/protobuf/descriptor.pb.h
+8 −8 src/google/protobuf/duration.pb.cc
+16 −12 src/google/protobuf/duration.pb.h
+6 −6 src/google/protobuf/empty.pb.cc
+15 −11 src/google/protobuf/empty.pb.h
+11 −10 src/google/protobuf/field_mask.pb.cc
+16 −12 src/google/protobuf/field_mask.pb.h
+87 −76 src/google/protobuf/json/internal/parser.cc
+92 −0 src/google/protobuf/json/json_test.cc
+2 −0 src/google/protobuf/port_def.inc
+11 −10 src/google/protobuf/source_context.pb.cc
+21 −18 src/google/protobuf/source_context.pb.h
+35 −31 src/google/protobuf/struct.pb.cc
+74 −61 src/google/protobuf/struct.pb.h
+8 −8 src/google/protobuf/timestamp.pb.cc
+16 −12 src/google/protobuf/timestamp.pb.h
+46 −41 src/google/protobuf/type.pb.cc
+160 −147 src/google/protobuf/type.pb.h
+62 −60 src/google/protobuf/wrappers.pb.cc
+154 −120 src/google/protobuf/wrappers.pb.h
+1 −0 upb/conformance/conformance_upb_failures.txt
+202 −78 upb/mem/arena.c
+16 −3 upb/mem/arena.h
+145 −7 upb/mem/arena_test.cc
+1 −1 upb/mem/internal/arena.h
+134 −1 upb/port/atomic.h
+25 −0 upb/port/def.inc
+5 −0 upb/port/undef.inc
+6 −4 upb_generator/common/cpp_to_upb_def.cc

0 comments on commit 3914189

Please sign in to comment.