Skip to content

Commit b684b81

Browse files
committed
go: bump all dependencies
This commit is the result of: go get -u -t ./... go mod tidy This automatically updated the minimum go version to 1.26 which fixes the golanci-lint error. go: github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.13.2: github.com/golangci/golangci-lint/v2@v2.13.2 requires go >= 1.26.0 (running go 1.25.0; GOTOOLCHAIN=local) Signed-off-by: Robin Jarry <robin@jarry.cc>
1 parent 98a934c commit b684b81

2 files changed

Lines changed: 78 additions & 91 deletions

File tree

‎go.mod‎

Lines changed: 24 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,63 @@
11
module github.com/getpatchwork/patchwork
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
github.com/a-h/templ v0.3.1020
7-
github.com/alecthomas/kong v1.16.0
7+
github.com/alecthomas/kong v1.16.1
88
github.com/alecthomas/kong-toml v0.4.0
9-
github.com/danielgtaylor/huma/v2 v2.39.0
9+
github.com/danielgtaylor/huma/v2 v2.39.1
1010
github.com/emersion/go-mbox v1.0.4
1111
github.com/emersion/go-message v0.18.2
1212
github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6
13-
github.com/emersion/go-smtp v0.24.0
14-
github.com/go-chi/chi/v5 v5.3.1
15-
github.com/go-sql-driver/mysql v1.10.0
16-
github.com/jackc/pgx/v5 v5.10.0
17-
github.com/stretchr/testify v1.11.1
13+
github.com/emersion/go-smtp v0.25.0
14+
github.com/go-chi/chi/v5 v5.3.2
15+
github.com/go-sql-driver/mysql v1.10.1
16+
github.com/jackc/pgx/v5 v5.11.0
17+
github.com/stretchr/testify v1.12.1
1818
github.com/uptrace/bun v1.2.18
1919
github.com/uptrace/bun/dialect/mysqldialect v1.2.18
2020
github.com/uptrace/bun/dialect/pgdialect v1.2.18
2121
github.com/uptrace/bun/dialect/sqlitedialect v1.2.18
22-
golang.org/x/crypto v0.54.0
23-
golang.org/x/term v0.45.0
24-
modernc.org/sqlite v1.54.0
22+
golang.org/x/crypto v0.57.0
23+
golang.org/x/term v0.46.0
24+
modernc.org/sqlite v1.59.0
2525
)
2626

2727
require (
2828
filippo.io/edwards25519 v1.2.0 // indirect
2929
github.com/a-h/parse v0.0.0-20250122154542-74294addb73e // indirect
30-
github.com/andybalholm/brotli v1.2.1 // indirect
30+
github.com/andybalholm/brotli v1.2.2 // indirect
3131
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3232
github.com/cli/browser v1.3.0 // indirect
33-
github.com/davecgh/go-spew v1.1.1 // indirect
34-
github.com/dustin/go-humanize v1.0.1 // indirect
33+
github.com/dustin/go-humanize v1.1.0 // indirect
3534
github.com/fatih/color v1.16.0 // indirect
3635
github.com/fsnotify/fsnotify v1.7.0 // indirect
3736
github.com/google/uuid v1.6.0 // indirect
3837
github.com/jackc/pgpassfile v1.0.0 // indirect
3938
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
4039
github.com/jackc/puddle/v2 v2.2.2 // indirect
4140
github.com/jinzhu/inflection v1.0.0 // indirect
42-
github.com/mattn/go-colorable v0.1.14 // indirect
43-
github.com/mattn/go-isatty v0.0.23 // indirect
41+
github.com/mattn/go-colorable v0.1.15 // indirect
42+
github.com/mattn/go-isatty v0.0.24 // indirect
4443
github.com/natefinch/atomic v1.0.1 // indirect
4544
github.com/ncruces/go-strftime v1.0.0 // indirect
4645
github.com/pelletier/go-toml v1.9.5 // indirect
47-
github.com/pmezard/go-difflib v1.0.0 // indirect
4846
github.com/puzpuzpuz/xsync/v3 v3.5.1 // indirect
4947
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
5048
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
5149
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5250
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
53-
golang.org/x/mod v0.38.0 // indirect
54-
golang.org/x/net v0.56.0 // indirect
55-
golang.org/x/sync v0.22.0 // indirect
56-
golang.org/x/sys v0.47.0 // indirect
57-
golang.org/x/text v0.40.0 // indirect
58-
golang.org/x/tools v0.47.0 // indirect
59-
gopkg.in/yaml.v3 v3.0.1 // indirect
60-
modernc.org/libc v1.74.1 // indirect
51+
go.yaml.in/yaml/v3 v3.0.5 // indirect
52+
golang.org/x/mod v0.41.0 // indirect
53+
golang.org/x/net v0.59.0 // indirect
54+
golang.org/x/sync v0.23.0 // indirect
55+
golang.org/x/sys v0.48.0 // indirect
56+
golang.org/x/text v0.42.0 // indirect
57+
golang.org/x/tools v0.50.0 // indirect
58+
modernc.org/libc v1.77.0 // indirect
6159
modernc.org/mathutil v1.7.1 // indirect
62-
modernc.org/memory v1.11.0 // indirect
60+
modernc.org/memory v1.12.1 // indirect
6361
)
6462

6563
tool github.com/a-h/templ/cmd/templ

0 commit comments

Comments
 (0)