google-protobuf 3.15.1-universal-darwin → 3.15.2-universal-darwin

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: 71dbaada367023535dc1876c276c2e03e1585417df2bddeeb3dfee784351f03d
4
- data.tar.gz: a28c3199e14075cee756d87f0440658cb211105fc6a47fc55f834757bc52e74f
3
+ metadata.gz: 5ecf6564a14c032c72a5eba7fd5435bb420e0456f933b0d21ba0e6c0d7d30046
4
+ data.tar.gz: 00ebbb00851a65a7256dcc5c599aa4af761fcce3ab9a975509f441d29c27474a
5
5
  SHA512:
6
- metadata.gz: d90e399adc1e5edee7221248c01e30c4dadf23fc8733842c384bf24c162a76224f3d95b167b71d320e5354798e81c16ef5ff3501b98444fd4fead4842224ccb5
7
- data.tar.gz: 1adb9bcc8688683c2c149458fb362026b68f08eda73b57228af351aea17977470b810185ae487184ba9dc4e1eaf5686927293423d8690ec5f770cf42bfffeadd
6
+ metadata.gz: 64935febcc1f75012b569b88065d8f48a2fb140cd849864963b50c37c199bb811c0c1f6ffbf7736dd37e4f54c7d5b1b036a1abf7bf5de1532984cc3debe1216d
7
+ data.tar.gz: 4b9b11df452c20c1ff2081cd7d9ab9967f443a96d6e8ee1a5d1f333db7ce4f9666d0c4b3bcf9209596e1d2438d140a47eaf848c140a32fabd56031e0df998493
@@ -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: universal-darwin
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: