google-protobuf 3.19.4-x86-linux → 3.20.0-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.

Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/ext/google/protobuf_c/convert.c +128 -115
  3. data/ext/google/protobuf_c/convert.h +12 -9
  4. data/ext/google/protobuf_c/defs.c +197 -201
  5. data/ext/google/protobuf_c/defs.h +19 -19
  6. data/ext/google/protobuf_c/extconf.rb +11 -3
  7. data/ext/google/protobuf_c/map.c +109 -101
  8. data/ext/google/protobuf_c/map.h +7 -8
  9. data/ext/google/protobuf_c/message.c +378 -305
  10. data/ext/google/protobuf_c/message.h +22 -19
  11. data/ext/google/protobuf_c/protobuf.c +68 -58
  12. data/ext/google/protobuf_c/protobuf.h +13 -10
  13. data/ext/google/protobuf_c/repeated_field.c +82 -84
  14. data/ext/google/protobuf_c/repeated_field.h +6 -6
  15. data/ext/google/protobuf_c/ruby-upb.c +5054 -3110
  16. data/ext/google/protobuf_c/ruby-upb.h +2838 -1930
  17. data/ext/google/protobuf_c/third_party/utf8_range/LICENSE +21 -0
  18. data/ext/google/protobuf_c/third_party/utf8_range/naive.c +92 -0
  19. data/ext/google/protobuf_c/third_party/utf8_range/range2-neon.c +157 -0
  20. data/ext/google/protobuf_c/third_party/utf8_range/range2-sse.c +170 -0
  21. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +9 -0
  22. data/ext/google/protobuf_c/wrap_memcpy.c +4 -3
  23. data/lib/google/2.5/protobuf_c.so +0 -0
  24. data/lib/google/2.6/protobuf_c.so +0 -0
  25. data/lib/google/2.7/protobuf_c.so +0 -0
  26. data/lib/google/3.0/protobuf_c.so +0 -0
  27. data/lib/google/3.1/protobuf_c.so +0 -0
  28. data/lib/google/protobuf/descriptor_dsl.rb +8 -1
  29. data/lib/google/protobuf/descriptor_pb.rb +3 -2
  30. data/lib/google/protobuf/message_exts.rb +2 -2
  31. data/lib/google/protobuf/well_known_types.rb +11 -6
  32. data/lib/google/protobuf.rb +4 -4
  33. data/tests/basic.rb +22 -0
  34. metadata +16 -10
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.19.4
4
+ version: 3.20.0
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: 2022-01-28 00:00:00.000000000 Z
11
+ date: 2022-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.0
19
+ version: 1.2.1
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 1.1.0
26
+ version: 1.2.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake-compiler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -79,11 +79,17 @@ files:
79
79
  - ext/google/protobuf_c/repeated_field.h
80
80
  - ext/google/protobuf_c/ruby-upb.c
81
81
  - ext/google/protobuf_c/ruby-upb.h
82
+ - ext/google/protobuf_c/third_party/utf8_range/LICENSE
83
+ - ext/google/protobuf_c/third_party/utf8_range/naive.c
84
+ - ext/google/protobuf_c/third_party/utf8_range/range2-neon.c
85
+ - ext/google/protobuf_c/third_party/utf8_range/range2-sse.c
86
+ - ext/google/protobuf_c/third_party/utf8_range/utf8_range.h
82
87
  - ext/google/protobuf_c/wrap_memcpy.c
83
88
  - lib/google/2.5/protobuf_c.so
84
89
  - lib/google/2.6/protobuf_c.so
85
90
  - lib/google/2.7/protobuf_c.so
86
91
  - lib/google/3.0/protobuf_c.so
92
+ - lib/google/3.1/protobuf_c.so
87
93
  - lib/google/protobuf.rb
88
94
  - lib/google/protobuf/any_pb.rb
89
95
  - lib/google/protobuf/api_pb.rb
@@ -107,8 +113,8 @@ homepage: https://developers.google.com/protocol-buffers
107
113
  licenses:
108
114
  - BSD-3-Clause
109
115
  metadata:
110
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.19.4/ruby
111
- post_install_message:
116
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.20.0/ruby
117
+ post_install_message:
112
118
  rdoc_options: []
113
119
  require_paths:
114
120
  - lib
@@ -119,15 +125,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
119
125
  version: '2.5'
120
126
  - - "<"
121
127
  - !ruby/object:Gem::Version
122
- version: 3.1.dev
128
+ version: 3.2.dev
123
129
  required_rubygems_version: !ruby/object:Gem::Requirement
124
130
  requirements:
125
131
  - - ">="
126
132
  - !ruby/object:Gem::Version
127
133
  version: '0'
128
134
  requirements: []
129
- rubygems_version: 3.2.3
130
- signing_key:
135
+ rubygems_version: 3.3.4
136
+ signing_key:
131
137
  specification_version: 4
132
138
  summary: Protocol Buffers
133
139
  test_files: