Skip to content

Commit 5105229

Browse files
fix(deps): update backend
1 parent cb17e30 commit 5105229

File tree

4 files changed

+86
-33
lines changed

4 files changed

+86
-33
lines changed

backend/.mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ golangci-lint = "2.10.1"
66
# renovate: datasource=github-tags depName=gotestyourself/gotestsum
77
gotestsum = "1.13.0"
88
# renovate: datasource=github-tags depName=99designs/gqlgen
9-
"go:github.com/99designs/gqlgen" = "v0.17.86"
9+
"go:github.com/99designs/gqlgen" = "v0.17.87"
1010
# renovate: datasource=go depName=go.uber.org/mock/mockgen
1111
"go:go.uber.org/mock/mockgen" = "v0.6.0"
1212
# renovate: datasource=go depName=golang.org/x/tools/go/analysis/passes/fieldalignment/cmd/fieldalignment

backend/Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@ PGADMIN_VERSION := "9.12.0"
6363
# renovate: datasource=docker depName=maildev/maildev
6464
MAILDEV_VERSION := "2.2.1"
6565
# renovate: datasource=docker depName=prom/prometheus
66-
PROMETHEUS_VERSION := "v3.9.1"
66+
PROMETHEUS_VERSION := "v3.10.0"
6767
# renovate: datasource=docker depName=grafana/grafana
68-
GRAFANA_VERSION := "12.3.3"
68+
GRAFANA_VERSION := "12.4.0"
6969
# renovate: datasource=docker depName=grafana/tempo
7070
TEMPO_VERSION := "2.10.1"
7171
# renovate: datasource=docker depName=postgres
7272
POSTGRESQL_VERSION := "16"
7373
# renovate: datasource=docker depName=openpolicyagent/opa
74-
OPA_VERSION := "1.13.1"
74+
OPA_VERSION := "1.14.0"
7575
# renovate: datasource=docker depName=quay.io/keycloak/keycloak
76-
KEYCLOAK_VERSION := "26.5.3"
76+
KEYCLOAK_VERSION := "26.5.4"
7777
# renovate: datasource=docker depName=rabbitmq
78-
RABBITMQ_VERSION := "4.2.3"
78+
RABBITMQ_VERSION := "4.2.4"
7979

8080
DEFAULT_CONTAINER_RUNTIME ?= podman
8181

@@ -277,7 +277,7 @@ endif
277277
setup/dep/gen/install:
278278
ifndef HAS_GQLGEN
279279
@echo "=> Installing gqlgen tool"
280-
$(GO) install github.com/99designs/gqlgen@v0.17.86
280+
$(GO) install github.com/99designs/gqlgen@v0.17.87
281281
endif
282282
ifndef HAS_MOCKGEN
283283
@echo "=> Installing mockgen tool"

