3.74.2
(chore): Remove the tsgolint rebuild-from-source Docker stage. The published
oxlint-tsgolint 0.23.0 binaries are now used directly, eliminating the
golang image pull, typescript-go submodule clone, and Go compilation
that made Dockerfile builds slow. The two Go stdlib CVEs previously
addressed by the rebuild (CVE-2026-42507 net/textproto, CVE-2026-27145
crypto/x509) are not exercisable by a linting binary; they will clear
automatically when tsgolint ships a release built with go1.26.4+.
3.74.1
(fix): Fix TS5076 compilation error in generated pagination code when both
hasNextPage and step are configured on offset pagination. The
?? and && operators were mixed without parentheses.
(fix): Fix TS1484 compilation error in generated webhook code by using
import type for SignatureEncoding to satisfy verbatimModuleSyntax.