Skip to content

Commit 3730b4b

Browse files
committed
upgrade hauth version
1 parent e65f9ec commit 3730b4b

9 files changed

Lines changed: 19 additions & 19 deletions

File tree

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
module github.com/lynkdb/lynkapi
22

3-
go 1.24.0
4-
5-
toolchain go1.24.5
3+
go 1.25.6
64

75
require (
86
github.com/cespare/xxhash/v2 v2.3.0
97
github.com/chzyer/readline v1.5.1
10-
github.com/hooto/hauth v0.1.3
8+
github.com/hooto/hauth v0.1.4
9+
github.com/hooto/hauth/go v0.1.5
1110
github.com/hooto/hlog4g v0.9.5
1211
github.com/hooto/htoml4g v0.9.5
1312
github.com/hooto/httpsrv v0.12.5
1413
github.com/olekukonko/tablewriter v1.1.0
1514
github.com/tidwall/pretty v1.2.1
16-
google.golang.org/grpc v1.76.0
17-
google.golang.org/protobuf v1.36.10
15+
google.golang.org/grpc v1.78.0
16+
google.golang.org/protobuf v1.36.11
1817
)
1918

2019
require (
2120
github.com/andybalholm/brotli v1.2.0 // indirect
2221
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
2322
github.com/fatih/color v1.18.0 // indirect
23+
github.com/google/uuid v1.6.0 // indirect
2424
github.com/hooto/hflag4g v0.10.1 // indirect
2525
github.com/mattn/go-colorable v0.1.14 // indirect
2626
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -29,8 +29,8 @@ require (
2929
github.com/olekukonko/errors v1.1.0 // indirect
3030
github.com/olekukonko/ll v0.1.2 // indirect
3131
github.com/rivo/uniseg v0.4.7 // indirect
32-
golang.org/x/net v0.46.0 // indirect
33-
golang.org/x/sys v0.37.0 // indirect
34-
golang.org/x/text v0.30.0 // indirect
35-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 // indirect
32+
golang.org/x/net v0.47.0 // indirect
33+
golang.org/x/sys v0.40.0 // indirect
34+
golang.org/x/text v0.31.0 // indirect
35+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
3636
)

go/lynkapi/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"sync"
2222
"time"
2323

24-
"github.com/hooto/hauth/go/hauth/v1"
25-
hauth2 "github.com/hooto/hauth/v2/hauth"
24+
"github.com/hooto/hauth/go"
25+
hauth2 "github.com/hooto/hauth/go/v2"
2626
"google.golang.org/grpc"
2727
"google.golang.org/grpc/status"
2828
)

go/lynkapi/data.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/lynkapi/data_ext.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/lynkapi/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"google.golang.org/grpc/credentials"
2424
_ "google.golang.org/grpc/encoding/gzip"
2525

26-
hauth2 "github.com/hooto/hauth/v2/hauth"
26+
hauth2 "github.com/hooto/hauth/go/v2"
2727
"github.com/hooto/hlog4g/hlog"
2828
)
2929

go/lynkapi/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"strings"
2727
"sync"
2828

29-
hauth2 "github.com/hooto/hauth/v2/hauth"
29+
hauth2 "github.com/hooto/hauth/go/v2"
3030
"github.com/hooto/hlog4g/hlog"
3131
"github.com/hooto/httpsrv"
3232
"google.golang.org/protobuf/types/known/structpb"

go/lynkapi/service.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/lynkapi/service_grpc.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/lynkapi/type.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)