grpc 1.72.0-x86-mingw32 → 1.73.0-x86-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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f530541338382e31fc2cb2be12625e4a0cc3077662ac8b4c0f070b20ae4fa43c
4
- data.tar.gz: 1bbc0359c940e564e4b196abd46fb8ae5b9922da0264eec17943e695d98e5367
3
+ metadata.gz: 0f009ac043665076f62192b00b239723381b8dc646373ac9314b71ae70ec7f5d
4
+ data.tar.gz: 75a045bb329e1455d5ab433f0491669aa86eb3c2396609e6f5ea7a83e1b484c1
5
5
  SHA512:
6
- metadata.gz: e5478d7bf586643f416ac2b95315490cf6e8bec2db705d0ab479933c2b7998049785d8af61bfbd7c098c926bfaf4eeffbf700bb37413800cf7cd7e5f52f00a6d
7
- data.tar.gz: 2d530eaef394bcf001689575e9728c6414ea3beb4e125f663d79a7080ec133399a8130f45b9eaabccf84b9c1c7674e1763967cbce4005aaf87d97636df56f26d
6
+ metadata.gz: eac250764c78bf7f4f1c3616c7667d17993276ddf350144aaceaecd4179bb0fe083f9788de41d4dec6cb1a088a324c7b82d691efda79e12d5eae33bcd5c6e255
7
+ data.tar.gz: 8ff2716597bc52dbb245e1b2439472ec25e53c818567237fa504ee7edae2e5de823a35f57e12ab1aeb8b75a6db86cbdb950dfc05612b4204c2ffc9c743c5f8e4
Binary file
@@ -231,7 +231,7 @@ File.rename('Makefile.new', 'Makefile')
231
231
 
232
232
  if grpc_config == 'opt'
233
233
  File.open('Makefile.new', 'w') do |o|
234
- o.puts 'hijack: all strip'
234
+ o.puts 'hijack: all strip remove_unused_artifacts'
235
235
  o.puts
236
236
  o.write(File.read('Makefile'))
237
237
  o.puts
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.72.0'
17
+ VERSION = '1.73.0'
18
18
  end
@@ -64,12 +64,8 @@ end
64
64
  def sanity_check_values_of_accessors(op_view,
65
65
  expected_metadata,
66
66
  expected_trailing_metadata)
67
- expected_status = Struct::Status.new
68
- expected_status.code = 0
69
- expected_status.details = 'OK'
70
- expected_status.metadata = expected_trailing_metadata
71
-
72
- expect(op_view.status).to eq(expected_status)
67
+ expect(op_view.status.code).to eq(0)
68
+ expect(op_view.status.metadata).to eq(expected_trailing_metadata)
73
69
  expect(op_view.metadata).to eq(expected_metadata)
74
70
  expect(op_view.trailing_metadata).to eq(expected_trailing_metadata)
75
71
 
@@ -46,7 +46,7 @@ class FailingService
46
46
 
47
47
  def initialize(_default_var = 'ignored')
48
48
  @details = 'app error'
49
- @code = 101
49
+ @code = 3
50
50
  @md = { 'failed_method' => 'an_rpc' }
51
51
  end
52
52
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.73.0
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - gRPC Authors
@@ -358,7 +358,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
358
358
  - !ruby/object:Gem::Version
359
359
  version: '0'
360
360
  requirements: []
361
- rubygems_version: 3.6.8
361
+ rubygems_version: 3.6.9
362
362
  specification_version: 4
363
363
  summary: GRPC system in Ruby
364
364
  test_files: