Skip to content

Commit f0b43db

Browse files
committed
fix: SSH tunnel timeout and memory leaks
1 parent d8d4c6c commit f0b43db

File tree

4 files changed

+152
-144
lines changed

4 files changed

+152
-144
lines changed

go.mod

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ module github.com/limanmys/render-engine
33
go 1.19
44

55
require (
6-
github.com/Nerzal/gocloak/v13 v13.7.0
7-
github.com/go-resty/resty/v2 v2.7.0
8-
github.com/gofiber/fiber/v2 v2.46.0
6+
github.com/Nerzal/gocloak/v13 v13.8.0
7+
github.com/go-resty/resty/v2 v2.9.1
8+
github.com/gofiber/fiber/v2 v2.49.2
99
github.com/gofiber/helmet/v2 v2.2.26
10-
github.com/google/uuid v1.3.0
10+
github.com/google/uuid v1.3.1
1111
github.com/joho/godotenv v1.5.1
12-
go.uber.org/zap v1.24.0
12+
go.uber.org/zap v1.26.0
1313
gorm.io/driver/mysql v1.5.1
1414
gorm.io/driver/postgres v1.5.2
15-
gorm.io/gorm v1.25.1
15+
gorm.io/gorm v1.25.4
1616
)
1717

1818
require (
@@ -23,7 +23,7 @@ require (
2323
github.com/gofrs/uuid v4.4.0+incompatible // indirect
2424
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
2525
github.com/hashicorp/go-uuid v1.0.3 // indirect
26-
github.com/jackc/pgx/v5 v5.3.1 // indirect
26+
github.com/jackc/pgx/v5 v5.4.3 // indirect
2727
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
2828
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
2929
github.com/jcmturner/gofork v1.7.6 // indirect
@@ -34,7 +34,7 @@ require (
3434
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect
3535
github.com/mattn/go-colorable v0.1.13 // indirect
3636
github.com/mattn/go-isatty v0.0.19 // indirect
37-
github.com/mattn/go-runewidth v0.0.14 // indirect
37+
github.com/mattn/go-runewidth v0.0.15 // indirect
3838
github.com/opentracing/opentracing-go v1.2.0 // indirect
3939
github.com/philhofer/fwd v1.1.2 // indirect
4040
github.com/pkg/errors v0.9.1 // indirect
@@ -45,14 +45,14 @@ require (
4545
github.com/segmentio/ksuid v1.0.4 // indirect
4646
github.com/tinylib/msgp v1.1.8 // indirect
4747
go.uber.org/atomic v1.11.0 // indirect
48-
go.uber.org/goleak v1.1.12 // indirect
48+
go.uber.org/goleak v1.2.0 // indirect
4949
go.uber.org/multierr v1.11.0 // indirect
50-
golang.org/x/net v0.10.0 // indirect
50+
golang.org/x/net v0.16.0 // indirect
5151
)
5252

5353
require (
5454
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
55-
github.com/alessio/shellescape v1.4.1
55+
github.com/alessio/shellescape v1.4.2
5656
github.com/andybalholm/brotli v1.0.5 // indirect
5757
github.com/avast/retry-go v3.0.0+incompatible
5858
github.com/go-sql-driver/mysql v1.7.1 // indirect
@@ -61,15 +61,15 @@ require (
6161
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
6262
github.com/jinzhu/inflection v1.0.0 // indirect
6363
github.com/jinzhu/now v1.1.5 // indirect
64-
github.com/klauspost/compress v1.16.5 // indirect
65-
github.com/masterzen/winrm v0.0.0-20220917170901-b07f6cb0598d
64+
github.com/klauspost/compress v1.17.0 // indirect
65+
github.com/masterzen/winrm v0.0.0-20230926183142-a7fbe840deba
6666
github.com/mervick/aes-everywhere/go/aes256 v0.0.0-20220903070135-f13ed3789ae1
6767
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
68-
github.com/pkg/sftp v1.13.5
68+
github.com/pkg/sftp v1.13.6
6969
github.com/valyala/bytebufferpool v1.0.0 // indirect
70-
github.com/valyala/fasthttp v1.47.0 // indirect
70+
github.com/valyala/fasthttp v1.50.0 // indirect
7171
github.com/valyala/tcplisten v1.0.0 // indirect
72-
golang.org/x/crypto v0.9.0
73-
golang.org/x/sys v0.8.0 // indirect
74-
golang.org/x/text v0.9.0
72+
golang.org/x/crypto v0.14.0
73+
golang.org/x/sys v0.13.0 // indirect
74+
golang.org/x/text v0.13.0
7575
)

0 commit comments

Comments
 (0)