grpc 1.48.0-x86-mingw32 → 1.49.0.pre1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2b033c91b9f841eaf8bca7efa1220e349f8b9a591fae63283afa3f3100bbc1f
4
- data.tar.gz: ac3c8a8296fc735dcbcfaccd5e5b53f55e45dcf41b36c11b9b8cbd03138ccfa4
3
+ metadata.gz: '04993cfda6343dc3c1480c9881096f5b0e78e532a1e339f184d0faa9165363ab'
4
+ data.tar.gz: bc87152f1a1b2935f9f7c163fd70c65032a49ae494068a5e7d643a86dbb62d8f
5
5
  SHA512:
6
- metadata.gz: 9d053eb417f9315e264728e8f2c71bb1e8a7709a987638a713d8753f0a0e29ba83e03b6ab5f53a8c52d40ab981727ef623345049f3a3752f0f1c85aab2f2bf22
7
- data.tar.gz: a7c4f76cc85a9a741dd7e872d0af233e2c68a3c48139ad207f7f8ea074bef639d1dd975971f37022945be81b05c8e7d0c3ae03286e4402496c440530ceeb2f7f
6
+ metadata.gz: 31d6fa39580a09cd99927441fa3f0f550bce1a3aefc4fb439fd1f2d6fb9550545b2b4d9baf160ebfe9b5fb418ed0f7dbcdfd9b7b2c1c6c4571f9e49b0fede3b4
7
+ data.tar.gz: 8502bbb25771f7c380ea82ad34a93d5cca000589eb057437269d7ebf6a5098c2a3264342322b812195a520c5862cda8521c0244106cbe613b2da47ad8364f4a5
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
- TCHAR fname[] = _T("grpc_c.64.ruby");
26
+ #if GRPC_RUBY_WINDOWS_UCRT
27
+ TCHAR fname[] = _T("grpc_c.64-ucrt.ruby");
27
28
  #else
28
- TCHAR fname[] = _T("grpc_c.32.ruby");
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
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.48.0'
17
+ VERSION = '1.49.0.pre1'
18
18
  end
@@ -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.48.0
4
+ version: 1.49.0.pre1
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2022-07-19 00:00:00.000000000 Z
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'
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.19'
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: '0'
358
+ version: 1.3.1
359
359
  requirements: []
360
360
  rubygems_version: 3.3.4
361
361
  signing_key: