mirror of
https://github.com/caddyserver/caddy.git
synced 2026-06-04 21:15:17 -04:00
86121c860f
Tests / test (s390x on IBM Z) (push) Has been skipped
Tests / goreleaser-check (push) Has been skipped
Cross-Build / build (~1.26.0, 1.26, aix) (push) Successful in 1m45s
Tests / test (./cmd/caddy/caddy, ~1.26.0, ubuntu-latest, 0, 1.26, linux) (push) Failing after 3m4s
Cross-Build / build (~1.26.0, 1.26, dragonfly) (push) Successful in 1m29s
Cross-Build / build (~1.26.0, 1.26, darwin) (push) Successful in 4m41s
Cross-Build / build (~1.26.0, 1.26, freebsd) (push) Successful in 2m34s
Cross-Build / build (~1.26.0, 1.26, linux) (push) Successful in 2m36s
Cross-Build / build (~1.26.0, 1.26, illumos) (push) Successful in 3m17s
Cross-Build / build (~1.26.0, 1.26, openbsd) (push) Successful in 1m45s
Cross-Build / build (~1.26.0, 1.26, netbsd) (push) Successful in 2m35s
Cross-Build / build (~1.26.0, 1.26, solaris) (push) Successful in 1m39s
Cross-Build / build (~1.26.0, 1.26, windows) (push) Successful in 2m37s
Lint / govulncheck (push) Successful in 1m54s
OpenSSF Scorecard supply-chain security / Scorecard analysis (push) Failing after 40s
Lint / lint (ubuntu-latest, linux) (push) Successful in 3m19s
Lint / dependency-review (push) Failing after 1m1s
Tests / test (./cmd/caddy/caddy, ~1.26.0, macos-14, 0, 1.26, mac) (push) Has been cancelled
Tests / test (./cmd/caddy/caddy.exe, ~1.26.0, windows-latest, True, 1.26, windows) (push) Has been cancelled
Lint / lint (macos-14, mac) (push) Has been cancelled
Lint / lint (windows-latest, windows) (push) Has been cancelled
SNI is always ASCII on the wire (RFC 6066), and most config patterns are also ASCII. For pure ASCII input, idna.ToASCII only validates and lowercases, which is equivalent to a simple strings.ToLower. Add a fast path to avoid the overhead of idna.ToASCII in the common case.