Skip to content

Commit 7d9cbf3

Browse files
authored
Bump to v1.50.1 (#2378)
### Description of changes: Bump version to 1.50.1. (Needed so that `aws-lc-sys` can to pick up latest s2n-bignum changes.) ### Call-outs: #### What's Changed * Fix GCC 4.8 docker img; Also w/ GCC 7.5 by @justsmth in #2344 * Fix LibRdKafka CI by @smittals2 in #2372 * Expand .clang-tidy configuration by @justsmth in #2356 * nginx-1.28.0 aws-lc-nginx.patch by @robvanoostenrijk in #2373 * s2n bignum import method change by @torben-hansen in #2324 * Fix a theoretical overflow in BIO_printf by @justsmth in #2369 * Fix tpm2-tss integration test by @justsmth in #2370 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
1 parent 38369db commit 7d9cbf3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crypto/fipsmodule/service_indicator/service_indicator_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5296,7 +5296,7 @@ TEST(ServiceIndicatorTest, ED25519SigGenVerify) {
52965296
// Since this is running in FIPS mode it should end in FIPS
52975297
// Update this when the AWS-LC version number is modified
52985298
TEST(ServiceIndicatorTest, AWSLCVersionString) {
5299-
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.50.0");
5299+
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.50.1");
53005300
}
53015301

53025302
#else
@@ -5339,6 +5339,6 @@ TEST(ServiceIndicatorTest, BasicTest) {
53395339
// Since this is not running in FIPS mode it shouldn't end in FIPS
53405340
// Update this when the AWS-LC version number is modified
53415341
TEST(ServiceIndicatorTest, AWSLCVersionString) {
5342-
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.50.0");
5342+
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.50.1");
53435343
}
53445344
#endif // AWSLC_FIPS

include/openssl/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ extern "C" {
122122
// ServiceIndicatorTest.AWSLCVersionString
123123
// Note: there are two versions of this test. Only one test is compiled
124124
// depending on FIPS mode.
125-
#define AWSLC_VERSION_NUMBER_STRING "1.50.0"
125+
#define AWSLC_VERSION_NUMBER_STRING "1.50.1"
126126

127127
#if defined(BORINGSSL_SHARED_LIBRARY)
128128

0 commit comments

Comments
 (0)