From ea579a24e7bbb0fe312723efade19e0805d9f43b Mon Sep 17 00:00:00 2001 From: Billy J Rhoades II Date: Tue, 1 Sep 2026 09:01:29 -0700 Subject: [PATCH] tlsutil: remove deprecated PreferServerCipherSuites Deprecated and ineffective since 1.17. --- tlsutil/tlsutil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlsutil/tlsutil.go b/tlsutil/tlsutil.go index 34c6cc2..05c9177 100644 --- a/tlsutil/tlsutil.go +++ b/tlsutil/tlsutil.go @@ -65,7 +65,7 @@ func WithCertificates(certs []tls.Certificate) Option { // // Use one of the available Options to modify the default config. func NewConfig(opts ...Option) *tls.Config { - cfg := tls.Config{PreferServerCipherSuites: true} + cfg := tls.Config{} for _, opt := range opts { opt(&cfg)