google-protobuf 3.15.1 → 3.15.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of google-protobuf might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/defs.c +3 -5
- data/ext/google/protobuf_c/message.c +1 -1
- data/ext/google/protobuf_c/message.h +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adbba3c7159278b9926b5dbf75a5d76030695ae716122593d756b12d4e30f70d
|
4
|
+
data.tar.gz: ea8bc4279e712286fa3d3a18649f847a0717031c5295f261a2f7846dfb9e5c69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f5c170a07539388568608d9e97285ed1985057cb342c5a63a8e827e6946b0bc1d446ebdd27aba08d11ded7813a93bb0bebc5205122226ea2b8dcd6cb4fba7d0
|
7
|
+
data.tar.gz: '084b27c355258972a8f2b1a839d3580a93d45bfd564730d1afebd50ae2238ef6e00035557f6545f6fcd33f9ef4ab1690aa8e0ade9ecdccf2028991dab6b8cb3c'
|
@@ -960,16 +960,14 @@ static VALUE FieldDescriptor_subtype(VALUE _self) {
|
|
960
960
|
static VALUE FieldDescriptor_get(VALUE _self, VALUE msg_rb) {
|
961
961
|
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
962
962
|
const upb_msgdef *m;
|
963
|
-
|
964
|
-
|
965
|
-
upb_msgval msgval;
|
963
|
+
|
964
|
+
Message_Get(msg_rb, &m);
|
966
965
|
|
967
966
|
if (m != upb_fielddef_containingtype(self->fielddef)) {
|
968
967
|
rb_raise(cTypeError, "get method called on wrong message type");
|
969
968
|
}
|
970
969
|
|
971
|
-
|
972
|
-
return Convert_UpbToRuby(msgval, TypeInfo_get(self->fielddef), arena);
|
970
|
+
return Message_getfield(msg_rb, self->fielddef);
|
973
971
|
}
|
974
972
|
|
975
973
|
/*
|
@@ -292,7 +292,7 @@ static void Message_setfield(upb_msg* msg, const upb_fielddef* f, VALUE val,
|
|
292
292
|
upb_msg_set(msg, f, msgval, arena);
|
293
293
|
}
|
294
294
|
|
295
|
-
|
295
|
+
VALUE Message_getfield(VALUE _self, const upb_fielddef* f) {
|
296
296
|
Message* self = ruby_to_Message(_self);
|
297
297
|
// This is a special-case: upb_msg_mutable() for map & array are logically
|
298
298
|
// const (they will not change what is serialized) but physically
|
@@ -63,6 +63,9 @@ const upb_msg* Message_GetUpbMessage(VALUE value, const upb_msgdef* m,
|
|
63
63
|
// object will reference |arena| and ensure that it outlives this object.
|
64
64
|
VALUE Message_GetRubyWrapper(upb_msg* msg, const upb_msgdef* m, VALUE arena);
|
65
65
|
|
66
|
+
// Gets the given field from this message.
|
67
|
+
VALUE Message_getfield(VALUE _self, const upb_fielddef* f);
|
68
|
+
|
66
69
|
// Implements #inspect for this message, printing the text to |b|.
|
67
70
|
void Message_PrintMessage(StringBuilder* b, const upb_msg* msg,
|
68
71
|
const upb_msgdef* m);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.15.
|
4
|
+
version: 3.15.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler-dock
|
@@ -123,7 +123,7 @@ homepage: https://developers.google.com/protocol-buffers
|
|
123
123
|
licenses:
|
124
124
|
- BSD-3-Clause
|
125
125
|
metadata:
|
126
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.15.
|
126
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.15.2/ruby
|
127
127
|
post_install_message:
|
128
128
|
rdoc_options: []
|
129
129
|
require_paths:
|