grpc 1.48.0-x86-linux → 1.49.0.pre1-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 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.5/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/2.6/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/2.7/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.0/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.1/grpc_c.so +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 +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1da9db032eb6f032678db80a697d44602ebfc52d5868bfbd78f8ec569780a64c
|
4
|
+
data.tar.gz: 628e72afb59ce09fdb05887d9c5b7c58fd688f6a74485dd0cb852c195027e4a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d1a69615bd1a6cc4418c240feb1c62c99a20e15f59113e14b947e7df2cc9455ad955619722a32b88e59f9da775c12ffab9c1d12fd6e7c7afd364efed48c9646
|
7
|
+
data.tar.gz: ded53d6886ccb3c385bb29ddfeb579ef31ef75f553b45b93974cdb37e1cd655d981c30cf50ff5cd09e8795e034d28b56ba19079adc197e5c383f33cee7afc62c
|
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/
|
@@ -85,6 +86,7 @@ end
|
|
85
86
|
|
86
87
|
env_append 'CPPFLAGS', '-DGPR_BACKWARDS_COMPATIBILITY_MODE'
|
87
88
|
env_append 'CPPFLAGS', '-DGRPC_XDS_USER_AGENT_NAME_SUFFIX="\"RUBY\""'
|
89
|
+
env_append 'CPPFLAGS', '-DGRPC_RUBY_WINDOWS_UCRT' if windows_ucrt
|
88
90
|
|
89
91
|
require_relative '../../lib/grpc/version'
|
90
92
|
env_append 'CPPFLAGS', '-DGRPC_XDS_USER_AGENT_VERSION_SUFFIX="\"' + GRPC::VERSION + '\""'
|
@@ -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
|
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.0.pre1
|
5
5
|
platform: x86-linux
|
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-08-18 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
|
@@ -353,9 +353,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
353
353
|
version: 3.2.dev
|
354
354
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
355
355
|
requirements:
|
356
|
-
- - "
|
356
|
+
- - ">"
|
357
357
|
- !ruby/object:Gem::Version
|
358
|
-
version:
|
358
|
+
version: 1.3.1
|
359
359
|
requirements: []
|
360
360
|
rubygems_version: 3.3.4
|
361
361
|
signing_key:
|