chore: update Go module dependencies

Update dependencies to latest versions:

Major updates:
- github.com/jackc/pgx/v5: v5.8.0 -> v5.9.1
  * PostgreSQL driver for database connectivity

- github.com/klauspost/compress: v1.18.4 -> v1.18.5
  * Compression library for various formats

- github.com/pierrec/lz4/v4: v4.1.25 -> v4.1.26
  * LZ4 compression algorithm

- github.com/yuin/goldmark: v1.7.16 -> v1.7.17
  * Markdown parser for book descriptions

- golang.org/x/crypto: v0.48.0 -> v0.49.0
  * Cryptography primitives

- golang.org/x/text: v0.34.0 -> v0.35.0
  * Text processing utilities

Transitive dependency updates:
- golang.org/x/image, golang.org/x/net, golang.org/x/sync
- golang.org/x/sys, golang.org/x/time
- github.com/mattn/go-runewidth

All updates are backward compatible minor/patch versions.
This commit is contained in:
2026-03-22 20:35:15 -04:00
parent 057b595832
commit b43e47139b
2 changed files with 36 additions and 12 deletions
+12 -12
View File
@@ -14,21 +14,21 @@ require (
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.3
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/jackc/pgx/v5 v5.8.0
github.com/klauspost/compress v1.18.4
github.com/jackc/pgx/v5 v5.9.1
github.com/klauspost/compress v1.18.5
github.com/labstack/echo-jwt/v5 v5.0.1
github.com/labstack/echo/v5 v5.0.4
github.com/nwaples/rardecode v1.1.3
github.com/pdfcpu/pdfcpu v0.11.1
github.com/pierrec/lz4/v4 v4.1.25
github.com/pierrec/lz4/v4 v4.1.26
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/spf13/afero v1.15.0
github.com/stretchr/testify v1.11.1
github.com/ulikunitz/xz v0.5.15
github.com/yuin/goldmark v1.7.16
github.com/yuin/goldmark v1.7.17
github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594
golang.org/x/crypto v0.48.0
golang.org/x/text v0.34.0
golang.org/x/crypto v0.49.0
golang.org/x/text v0.35.0
)
require (
@@ -48,16 +48,16 @@ require (
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-runewidth v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.21 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/xyproto/randomstring v1.2.0 // indirect
golang.org/x/image v0.36.0 // indirect
golang.org/x/net v0.51.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/time v0.14.0 // indirect
golang.org/x/image v0.37.0 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/time v0.15.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)