google-protobuf 3.18.1-x86_64-linux → 3.19.1-x86_64-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: c0b28a1431ce6112f1743be5a205bdc7d4991331904551ca2407e5c34337ffe4
4
- data.tar.gz: 210dba0273f83ac73caed076f910c97e649f87fb23f7247ddb30ea273e80fc87
3
+ metadata.gz: 8e4a660c135bdcd13d768bb23e2901ef146a5d01baa90725fd89f43d1c523743
4
+ data.tar.gz: d1d34bf6d0bc94b233036d93de795612e08ae4623e81a741a95923bc7fe30d75
5
5
  SHA512:
6
- metadata.gz: 2fb29413dede7b8e6f9172c346dd775e40af9725d171aa03f92754021279ee76c299448c4a5d26a426fcfa2d262c22f0e8e00fe22d74eb0faf67d668ec4049bb
7
- data.tar.gz: 82975f04cb10c3d851b18712742c4dc9a03adf9ca8a27f64e1b039c778ba2a11dccb4379238aec4a64b5a234fc19f0277c1a40bc99282efdc09d3dce4df070ab
6
+ metadata.gz: 224e43a035f6737c3deb1ee1b64a8b5bf77d05db3b76c7b36de3e0f26fa641d182f2511258bc673ef2f8d1f1659015895df0ad84dc2292a4acb8f20c03f5c9bb
7
+ data.tar.gz: 5e79d2eef03ade83f1bcdcc222e9c11e9369a576f8f9e6dfabb1e0684e652821b047a246d887566dd165f7c84355f68c8cfa475ae8d9129034718429977bd640
@@ -680,7 +680,10 @@ void Map_register(VALUE module) {
680
680
  rb_define_method(klass, "delete", Map_delete, 1);
681
681
  rb_define_method(klass, "clear", Map_clear, 0);
682
682
  rb_define_method(klass, "length", Map_length, 0);
683
+ rb_define_method(klass, "size", Map_length, 0);
683
684
  rb_define_method(klass, "dup", Map_dup, 0);
685
+ // Also define #clone so that we don't inherit Object#clone.
686
+ rb_define_method(klass, "clone", Map_dup, 0);
684
687
  rb_define_method(klass, "==", Map_eq, 1);
685
688
  rb_define_method(klass, "freeze", Map_freeze, 0);
686
689
  rb_define_method(klass, "hash", Map_hash, 0);
@@ -1012,7 +1012,6 @@ static VALUE Message_decode_json(int argc, VALUE* argv, VALUE klass) {
1012
1012
  */
1013
1013
  static VALUE Message_encode(VALUE klass, VALUE msg_rb) {
1014
1014
  Message* msg = ruby_to_Message(msg_rb);
1015
- upb_arena *arena = upb_arena_new();
1016
1015
  const char *data;
1017
1016
  size_t size;
1018
1017
 
@@ -1020,6 +1019,8 @@ static VALUE Message_encode(VALUE klass, VALUE msg_rb) {
1020
1019
  rb_raise(rb_eArgError, "Message of wrong type.");
1021
1020
  }
1022
1021
 
1022
+ upb_arena *arena = upb_arena_new();
1023
+
1023
1024
  data = upb_encode(msg->msg, upb_msgdef_layout(msg->msgdef), arena,
1024
1025
  &size);
1025
1026
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,9 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/protobuf/api.proto
3
3
 
4
+ require 'google/protobuf'
5
+
4
6
  require 'google/protobuf/source_context_pb'
5
7
  require 'google/protobuf/type_pb'
6
- require 'google/protobuf'
7
8
 
8
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
10
  add_file("google/protobuf/api.proto", :syntax => :proto3) do
@@ -1,6 +1,8 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/protobuf/descriptor.proto
3
3
 
4
+ require 'google/protobuf'
5
+
4
6
  descriptor_data = File.binread(__FILE__).split("\n__END__\n", 2)[1]
5
7
  Google::Protobuf::DescriptorPool.generated_pool.add_serialized_file(descriptor_data)
6
8
 
@@ -1,9 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/protobuf/type.proto
3
3
 
4
+ require 'google/protobuf'
5
+
4
6
  require 'google/protobuf/any_pb'
5
7
  require 'google/protobuf/source_context_pb'
6
- require 'google/protobuf'
7
8
 
8
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
10
  add_file("google/protobuf/type.proto", :syntax => :proto3) do
@@ -85,6 +85,11 @@ module Google
85
85
  def from_time(time)
86
86
  self.seconds = time.to_i
87
87
  self.nanos = time.nsec
88
+ self
89
+ end
90
+
91
+ def self.from_time(time)
92
+ new.from_time(time)
88
93
  end
89
94
 
90
95
  def to_i
@@ -51,9 +51,9 @@ else
51
51
  require 'google/protobuf_c'
52
52
  end
53
53
 
54
- require 'google/protobuf/descriptor_dsl'
55
54
  end
56
55
 
56
+ require 'google/protobuf/descriptor_dsl'
57
57
  require 'google/protobuf/repeated_field'
58
58
 
59
59
  module Google
data/tests/basic.rb CHANGED
@@ -66,7 +66,8 @@ module BasicTest
66
66
  def test_issue_8559_crash
67
67
  msg = TestMessage.new
68
68
  msg.repeated_int32 = ::Google::Protobuf::RepeatedField.new(:int32, [1, 2, 3])
69
- GC.start(full_mark: true, immediate_sweep: true)
69
+ # TODO: Remove the platform check once https://github.com/jruby/jruby/issues/6818 is released in JRuby 9.3.0.0
70
+ GC.start(full_mark: true, immediate_sweep: true) unless RUBY_PLATFORM == "java"
70
71
  TestMessage.encode(msg)
71
72
  end
72
73
 
@@ -619,5 +620,21 @@ module BasicTest
619
620
  assert_raise(FrozenErrorType) { m.map_string_int32.delete('a') }
620
621
  assert_raise(FrozenErrorType) { m.map_string_int32.clear }
621
622
  end
623
+
624
+ def test_map_length
625
+ m = proto_module::MapMessage.new
626
+ assert_equal 0, m.map_string_int32.length
627
+ assert_equal 0, m.map_string_msg.length
628
+ assert_equal 0, m.map_string_int32.size
629
+ assert_equal 0, m.map_string_msg.size
630
+
631
+ m.map_string_int32['a'] = 1
632
+ m.map_string_int32['b'] = 2
633
+ m.map_string_msg['a'] = proto_module::TestMessage2.new
634
+ assert_equal 2, m.map_string_int32.length
635
+ assert_equal 1, m.map_string_msg.length
636
+ assert_equal 2, m.map_string_int32.size
637
+ assert_equal 1, m.map_string_msg.size
638
+ end
622
639
  end
623
640
  end
data/tests/stress.rb CHANGED
@@ -30,7 +30,7 @@ module StressTest
30
30
  100_000.times do
31
31
  mnew = TestMessage.decode(data)
32
32
  mnew = mnew.dup
33
- assert_equal mnew.inspect, m.inspect
33
+ assert_equal m.inspect, mnew.inspect
34
34
  assert TestMessage.encode(mnew) == data
35
35
  end
36
36
  end
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.18.1
4
+ version: 3.19.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-05 00:00:00.000000000 Z
11
+ date: 2021-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -64,20 +64,6 @@ dependencies:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: 3.0.9
67
- - !ruby/object:Gem::Dependency
68
- name: rubygems-tasks
69
- requirement: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - "~>"
72
- - !ruby/object:Gem::Version
73
- version: 0.2.4
74
- type: :development
75
- prerelease: false
76
- version_requirements: !ruby/object:Gem::Requirement
77
- requirements:
78
- - - "~>"
79
- - !ruby/object:Gem::Version
80
- version: 0.2.4
81
67
  description: Protocol Buffers are Google's data interchange format.
82
68
  email: protobuf@googlegroups.com
83
69
  executables: []
@@ -129,7 +115,7 @@ homepage: https://developers.google.com/protocol-buffers
129
115
  licenses:
130
116
  - BSD-3-Clause
131
117
  metadata:
132
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.18.1/ruby
118
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.19.1/ruby
133
119
  post_install_message:
134
120
  rdoc_options: []
135
121
  require_paths: