google-protobuf 4.34.0-x86-linux-gnu → 4.35.0.rc.1-x86-linux-gnu
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/ext/google/protobuf_c/message.c +1 -1
- data/ext/google/protobuf_c/message.h +1 -1
- data/ext/google/protobuf_c/ruby-upb.c +402 -241
- data/ext/google/protobuf_c/ruby-upb.h +150 -30
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.c +1 -1
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +2 -1
- data/lib/google/3.1/protobuf_c.so +0 -0
- data/lib/google/3.2/protobuf_c.so +0 -0
- data/lib/google/3.3/protobuf_c.so +0 -0
- data/lib/google/3.4/protobuf_c.so +0 -0
- data/lib/google/4.0/protobuf_c.so +0 -0
- data/lib/google/protobuf/descriptor_pb.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ddbd2138f7f6c8b93f8abf74e88837ee750ac9c44ab9d36d651512f3c1724ec4
|
|
4
|
+
data.tar.gz: e9916c322dcd17ad11323da036e3c2b185fdd7bbd08e0114c5ddb2c8a7fc9c5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f41212d5ddb83a2317d7f6bfc927de38012546a59470b5f5ff6b2566b267a4afc6946ad1a8a0eaf64fe29b9b49fcaa3f33ab88107925d121ff0ed47a53eebc7b
|
|
7
|
+
data.tar.gz: 9b77cc6e2c292aec75b2836591695de24f3d6cd15b976932a10ba3d4240f2b4fff1ccb3f6e107230292993e98853d6f249ad9b360717c6753ee5fa196de3e396
|
|
@@ -978,7 +978,7 @@ static VALUE Message_decode(int argc, VALUE* argv, VALUE klass) {
|
|
|
978
978
|
klass, /*freeze*/ false);
|
|
979
979
|
}
|
|
980
980
|
|
|
981
|
-
VALUE Message_decode_bytes(
|
|
981
|
+
VALUE Message_decode_bytes(size_t size, const char* bytes, int options,
|
|
982
982
|
VALUE klass, bool freeze) {
|
|
983
983
|
VALUE msg_rb = initialize_rb_class_with_no_args(klass);
|
|
984
984
|
Message* msg = ruby_to_Message(msg_rb);
|
|
@@ -70,7 +70,7 @@ VALUE build_module_from_enumdesc(VALUE _enumdesc);
|
|
|
70
70
|
VALUE MessageOrEnum_GetDescriptor(VALUE klass);
|
|
71
71
|
|
|
72
72
|
// Decodes a Message from a byte sequence.
|
|
73
|
-
VALUE Message_decode_bytes(
|
|
73
|
+
VALUE Message_decode_bytes(size_t size, const char* bytes, int options,
|
|
74
74
|
VALUE klass, bool freeze);
|
|
75
75
|
|
|
76
76
|
// Recursively freeze message
|