1
1
module github.com/shellhub-io/shellhub/agent
2
2
3
- go 1.22.4
3
+ go 1.23.7
4
4
5
5
require (
6
6
github.com/Masterminds/semver v1.5.0
7
- github.com/shellhub-io/shellhub v0.13.4
7
+ github.com/shellhub-io/shellhub v0.0.0-00010101000000-000000000000
8
8
github.com/sirupsen/logrus v1.9.3
9
9
github.com/spf13/cobra v1.9.1
10
10
)
11
11
12
12
require (
13
- github.com/labstack/gommon v0.4.0 // indirect
13
+ github.com/labstack/gommon v0.4.2 // indirect
14
14
github.com/mattn/go-colorable v0.1.13 // indirect
15
- github.com/mattn/go-isatty v0.0.19 // indirect
15
+ github.com/mattn/go-isatty v0.0.20 // indirect
16
16
github.com/valyala/bytebufferpool v1.0.0 // indirect
17
17
github.com/valyala/fasttemplate v1.2.2 // indirect
18
18
)
@@ -22,47 +22,47 @@ require (
22
22
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5 // indirect
23
23
github.com/Microsoft/go-winio v0.6.2 // indirect
24
24
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
25
- github.com/creack/pty v1.1.18 // indirect
25
+ github.com/creack/pty v1.1.24 // indirect
26
26
github.com/distribution/reference v0.6.0 // indirect
27
- github.com/docker/docker v27.1.1 +incompatible // indirect
27
+ github.com/docker/docker v28.0.4 +incompatible // indirect
28
28
github.com/docker/go-connections v0.5.0 // indirect
29
29
github.com/docker/go-units v0.5.0 // indirect
30
30
github.com/felixge/httpsnoop v1.0.4 // indirect
31
- github.com/gliderlabs/ssh v0.3.5 // indirect
31
+ github.com/gabriel-vasile/mimetype v1.4.8 // indirect
32
+ github.com/gliderlabs/ssh v0.3.8 // indirect
32
33
github.com/go-logr/logr v1.4.2 // indirect
33
34
github.com/go-logr/stdr v1.2.2 // indirect
34
35
github.com/go-playground/locales v0.14.1 // indirect
35
36
github.com/go-playground/universal-translator v0.18.1 // indirect
36
- github.com/go-playground/validator/v10 v10.11.2 // indirect
37
- github.com/go-resty/resty/v2 v2.7.0 // indirect
37
+ github.com/go-playground/validator/v10 v10.26.0 // indirect
38
+ github.com/go-resty/resty/v2 v2.16.5 // indirect
38
39
github.com/gogo/protobuf v1.3.2 // indirect
39
- github.com/gorilla/websocket v1.5.0 // indirect
40
+ github.com/gorilla/websocket v1.5.3 // indirect
40
41
github.com/inconshreveable/mousetrap v1.1.0 // indirect
41
42
github.com/kr/fs v0.1.0 // indirect
42
- github.com/labstack/echo/v4 v4.10.2 // indirect
43
- github.com/leodido/go-urn v1.2.2 // indirect
43
+ github.com/labstack/echo/v4 v4.13.3 // indirect
44
+ github.com/leodido/go-urn v1.4.0 // indirect
44
45
github.com/mattn/go-shellwords v1.0.12 // indirect
45
46
github.com/moby/docker-image-spec v1.3.1 // indirect
46
47
github.com/opencontainers/go-digest v1.0.0 // indirect
47
- github.com/opencontainers/image-spec v1.1.0 // indirect
48
+ github.com/opencontainers/image-spec v1.1.1 // indirect
48
49
github.com/openwall/yescrypt-go v1.0.0 // indirect
49
50
github.com/pkg/errors v0.9.1 // indirect
50
- github.com/pkg/sftp v1.13.5 // indirect
51
- github.com/sethvargo/go-envconfig v0.9.0 // indirect
51
+ github.com/pkg/sftp v1.13.9 // indirect
52
+ github.com/sethvargo/go-envconfig v1.1.1 // indirect
52
53
github.com/spf13/pflag v1.0.6 // indirect
53
- go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
54
- go.opentelemetry.io/otel v1.26.0 // indirect
55
- go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.26.0 // indirect
56
- go.opentelemetry.io/otel/metric v1.26.0 // indirect
57
- go.opentelemetry.io/otel/trace v1.26.0 // indirect
58
- go.opentelemetry.io/proto/otlp v1.2.0 // indirect
59
- golang.org/x/crypto v0.31.0 // indirect
60
- golang.org/x/net v0.33.0 // indirect
61
- golang.org/x/sys v0.28.0 // indirect
62
- golang.org/x/text v0.21.0 // indirect
54
+ go.opentelemetry.io/auto/sdk v1.1.0 // indirect
55
+ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
56
+ go.opentelemetry.io/otel v1.35.0 // indirect
57
+ go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0 // indirect
58
+ go.opentelemetry.io/otel/metric v1.35.0 // indirect
59
+ go.opentelemetry.io/otel/sdk v1.35.0 // indirect
60
+ go.opentelemetry.io/otel/trace v1.35.0 // indirect
61
+ golang.org/x/crypto v0.37.0 // indirect
62
+ golang.org/x/net v0.36.0 // indirect
63
+ golang.org/x/sys v0.32.0 // indirect
64
+ golang.org/x/text v0.24.0 // indirect
63
65
gotest.tools/v3 v3.5.1 // indirect
64
66
)
65
67
66
68
replace github.com/shellhub-io/shellhub => ../
67
-
68
- replace github.com/gliderlabs/ssh => github.com/shellhub-io/ssh v0.0.0-20230224143412-edd48dfd6eea
0 commit comments