1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-06-09 19:33:35 +00:00
Files
go-chasquid-smtp/go.mod
T
Alberto Bertogli ab2a6e7eb3 test: Update expected strings to Go 1.25.11/1.26.4
In Go 1.25.11/1.26.4, net/textproto error formatting was changed, and
now the message is quoted. This is to protect from general string
injections.

See https://go-review.googlesource.com/c/go/+/778182 and
ec1c380418ec6a0da28d4519872e2b81ba9152ba.

After this change, the error strings from net/textproto (and net/smtp
which uses it) now include quotes.

For chasquid, the only user-observable change in the server is that the
errors included in the DSN messages are now quoted, which should not be
a problem.

However, some of the tests which validate error strings need to be
adjusted.

The patch also updates go.mod to set the Go version to match this new
minimum.
2026-06-07 12:08:29 +01:00

19 lines
406 B
Modula-2

module blitiri.com.ar/go/chasquid
go 1.25.11
require (
blitiri.com.ar/go/log v1.1.0
blitiri.com.ar/go/spf v1.5.1
blitiri.com.ar/go/systemd v1.1.0
github.com/google/go-cmp v0.7.0
golang.org/x/crypto v0.52.0
golang.org/x/net v0.55.0
golang.org/x/term v0.43.0
golang.org/x/text v0.37.0
golang.org/x/tools v0.44.0
google.golang.org/protobuf v1.36.11
)
require golang.org/x/sys v0.45.0 // indirect