grpc 1.48.0-x86_64-darwin → 1.49.1-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 grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/{grpc_c.32.ruby → grpc_c.32-msvcrt.ruby} +0 -0
- data/{grpc_c.64.ruby → grpc_c.64-msvcrt.ruby} +0 -0
- data/src/ruby/ext/grpc/extconf.rb +2 -0
- data/src/ruby/ext/grpc/rb_loader.c +6 -2
- data/src/ruby/lib/grpc/2.6/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/2.7/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/3.0/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/3.1/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +4 -0
- metadata +7 -8
- data/src/ruby/lib/grpc/2.5/grpc_c.bundle +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 911a7671bd030b48bdcaf8891fb9f2b38edcbb671300745a2ad6360fb9e23de1
|
4
|
+
data.tar.gz: 9129c1af0e1af4d5ccda508116653426209c4ac37a4dea4d6e26a186b26d6f77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: caebdfea49833984aef32c1e11b4f4d276c61f2ee2869e6fbcd2dbe1869e3d619daf2176ba27654136c6047c2ff517f7a85d180dbb52e9339bba04901d3915e3
|
7
|
+
data.tar.gz: 20c4196183526fd7a158062182e4cf266b195da9044d066554fb64b9ca2fd8e365a606f819f35598b0ffb2d2a14255ea54769d2b8737cf9b27f52951dafa6c75
|
File without changes
|
File without changes
|
@@ -16,6 +16,7 @@ require 'etc'
|
|
16
16
|
require 'mkmf'
|
17
17
|
|
18
18
|
windows = RUBY_PLATFORM =~ /mingw|mswin/
|
19
|
+
windows_ucrt = RUBY_PLATFORM =~ /(mingw|mswin).*ucrt/
|
19
20
|
bsd = RUBY_PLATFORM =~ /bsd/
|
20
21
|
darwin = RUBY_PLATFORM =~ /darwin/
|
21
22
|
linux = RUBY_PLATFORM =~ /linux/
|
@@ -109,6 +110,7 @@ unless windows
|
|
109
110
|
exit 1 unless $? == 0
|
110
111
|
end
|
111
112
|
|
113
|
+
$CFLAGS << ' -DGRPC_RUBY_WINDOWS_UCRT' if windows_ucrt
|
112
114
|
$CFLAGS << ' -I' + File.join(grpc_root, 'include')
|
113
115
|
|
114
116
|
ext_export_file = File.join(grpc_root, 'src', 'ruby', 'ext', 'grpc', 'ext-export')
|
@@ -23,9 +23,13 @@
|
|
23
23
|
|
24
24
|
int grpc_rb_load_core() {
|
25
25
|
#if GPR_ARCH_64
|
26
|
-
|
26
|
+
#if GRPC_RUBY_WINDOWS_UCRT
|
27
|
+
TCHAR fname[] = _T("grpc_c.64-ucrt.ruby");
|
27
28
|
#else
|
28
|
-
TCHAR fname[] = _T("grpc_c.
|
29
|
+
TCHAR fname[] = _T("grpc_c.64-msvcrt.ruby");
|
30
|
+
#endif
|
31
|
+
#else
|
32
|
+
TCHAR fname[] = _T("grpc_c.32-msvcrt.ruby");
|
29
33
|
#endif
|
30
34
|
HMODULE module = GetModuleHandle(_T("grpc_c.so"));
|
31
35
|
TCHAR path[2048 + 32] = _T("");
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -104,6 +104,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
104
104
|
end
|
105
105
|
add_message "grpc.testing.ClientConfigureResponse" do
|
106
106
|
end
|
107
|
+
add_message "grpc.testing.MemorySize" do
|
108
|
+
optional :rss, :int64, 1
|
109
|
+
end
|
107
110
|
add_enum "grpc.testing.PayloadType" do
|
108
111
|
value :COMPRESSABLE, 0
|
109
112
|
end
|
@@ -139,6 +142,7 @@ module Grpc
|
|
139
142
|
ClientConfigureRequest::Metadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.ClientConfigureRequest.Metadata").msgclass
|
140
143
|
ClientConfigureRequest::RpcType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.ClientConfigureRequest.RpcType").enummodule
|
141
144
|
ClientConfigureResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.ClientConfigureResponse").msgclass
|
145
|
+
MemorySize = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.MemorySize").msgclass
|
142
146
|
PayloadType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.PayloadType").enummodule
|
143
147
|
GrpclbRouteType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.GrpclbRouteType").enummodule
|
144
148
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.49.1
|
5
5
|
platform: x86_64-darwin
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: src/ruby/bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.21'
|
20
20
|
type: :runtime
|
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: '3.
|
26
|
+
version: '3.21'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: googleapis-common-protos-types
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -205,9 +205,9 @@ extensions: []
|
|
205
205
|
extra_rdoc_files: []
|
206
206
|
files:
|
207
207
|
- etc/roots.pem
|
208
|
-
- grpc_c.32.ruby
|
208
|
+
- grpc_c.32-msvcrt.ruby
|
209
|
+
- grpc_c.64-msvcrt.ruby
|
209
210
|
- grpc_c.64-ucrt.ruby
|
210
|
-
- grpc_c.64.ruby
|
211
211
|
- src/ruby/bin/math_client.rb
|
212
212
|
- src/ruby/bin/math_pb.rb
|
213
213
|
- src/ruby/bin/math_server.rb
|
@@ -253,7 +253,6 @@ files:
|
|
253
253
|
- src/ruby/ext/grpc/rb_xds_server_credentials.c
|
254
254
|
- src/ruby/ext/grpc/rb_xds_server_credentials.h
|
255
255
|
- src/ruby/lib/grpc.rb
|
256
|
-
- src/ruby/lib/grpc/2.5/grpc_c.bundle
|
257
256
|
- src/ruby/lib/grpc/2.6/grpc_c.bundle
|
258
257
|
- src/ruby/lib/grpc/2.7/grpc_c.bundle
|
259
258
|
- src/ruby/lib/grpc/3.0/grpc_c.bundle
|
@@ -347,7 +346,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
347
346
|
requirements:
|
348
347
|
- - ">="
|
349
348
|
- !ruby/object:Gem::Version
|
350
|
-
version: '2.
|
349
|
+
version: '2.6'
|
351
350
|
- - "<"
|
352
351
|
- !ruby/object:Gem::Version
|
353
352
|
version: 3.2.dev
|
Binary file
|