grpc 1.75.0.pre1 → 1.75.0
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 +4 -4
- data/Makefile +1 -1
- data/src/core/tsi/ssl_transport_security.cc +2 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0145809dfd2e8ff87405ad29997552db45faca6a24a3e5b946e0adaff8fd619
|
4
|
+
data.tar.gz: 6c8cf04ab54f12661a251e80331431f1c02736c3ae7269957712ed943041d493
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5b85de095735497377b3f930e19e1c18e6117a7d7e221e337e9066e4fc43267b04607af670eda743bbbac9f6fe362b226ea5a1c6be73eb82d01332272f349a6
|
7
|
+
data.tar.gz: 3d8ea49aa4c56a7aa658e528999fb5722d1a68df28172c2aa8d33593bc4119056a884f53baff725748e6fdc6b3bd9b19b55a24c430cbb7604ba10eab8c324637
|
data/Makefile
CHANGED
@@ -1338,7 +1338,8 @@ absl::Status ConfigureSpiffeRoots(
|
|
1338
1338
|
return absl::InvalidArgumentError(
|
1339
1339
|
"spiffe: root stack in the SPIFFE Bundle Map is nullptr.");
|
1340
1340
|
}
|
1341
|
-
|
1341
|
+
// the boringSSL library objective-C used did not have this function defined
|
1342
|
+
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(OPENSSL_APPLE)
|
1342
1343
|
X509_STORE_CTX_set0_trusted_stack(ctx, *root_stack);
|
1343
1344
|
#else
|
1344
1345
|
X509_STORE_CTX_trusted_stack(ctx, *root_stack);
|
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.75.0
|
4
|
+
version: 1.75.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
@@ -3837,7 +3837,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
3837
3837
|
- !ruby/object:Gem::Version
|
3838
3838
|
version: '0'
|
3839
3839
|
requirements: []
|
3840
|
-
rubygems_version: 3.7.
|
3840
|
+
rubygems_version: 3.7.2
|
3841
3841
|
specification_version: 4
|
3842
3842
|
summary: GRPC system in Ruby
|
3843
3843
|
test_files:
|