google-protobuf 3.19.4-x86_64-darwin → 3.20.0-x86_64-darwin

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 (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.bundle +0 -0
  24. data/lib/google/2.6/protobuf_c.bundle +0 -0
  25. data/lib/google/2.7/protobuf_c.bundle +0 -0
  26. data/lib/google/3.0/protobuf_c.bundle +0 -0
  27. data/lib/google/3.1/protobuf_c.bundle +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 +13 -7
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_64-darwin
6
6
  authors:
7
7
  - Protobuf Authors
8
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.bundle
84
89
  - lib/google/2.6/protobuf_c.bundle
85
90
  - lib/google/2.7/protobuf_c.bundle
86
91
  - lib/google/3.0/protobuf_c.bundle
92
+ - lib/google/3.1/protobuf_c.bundle
87
93
  - lib/google/protobuf.rb
88
94
  - lib/google/protobuf/any_pb.rb
89
95
  - lib/google/protobuf/api_pb.rb
@@ -107,7 +113,7 @@ 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
116
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.20.0/ruby
111
117
  post_install_message:
112
118
  rdoc_options: []
113
119
  require_paths:
@@ -119,14 +125,14 @@ 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.3.6
135
+ rubygems_version: 3.3.10
130
136
  signing_key:
131
137
  specification_version: 4
132
138
  summary: Protocol Buffers