Skip to content

Commit cb96dba

Browse files
authored
Merge pull request #43 from mutablelogic/dev
Updated go version
2 parents 8bd6a4d + 45d5a95 commit cb96dba

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

etc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG OS
22
ARG ARCH
33

44
# Run makefile to build all the commands
5-
FROM --platform=${OS}/${ARCH} golang:1.22 AS builder
5+
FROM --platform=${OS}/${ARCH} golang:1.23 AS builder
66
ARG OS
77
ARG ARCH
88
WORKDIR /usr/src/app

go.mod

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/mutablelogic/go-client
22

33
go 1.23.5
44

5-
toolchain go1.24.0
5+
toolchain go1.24.2
66

77
require (
88
github.com/alecthomas/kong v1.10.0
@@ -11,29 +11,38 @@ require (
1111
github.com/djthorpe/go-tablewriter v0.0.11
1212
github.com/go-audio/audio v1.0.0
1313
github.com/go-audio/wav v1.1.0
14-
github.com/mutablelogic/go-server v1.4.7
14+
github.com/mutablelogic/go-server v1.5.9
1515
github.com/stretchr/testify v1.10.0
1616
github.com/xdg-go/pbkdf2 v1.0.0
17-
golang.org/x/crypto v0.36.0
18-
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
19-
golang.org/x/term v0.30.0
17+
golang.org/x/crypto v0.37.0
18+
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0
19+
golang.org/x/term v0.31.0
2020
)
2121

2222
require (
2323
github.com/MichaelMure/go-term-text v0.3.1 // indirect
2424
github.com/alecthomas/chroma v0.10.0 // indirect
2525
github.com/disintegration/imaging v1.6.2 // indirect
26+
github.com/djthorpe/go-pg v1.0.5 // indirect
2627
github.com/dlclark/regexp2 v1.11.5 // indirect
2728
github.com/eliukblau/pixterm/pkg/ansimage v0.0.0-20191210081756-9fb6cf8c2f75 // indirect
2829
github.com/fatih/color v1.18.0 // indirect
2930
github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b // indirect
30-
github.com/kr/pretty v0.3.0 // indirect
31+
github.com/jackc/pgpassfile v1.0.0 // indirect
32+
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
33+
github.com/jackc/pgx/v5 v5.7.3 // indirect
34+
github.com/jackc/puddle/v2 v2.2.2 // indirect
35+
github.com/kr/pretty v0.3.1 // indirect
36+
github.com/kr/text v0.2.0 // indirect
3137
github.com/kyokomi/emoji/v2 v2.2.13 // indirect
3238
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
3339
github.com/mattn/go-colorable v0.1.14 // indirect
3440
github.com/mattn/go-isatty v0.0.20 // indirect
35-
golang.org/x/image v0.25.0 // indirect
36-
golang.org/x/net v0.38.0 // indirect
41+
github.com/rogpeppe/go-internal v1.14.1 // indirect
42+
golang.org/x/image v0.26.0 // indirect
43+
golang.org/x/net v0.39.0 // indirect
44+
golang.org/x/sync v0.13.0 // indirect
45+
golang.org/x/text v0.24.0 // indirect
3746
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
3847
)
3948

0 commit comments

Comments
 (0)