Skip to content

Commit 3013c65

Browse files
authored
feat(fxcore): Updated httpserver module for dashboard handling (ankorstore#317)
1 parent 4076fbe commit 3013c65

File tree

3 files changed

+81
-74
lines changed

3 files changed

+81
-74
lines changed

fxcore/go.mod

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,60 +3,62 @@ module github.com/ankorstore/yokai/fxcore
33
go 1.20
44

55
require (
6-
github.com/ankorstore/yokai/config v1.4.0
7-
github.com/ankorstore/yokai/fxconfig v1.2.0
8-
github.com/ankorstore/yokai/fxgenerate v1.2.0
6+
github.com/ankorstore/yokai/config v1.5.0
7+
github.com/ankorstore/yokai/fxconfig v1.3.0
8+
github.com/ankorstore/yokai/fxgenerate v1.3.0
99
github.com/ankorstore/yokai/fxhealthcheck v1.1.0
1010
github.com/ankorstore/yokai/fxlog v1.1.0
1111
github.com/ankorstore/yokai/fxmetrics v1.2.0
1212
github.com/ankorstore/yokai/fxtrace v1.2.0
13-
github.com/ankorstore/yokai/generate v1.2.0
13+
github.com/ankorstore/yokai/generate v1.3.0
1414
github.com/ankorstore/yokai/healthcheck v1.1.0
15-
github.com/ankorstore/yokai/httpserver v1.5.0
15+
github.com/ankorstore/yokai/httpserver v1.6.0
1616
github.com/ankorstore/yokai/log v1.2.0
1717
github.com/ankorstore/yokai/trace v1.3.0
1818
github.com/arl/statsviz v0.6.0
19-
github.com/labstack/echo/v4 v4.11.4
19+
github.com/labstack/echo/v4 v4.13.3
2020
github.com/labstack/gommon v0.4.2
21-
github.com/prometheus/client_golang v1.19.0
22-
github.com/rs/zerolog v1.32.0
23-
github.com/stretchr/testify v1.9.0
21+
github.com/prometheus/client_golang v1.20.5
22+
github.com/rs/zerolog v1.33.0
23+
github.com/stretchr/testify v1.10.0
2424
go.opentelemetry.io/otel v1.24.0
2525
go.opentelemetry.io/otel/trace v1.24.0
26-
go.uber.org/fx v1.22.0
26+
go.uber.org/fx v1.23.0
2727
)
2828

2929
require (
3030
github.com/beorn7/perks v1.0.1 // indirect
3131
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
32-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
32+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3333
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3434
github.com/fsnotify/fsnotify v1.7.0 // indirect
3535
github.com/go-errors/errors v1.5.1 // indirect
3636
github.com/go-logr/logr v1.4.1 // indirect
3737
github.com/go-logr/stdr v1.2.2 // indirect
38-
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
3938
github.com/golang/protobuf v1.5.4 // indirect
4039
github.com/google/uuid v1.6.0 // indirect
4140
github.com/gorilla/websocket v1.5.1 // indirect
4241
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
4342
github.com/hashicorp/hcl v1.0.0 // indirect
43+
github.com/klauspost/compress v1.17.9 // indirect
44+
github.com/kylelemons/godebug v1.1.0 // indirect
4445
github.com/magiconair/properties v1.8.7 // indirect
4546
github.com/mattn/go-colorable v0.1.13 // indirect
4647
github.com/mattn/go-isatty v0.0.20 // indirect
4748
github.com/mitchellh/mapstructure v1.5.0 // indirect
48-
github.com/pelletier/go-toml/v2 v2.2.0 // indirect
49+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
50+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
4951
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
50-
github.com/prometheus/client_model v0.6.0 // indirect
51-
github.com/prometheus/common v0.48.0 // indirect
52-
github.com/prometheus/procfs v0.13.0 // indirect
52+
github.com/prometheus/client_model v0.6.1 // indirect
53+
github.com/prometheus/common v0.55.0 // indirect
54+
github.com/prometheus/procfs v0.15.1 // indirect
5355
github.com/sagikazarmark/locafero v0.4.0 // indirect
5456
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
5557
github.com/sourcegraph/conc v0.3.0 // indirect
5658
github.com/spf13/afero v1.11.0 // indirect
5759
github.com/spf13/cast v1.6.0 // indirect
5860
github.com/spf13/pflag v1.0.5 // indirect
59-
github.com/spf13/viper v1.18.2 // indirect
61+
github.com/spf13/viper v1.19.0 // indirect
6062
github.com/subosito/gotenv v1.6.0 // indirect
6163
github.com/valyala/bytebufferpool v1.0.0 // indirect
6264
github.com/valyala/fasttemplate v1.2.2 // indirect
@@ -66,19 +68,19 @@ require (
6668
go.opentelemetry.io/otel/metric v1.24.0 // indirect
6769
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
6870
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
69-
go.uber.org/dig v1.17.1 // indirect
71+
go.uber.org/dig v1.18.0 // indirect
7072
go.uber.org/multierr v1.11.0 // indirect
7173
go.uber.org/zap v1.27.0 // indirect
72-
golang.org/x/crypto v0.21.0 // indirect
74+
golang.org/x/crypto v0.31.0 // indirect
7375
golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f // indirect
74-
golang.org/x/net v0.22.0 // indirect
75-
golang.org/x/sys v0.18.0 // indirect
76-
golang.org/x/text v0.14.0 // indirect
77-
golang.org/x/time v0.5.0 // indirect
76+
golang.org/x/net v0.33.0 // indirect
77+
golang.org/x/sys v0.28.0 // indirect
78+
golang.org/x/text v0.21.0 // indirect
79+
golang.org/x/time v0.8.0 // indirect
7880
google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c // indirect
7981
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
8082
google.golang.org/grpc v1.62.1 // indirect
81-
google.golang.org/protobuf v1.33.0 // indirect
83+
google.golang.org/protobuf v1.34.2 // indirect
8284
gopkg.in/ini.v1 v1.67.0 // indirect
8385
gopkg.in/yaml.v3 v3.0.1 // indirect
8486
)

0 commit comments

Comments
 (0)