Skip to content

Commit b8244dd

Browse files
authored
Merge pull request #742 from luraproject/dev-2.8
Prepare v2.8.0
2 parents 6c21a87 + 71a4a93 commit b8244dd

4 files changed

Lines changed: 72 additions & 136 deletions

File tree

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v3
1818
with:
19-
go-version: "1.20"
19+
go-version: "1.22"
2020

2121
- name: Build
2222
run: go build -v ./...

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ generate:
1414

1515
test: generate
1616
go test -cover -race ./...
17-
#go test -tags integration --coverpkg=./... ./test/...
17+
go test -tags integration ./test/...
1818
go test -tags integration ./transport/...
1919
go test -tags integration ./proxy/...
2020

go.mod

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,49 @@
11
module github.com/luraproject/lura/v2
22

3-
go 1.17
3+
go 1.22.0
44

55
require (
6-
github.com/dimfeld/httptreemux/v5 v5.3.0
6+
github.com/dimfeld/httptreemux/v5 v5.5.0
77
github.com/gin-contrib/sse v0.1.0 // indirect
88
github.com/gin-gonic/gin v1.9.1
9-
github.com/go-chi/chi/v5 v5.0.4
10-
github.com/gorilla/mux v1.8.0
9+
github.com/go-chi/chi/v5 v5.1.0
10+
github.com/gorilla/mux v1.8.1
1111
github.com/krakendio/flatmap v1.1.1
12-
github.com/mattn/go-isatty v0.0.19 // indirect
12+
github.com/mattn/go-isatty v0.0.20 // indirect
1313
github.com/urfave/negroni/v2 v2.0.2
1414
github.com/valyala/fastrand v1.1.0
1515
)
1616

1717
require (
18-
golang.org/x/net v0.23.0
18+
golang.org/x/net v0.32.0
1919
golang.org/x/sync v0.10.0
2020
golang.org/x/text v0.21.0
2121
)
2222

2323
require (
24-
github.com/bytedance/sonic v1.9.1 // indirect
25-
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
26-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
24+
github.com/bytedance/sonic v1.12.5 // indirect
25+
github.com/bytedance/sonic/loader v0.2.0 // indirect
26+
github.com/cloudwego/base64x v0.1.4 // indirect
27+
github.com/cloudwego/iasm v0.2.0 // indirect
28+
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
2729
github.com/go-playground/locales v0.14.1 // indirect
2830
github.com/go-playground/universal-translator v0.18.1 // indirect
29-
github.com/go-playground/validator/v10 v10.14.0 // indirect
30-
github.com/goccy/go-json v0.10.2 // indirect
31+
github.com/go-playground/validator/v10 v10.23.0 // indirect
32+
github.com/goccy/go-json v0.10.4 // indirect
33+
github.com/google/go-cmp v0.6.0 // indirect
3134
github.com/json-iterator/go v1.1.12 // indirect
32-
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
33-
github.com/leodido/go-urn v1.2.4 // indirect
35+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
36+
github.com/leodido/go-urn v1.4.0 // indirect
3437
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3538
github.com/modern-go/reflect2 v1.0.2 // indirect
36-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
39+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
40+
github.com/stretchr/testify v1.10.0 // indirect
3741
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
38-
github.com/ugorji/go/codec v1.2.11 // indirect
39-
golang.org/x/arch v0.3.0 // indirect
42+
github.com/ugorji/go/codec v1.2.12 // indirect
43+
golang.org/x/arch v0.12.0 // indirect
4044
golang.org/x/crypto v0.31.0 // indirect
4145
golang.org/x/sys v0.28.0 // indirect
42-
google.golang.org/protobuf v1.33.0 // indirect
46+
google.golang.org/protobuf v1.35.2 // indirect
47+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
4348
gopkg.in/yaml.v3 v3.0.1 // indirect
4449
)

0 commit comments

Comments
 (0)