google-protobuf 3.19.4-x64-mingw32 → 3.20.0-x64-mingw32

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.

Files changed (33) 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/protobuf/descriptor_dsl.rb +8 -1
  28. data/lib/google/protobuf/descriptor_pb.rb +3 -2
  29. data/lib/google/protobuf/message_exts.rb +2 -2
  30. data/lib/google/protobuf/well_known_types.rb +11 -6
  31. data/lib/google/protobuf.rb +4 -4
  32. data/tests/basic.rb +22 -0
  33. metadata +14 -9
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: x64-mingw32
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,6 +79,11 @@ 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
@@ -107,8 +112,8 @@ homepage: https://developers.google.com/protocol-buffers
107
112
  licenses:
108
113
  - BSD-3-Clause
109
114
  metadata:
110
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.19.4/ruby
111
- post_install_message:
115
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.20.0/ruby
116
+ post_install_message:
112
117
  rdoc_options: []
113
118
  require_paths:
114
119
  - lib
@@ -126,8 +131,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
131
  - !ruby/object:Gem::Version
127
132
  version: '0'
128
133
  requirements: []
129
- rubygems_version: 3.2.3
130
- signing_key:
134
+ rubygems_version: 3.3.4
135
+ signing_key:
131
136
  specification_version: 4
132
137
  summary: Protocol Buffers
133
138
  test_files: