-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[macOS] Replace openssl 1.1 with openssl 3 #10851
[macOS] Replace openssl 1.1 with openssl 3 #10851
Conversation
$commandResult = Get-CommandResult "openssl version" | ||
$commandResult.Output | Should -Match "OpenSSL 1.1" | ||
$commandResult.Output | Should -Match "OpenSSL 3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A first-level heading
A second-level heading
A third-level heading
$commandResult = Get-CommandResult "openssl version" | ||
$commandResult.Output | Should -Match "OpenSSL 1.1" | ||
$commandResult.Output | Should -Match "OpenSSL 3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Text that is not a quote
Text that is a quote
@@ -7,17 +7,17 @@ Describe "OpenSSL" { | |||
} | |||
} | |||
|
|||
Context "OpenSSL 1.1 Path Check" { | |||
It "OpenSSL 1.1 path exists" { | |||
$openSSLpath = brew --prefix [email protected] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$openSSLpath = brew --prefix openssl@1.1 | ||
Context "OpenSSL 3 Path Check" { | ||
It "OpenSSL 3 path exists" { | ||
$openSSLpath = brew --prefix openssl@3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$openSSLpath = brew --prefix openssl@1.1 | ||
Context "OpenSSL 3 Path Check" { | ||
It "OpenSSL 3 path exists" { | ||
$openSSLpath = brew --prefix openssl@3 | ||
$openSSLpath | Should -Exist |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$openSSLpath | Should -Exist | ||
} | ||
} | ||
|
||
Context "OpenSSL 1.1 is default" { | ||
It "Default OpenSSL version is 1.1" { | ||
Context "OpenSSL 3 is default" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Context "OpenSSL 1.1 is default" { | ||
It "Default OpenSSL version is 1.1" { | ||
Context "OpenSSL 3 is default" { | ||
It "Default OpenSSL version is 3" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# #11646
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description
OpenSSL 1.1 is deprecated and removed from Homebrew. We are replacing it with OpenSSL 3.
Warning: [email protected] has been deprecated! It will be disabled on 2024-10-24.
Related issue:
#10817
Check list