Skip to content

Commit 3020071

Browse files
committed
Update deps, fix problems after update
1 parent bba49a2 commit 3020071

File tree

6 files changed

+225
-678
lines changed

6 files changed

+225
-678
lines changed

.github/workflows/echo-contrib.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ on:
2424
jobs:
2525
test:
2626
env:
27-
latest: '1.18'
27+
latest: '1.19'
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest, macos-latest, windows-latest]
31-
go: ['1.16', '1.17', '1.18']
31+
go: [ '1.17', '1.18', '1.19']
3232
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
3333
runs-on: ${{ matrix.os }}
3434
steps:
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
os: [ubuntu-latest]
65-
go: [1.18]
65+
go: [1.19]
6666
name: Benchmark comparison ${{ matrix.os }} @ Go ${{ matrix.go }}
6767
runs-on: ${{ matrix.os }}
6868
steps:

go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,46 @@ module github.com/labstack/echo-contrib
33
go 1.17
44

55
require (
6-
github.com/appleboy/gofight/v2 v2.1.2
7-
github.com/casbin/casbin/v2 v2.51.1
6+
github.com/casbin/casbin/v2 v2.63.0
87
github.com/gorilla/context v1.1.1
98
github.com/gorilla/sessions v1.2.1
10-
github.com/labstack/echo/v4 v4.9.0
11-
github.com/labstack/gommon v0.3.1
9+
github.com/labstack/echo/v4 v4.10.1
10+
github.com/labstack/gommon v0.4.0
1211
github.com/opentracing/opentracing-go v1.2.0
13-
github.com/openzipkin/zipkin-go v0.4.0
14-
github.com/prometheus/client_golang v1.12.2
15-
github.com/prometheus/common v0.37.0
16-
github.com/stretchr/testify v1.7.0
12+
github.com/openzipkin/zipkin-go v0.4.1
13+
github.com/prometheus/client_golang v1.14.0
14+
github.com/prometheus/common v0.39.0
15+
github.com/stretchr/testify v1.8.1
1716
github.com/uber/jaeger-client-go v2.30.0+incompatible
1817
)
1918

2019
require (
2120
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
2221
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
2322
github.com/beorn7/perks v1.0.1 // indirect
24-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
23+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2524
github.com/davecgh/go-spew v1.1.1 // indirect
2625
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
2726
github.com/golang/protobuf v1.5.2 // indirect
2827
github.com/gorilla/securecookie v1.1.1 // indirect
29-
github.com/mattn/go-colorable v0.1.12 // indirect
30-
github.com/mattn/go-isatty v0.0.14 // indirect
31-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
28+
github.com/kr/pretty v0.3.1 // indirect
29+
github.com/mattn/go-colorable v0.1.13 // indirect
30+
github.com/mattn/go-isatty v0.0.17 // indirect
31+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
3232
github.com/pkg/errors v0.9.1 // indirect
3333
github.com/pmezard/go-difflib v1.0.0 // indirect
34-
github.com/prometheus/client_model v0.2.0 // indirect
35-
github.com/prometheus/procfs v0.8.0 // indirect
34+
github.com/prometheus/client_model v0.3.0 // indirect
35+
github.com/prometheus/procfs v0.9.0 // indirect
3636
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
3737
github.com/valyala/bytebufferpool v1.0.0 // indirect
38-
github.com/valyala/fasttemplate v1.2.1 // indirect
39-
go.uber.org/atomic v1.9.0 // indirect
40-
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
41-
golang.org/x/net v0.0.0-20220728030405-41545e8bf201 // indirect
42-
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
43-
golang.org/x/text v0.3.7 // indirect
44-
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
45-
google.golang.org/grpc v1.48.0 // indirect
46-
google.golang.org/protobuf v1.28.0 // indirect
47-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
38+
github.com/valyala/fasttemplate v1.2.2 // indirect
39+
go.uber.org/atomic v1.10.0 // indirect
40+
golang.org/x/crypto v0.6.0 // indirect
41+
golang.org/x/net v0.7.0 // indirect
42+
golang.org/x/sys v0.5.0 // indirect
43+
golang.org/x/text v0.7.0 // indirect
44+
golang.org/x/time v0.3.0 // indirect
45+
google.golang.org/grpc v1.53.0 // indirect
46+
google.golang.org/protobuf v1.28.1 // indirect
47+
gopkg.in/yaml.v3 v3.0.1 // indirect
4848
)

0 commit comments

Comments
 (0)