google-protobuf 3.15.1-x86-linux → 3.15.2-x86-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5497747cb5d41a80d468266aba3df5ea5a7fc4437813370988ec2730bbb87dfa
4
- data.tar.gz: e257b0de5478e0806b5ba5c813ddb7bc89a68ea2a48bf72d48237c48e9badccb
3
+ metadata.gz: 163de72a4d07d9f282160eeb0fa7f9e846bebb4f330cabe9b96e94276e49f5dc
4
+ data.tar.gz: 18a6069fd29071aeb01e986535df13bc585331c4ea077a94c363031da7d04b05
5
5
  SHA512:
6
- metadata.gz: c54bf272e54ca1e866e30cccf2c45975abf55f1778499a8e6578f77efa5202bedd19db8e2ea0a874d1c79c371eba029ae2b407807dd8570e12e00c5cb8029fd6
7
- data.tar.gz: c9509f10d8171754f2c0b74a6f9bea95e64be3cb5aab128b6d092a4f678785b3a5768fc5db65ec4edb87ab4057d9f95b2a4855ee35316ce7330cf97375a04eeb
6
+ metadata.gz: 6d762d14f130cebf1153fe65ce5380c3ed99e5c7d47770bdb4861da4230e5489a5149426288a324c513f9a779bc253e68d5648bda7f1222d327143d206155116
7
+ data.tar.gz: ece916f8553904ba23f5297c8a19732a6ceb2ce27090c8d923a39e7fdd3b337f83e19eb3b573786da9cd2e6c686c9faa52249a3a698a5fba44633b27b08cbc01
@@ -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
- const upb_msgdef *msg = Message_Get(msg_rb, &m);
964
- VALUE arena = Message_GetArena(msg_rb);
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
- msgval = upb_msg_get(msg, self->fielddef);
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
- static VALUE Message_getfield(VALUE _self, const upb_fielddef* f) {
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);
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
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.1
4
+ version: 3.15.2
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-19 00:00:00.000000000 Z
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
@@ -128,7 +128,7 @@ homepage: https://developers.google.com/protocol-buffers
128
128
  licenses:
129
129
  - BSD-3-Clause
130
130
  metadata:
131
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.15.1/ruby
131
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.15.2/ruby
132
132
  post_install_message:
133
133
  rdoc_options: []
134
134
  require_paths: