-
-
Notifications
You must be signed in to change notification settings - Fork 655
cmd/tlsconfig: remove support for deprecated tls.VersionSSL30 #412
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #412 +/- ##
=======================================
Coverage 71.28% 71.28%
=======================================
Files 9 9
Lines 599 599
=======================================
Hits 427 427
Misses 154 154
Partials 18 18 Continue to review full report at Codecov.
|
636757c
to
d459bb8
Compare
@alrs Please can you fix the build? Thanks! |
2ae60f0
to
c0c92a4
Compare
@@ -0,0 +1,33 @@ | |||
// +build !go1.14, !go1.11 go1.12,!go1.14 |
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.
Why do you have twice !go.1.14
? Looking at the file name, I think the build tags should be:
// +build go1.12, go1.13
My understanding of build tags is that |
Thanks! You are right, I'm looking now at the build tags for go version compatibility. Just a small nit, you have go1.14 twice in |
c0c92a4
to
c02bc17
Compare
Done. |
cmd/tlsconfig: remove support for deprecated tls.VersionSSL30 (securego#412)
The Go authors deprecated support for SSLv3 in go 1.13. They've decided to remove it in go 1.14, and have already merged the commit.
See: https://golang.org/issue/32716
This PR, or something like it, should probably land before February 2020.