fix: remove deprecated default cipher for golang >=1.22#17569
fix: remove deprecated default cipher for golang >=1.22#17569alexmt merged 3 commits intoargoproj:masterfrom
Conversation
Signed-off-by: Josh Wolf <josh@wolfs.io>
|
Have you run |
|
I see, golang/go#63413 |
|
@joshrwolf I'll mark this PR as a draft until you run |
|
FYI, I had go 1.22 installed and running the codegen locally gave me errors with packages downloaded with go 1.22. After installing 1.21, re-downloading all the local toolings in See kubernetes-sigs/controller-tools#888 |
Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
|
I took the liberty, run codegen and pushed changes to the branch ( |
* remove deprecated default cipher Signed-off-by: Josh Wolf <josh@wolfs.io> * regenerate CLI docs Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> --------- Signed-off-by: Josh Wolf <josh@wolfs.io> Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> Co-authored-by: Jann Fischer <jann@mistrust.net> Co-authored-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
* remove deprecated default cipher Signed-off-by: Josh Wolf <josh@wolfs.io> * regenerate CLI docs Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> --------- Signed-off-by: Josh Wolf <josh@wolfs.io> Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> Co-authored-by: Jann Fischer <jann@mistrust.net> Co-authored-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
|
Is this there in any released versions yet? @alexmt |
|
This is slated for 2.12; there's an RC out for it now. |
Closes #17571
newer versions of go remove the
TLS_RSA_WITH_AES_256_GCM_SHA384as an available cipher.this PR simply removes it in favor of the existing default
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, which remains a valid default option for the existing go toolchain version, and future onesChecklist: