Files
pad/go.mod
T
xarmian 9e8fec93ff fix(ci): bump golang.org/x/image to v0.39.0 to clear 5 govulncheck CVEs (#300)
govulncheck flagged 5 vulnerabilities reachable through the new
attachments image processor (TASK-878), all in the
golang.org/x/image module that disintegration/imaging pulls in
transitively. We were stuck on the ancient
v0.0.0-20191009234506-e7c1f5e7dbb8 because nothing else explicitly
required a newer version.

  - GO-2026-4815: OOM from malicious IFD offset in tiff (fix v0.38.0)
  - GO-2024-2937: Panic on invalid palette-color images   (fix v0.18.0)
  - GO-2023-1990: Excessive CPU on 0-height tiff images   (fix v0.10.0)
  - GO-2023-1989: Excessive resource consumption in tiff  (fix v0.10.0)
  - GO-2023-1572: DoS via crafted tiff image              (fix v0.5.0)

go get golang.org/x/image@latest landed v0.39.0, which fixes all
five. golang.org/x/text bumped 0.35.0 → 0.36.0 as a transitive
ride-along.

Verification:
  go build ./...                              — clean
  go test ./...                               — pass
  govulncheck ./...                           — "No vulnerabilities found"

This closes the last CI gap: PR #299 (gofmt + race-timeout) cleared
the lint and PostgreSQL race-step failures; this clears the third
red light. Race step on PR #299's merge run finished in 19m36s ✓
under the new 30m cap.
2026-04-29 16:06:25 -04:00

57 lines
2.1 KiB
Modula-2

module github.com/PerpetualSoftware/pad
go 1.26.0
require (
github.com/BurntSushi/toml v1.6.0
github.com/disintegration/imaging v1.6.2
github.com/fatih/color v1.19.0
github.com/go-chi/chi/v5 v5.2.5
github.com/go-chi/cors v1.2.2
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.9.1
github.com/pquerna/otp v1.5.0
github.com/prometheus/client_golang v1.23.2
github.com/prometheus/client_model v0.6.2
github.com/redis/go-redis/v9 v9.18.0
github.com/sergi/go-diff v1.4.0
github.com/spf13/cobra v1.10.2
github.com/trustelem/zxcvbn v1.0.1
golang.org/x/crypto v0.49.0
golang.org/x/image v0.39.0
golang.org/x/term v0.41.0
golang.org/x/text v0.36.0
golang.org/x/time v0.15.0
modernc.org/sqlite v1.47.0
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dlclark/regexp2 v1.12.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/prometheus/common v0.66.1 // indirect
github.com/prometheus/procfs v0.16.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/spf13/pflag v1.0.9 // indirect
github.com/test-go/testify v1.1.4 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.yaml.in/yaml/v2 v2.4.2 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
google.golang.org/protobuf v1.36.8 // indirect
modernc.org/libc v1.70.0 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.11.0 // indirect
)