backend/go.mod

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.6
55
require (
66
cirello.io/pglock v1.16.1
77
emperror.dev/errors v0.8.1
8-
github.com/99designs/gqlgen v0.17.86
8+
github.com/99designs/gqlgen v0.17.87
99
github.com/99designs/gqlgen-contrib v0.1.1-0.20251208230329-86324b741cc0
1010
github.com/AppsFlyer/go-sundheit v0.6.0
1111
github.com/DATA-DOG/go-sqlmock v1.5.2
@@ -16,7 +16,7 @@ require (
1616
github.com/gin-contrib/cors v1.7.6
1717
github.com/gin-contrib/gzip v1.2.5
1818
github.com/gin-contrib/static v1.1.5
19-
github.com/gin-gonic/gin v1.11.0
19+
github.com/gin-gonic/gin v1.12.0
2020
github.com/go-gormigrate/gormigrate/v2 v2.1.5
2121
github.com/go-playground/validator/v10 v10.30.1
2222
github.com/gofrs/uuid v4.4.0+incompatible
@@ -26,23 +26,23 @@ require (
2626
github.com/prometheus/client_golang v1.23.2
2727
github.com/rabbitmq/amqp091-go v1.10.0
2828
github.com/ravilushqa/otelgqlgen v0.19.0
29-
github.com/samber/lo v1.52.0
29+
github.com/samber/lo v1.53.0
3030
github.com/samber/slog-zap/v2 v2.6.3
3131
github.com/spf13/cobra v1.10.2
3232
github.com/spf13/viper v1.21.0
3333
github.com/stretchr/testify v1.11.1
3434
github.com/thoas/go-funk v0.9.3
35-
github.com/vektah/gqlparser/v2 v2.5.31
35+
github.com/vektah/gqlparser/v2 v2.5.32
3636
github.com/xhit/go-simple-mail/v2 v2.16.0
37-
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.65.0
38-
go.opentelemetry.io/contrib/propagators/b3 v1.40.0
39-
go.opentelemetry.io/contrib/propagators/jaeger v1.40.0
40-
go.opentelemetry.io/contrib/propagators/ot v1.40.0
41-
go.opentelemetry.io/otel v1.40.0
42-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0
43-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0
44-
go.opentelemetry.io/otel/sdk v1.40.0
45-
go.opentelemetry.io/otel/trace v1.40.0
37+
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.66.0
38+
go.opentelemetry.io/contrib/propagators/b3 v1.41.0
39+
go.opentelemetry.io/contrib/propagators/jaeger v1.41.0
40+
go.opentelemetry.io/contrib/propagators/ot v1.41.0
41+
go.opentelemetry.io/otel v1.41.0
42+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.41.0
43+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.41.0
44+
go.opentelemetry.io/otel/sdk v1.41.0
45+
go.opentelemetry.io/otel/trace v1.41.0
4646
go.uber.org/automaxprocs v1.6.0
4747
go.uber.org/goleak v1.3.0
4848
go.uber.org/mock v0.6.0
@@ -85,13 +85,13 @@ require (
8585
github.com/go-playground/universal-translator v0.18.1 // indirect
8686
github.com/go-sql-driver/mysql v1.9.2 // indirect
8787
github.com/go-test/deep v1.1.1 // indirect
88-
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
88+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
8989
github.com/goccy/go-json v0.10.5 // indirect
9090
github.com/goccy/go-yaml v1.19.2 // indirect
9191
github.com/google/uuid v1.6.0 // indirect
9292
github.com/gorilla/css v1.0.1 // indirect
9393
github.com/gorilla/websocket v1.5.3 // indirect
94-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
94+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
9595
github.com/hashicorp/go-version v1.7.0 // indirect
9696
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
9797
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -134,23 +134,24 @@ require (
134134
github.com/toorop/go-dkim v0.0.0-20250226130143-9025cce95817 // indirect
135135
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
136136
github.com/ugorji/go/codec v1.3.1 // indirect
137+
go.mongodb.org/mongo-driver/v2 v2.5.0 // indirect
137138
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
138139
go.opentelemetry.io/contrib v1.36.0 // indirect
139-
go.opentelemetry.io/otel/metric v1.40.0 // indirect
140+
go.opentelemetry.io/otel/metric v1.41.0 // indirect
140141
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
141142
go.uber.org/multierr v1.11.0 // indirect
142143
go.yaml.in/yaml/v2 v2.4.2 // indirect
143-
golang.org/x/arch v0.23.0 // indirect
144-
golang.org/x/crypto v0.47.0 // indirect
145-
golang.org/x/mod v0.31.0 // indirect
146-
golang.org/x/net v0.49.0 // indirect
144+
golang.org/x/arch v0.24.0 // indirect
145+
golang.org/x/crypto v0.48.0 // indirect
146+
golang.org/x/mod v0.33.0 // indirect
147+
golang.org/x/net v0.51.0 // indirect
147148
golang.org/x/sync v0.19.0 // indirect
148-
golang.org/x/sys v0.40.0 // indirect
149-
golang.org/x/text v0.33.0 // indirect
150-
golang.org/x/tools v0.40.0 // indirect
151-
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
152-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
153-
google.golang.org/grpc v1.78.0 // indirect
149+
golang.org/x/sys v0.41.0 // indirect
150+
golang.org/x/text v0.34.0 // indirect
151+
golang.org/x/tools v0.42.0 // indirect
152+
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 // indirect
153+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
154+
google.golang.org/grpc v1.79.1 // indirect
154155
google.golang.org/protobuf v1.36.11 // indirect
155156
gopkg.in/yaml.v3 v3.0.1 // indirect
156157
gorm.io/driver/clickhouse v0.7.0 // indirect

0 commit comments

Comments
 (0)