google-protobuf 3.18.3-x86-linux → 3.19.0.rc.1-x86-linux
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.
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/map.c +3 -0
- data/lib/google/2.3/protobuf_c.so +0 -0
- data/lib/google/2.4/protobuf_c.so +0 -0
- data/lib/google/2.5/protobuf_c.so +0 -0
- data/lib/google/2.6/protobuf_c.so +0 -0
- data/lib/google/2.7/protobuf_c.so +0 -0
- data/lib/google/3.0/protobuf_c.so +0 -0
- data/lib/google/protobuf/well_known_types.rb +5 -0
- data/lib/google/protobuf.rb +1 -1
- data/tests/basic.rb +18 -1
- data/tests/stress.rb +1 -1
- metadata +12 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 276914168366f5f7e640980ad6ff468e5771dc30a2c198af041dc8fd27f22485
|
4
|
+
data.tar.gz: 960e43f27542713f34c7f272d1c38b4ccbc310f0550015ecac5d6f737e30fdd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89b21582942fde50530410aab188f6016aa2a0a68f6caeeee8b397ebf4c6424db4a89605f2fc9b7d72fce7b8f5a82b672bd5931b879c8bc66ffefe9cf7770bbe
|
7
|
+
data.tar.gz: 2bfaa2cbb274e0d7e2e7db7ec432e2a34da455a740209f60b246ef19b61372e49b6982b68a520b411d2ab5d9da7b8c3c6cfb80257e11fb3b967fa75d57849028
|
data/ext/google/protobuf_c/map.c
CHANGED
@@ -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);
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/google/protobuf.rb
CHANGED
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
|
-
|
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
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.
|
4
|
+
version: 3.19.0.rc.1
|
5
5
|
platform: x86-linux
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-10-16 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: []
|
@@ -100,6 +86,8 @@ files:
|
|
100
86
|
- ext/google/protobuf_c/ruby-upb.c
|
101
87
|
- ext/google/protobuf_c/ruby-upb.h
|
102
88
|
- ext/google/protobuf_c/wrap_memcpy.c
|
89
|
+
- lib/google/2.3/protobuf_c.so
|
90
|
+
- lib/google/2.4/protobuf_c.so
|
103
91
|
- lib/google/2.5/protobuf_c.so
|
104
92
|
- lib/google/2.6/protobuf_c.so
|
105
93
|
- lib/google/2.7/protobuf_c.so
|
@@ -127,8 +115,8 @@ homepage: https://developers.google.com/protocol-buffers
|
|
127
115
|
licenses:
|
128
116
|
- BSD-3-Clause
|
129
117
|
metadata:
|
130
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.
|
131
|
-
post_install_message:
|
118
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.19.0-rc1/ruby
|
119
|
+
post_install_message:
|
132
120
|
rdoc_options: []
|
133
121
|
require_paths:
|
134
122
|
- lib
|
@@ -136,18 +124,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
124
|
requirements:
|
137
125
|
- - ">="
|
138
126
|
- !ruby/object:Gem::Version
|
139
|
-
version: '2.
|
127
|
+
version: '2.3'
|
140
128
|
- - "<"
|
141
129
|
- !ruby/object:Gem::Version
|
142
130
|
version: 3.1.dev
|
143
131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
144
132
|
requirements:
|
145
|
-
- - "
|
133
|
+
- - ">"
|
146
134
|
- !ruby/object:Gem::Version
|
147
|
-
version:
|
135
|
+
version: 1.3.1
|
148
136
|
requirements: []
|
149
|
-
rubygems_version: 3.3
|
150
|
-
signing_key:
|
137
|
+
rubygems_version: 3.2.3
|
138
|
+
signing_key:
|
151
139
|
specification_version: 4
|
152
140
|
summary: Protocol Buffers
|
153
141
|
test_files:
|