Skip to content

Commit 0484ff1

Browse files
Merge pull request #98 from glocurrency/update-deps
feat: update deps
2 parents 5dc5f83 + 1ab57d3 commit 0484ff1

File tree

6 files changed

+87
-75
lines changed

6 files changed

+87
-75
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "commons",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/go:1.23",
6+
"image": "mcr.microsoft.com/devcontainers/go:1.24",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
"features": {
@@ -12,7 +12,7 @@
1212
"version": "2025.1.1"
1313
},
1414
"ghcr.io/brokeyourbike/devcontainer-features/mockery-go:0": {
15-
"version": "2.42.0"
15+
"version": "2.53.3"
1616
}
1717
},
1818

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
go-version-file: 'go.mod'
1717
- uses: brokeyourbike/go-mockery-action@v0.1
1818
with:
19-
mockery-version: '2.42.0'
19+
mockery-version: '2.53.3'
2020
- run: make mock
2121
- run: go test -race -covermode=atomic -coverprofile=coverage.out -v ./...
2222

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
go-version-file: 'go.mod'
2828
- uses: brokeyourbike/go-mockery-action@v0.1
2929
with:
30-
mockery-version: '2.42.0'
30+
mockery-version: '2.53.3'
3131
- run: make mock
3232
- uses: dominikh/staticcheck-action@v1
3333
with:
@@ -46,6 +46,6 @@ jobs:
4646
go-version-file: 'go.mod'
4747
- uses: brokeyourbike/go-mockery-action@v0.1
4848
with:
49-
mockery-version: '2.42.0'
49+
mockery-version: '2.53.3'
5050
- run: make mock
5151
- run: make test

go.mod

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
module github.com/glocurrency/commons
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.4
5+
toolchain go1.24.6
66

77
require (
88
cloud.google.com/go/cloudtasks v1.13.6
99
cloud.google.com/go/pubsub v1.49.0
1010
cloud.google.com/go/storage v1.54.0
1111
github.com/Rhymond/go-money v1.0.15
1212
github.com/brokeyourbike/gin-firebase-middleware v0.4.1
13-
github.com/gabriel-vasile/mimetype v1.4.9
14-
github.com/getsentry/sentry-go v0.33.0
15-
github.com/getsentry/sentry-go/gin v0.33.0
13+
github.com/gabriel-vasile/mimetype v1.4.11
14+
github.com/getsentry/sentry-go v0.36.2
15+
github.com/getsentry/sentry-go/gin v0.36.2
1616
github.com/gin-contrib/cors v1.7.5
17-
github.com/gin-gonic/gin v1.10.1
17+
github.com/gin-gonic/gin v1.11.0
1818
github.com/go-playground/locales v0.14.1
1919
github.com/go-playground/universal-translator v0.18.1
20-
github.com/go-playground/validator/v10 v10.26.0
20+
github.com/go-playground/validator/v10 v10.28.0
2121
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
2222
github.com/google/uuid v1.6.0
2323
github.com/sirupsen/logrus v1.9.3
2424
github.com/spf13/viper v1.20.1
25-
github.com/stretchr/testify v1.10.0
25+
github.com/stretchr/testify v1.11.1
2626
google.golang.org/api v0.233.0
27-
google.golang.org/protobuf v1.36.6
27+
google.golang.org/protobuf v1.36.10
2828
gorm.io/driver/mysql v1.5.7
2929
gorm.io/gorm v1.26.1
3030
)
@@ -41,10 +41,11 @@ require (
4141
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
4242
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
4343
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
44-
github.com/bytedance/sonic v1.13.2 // indirect
45-
github.com/bytedance/sonic/loader v0.2.4 // indirect
44+
github.com/bytedance/gopkg v0.1.3 // indirect
45+
github.com/bytedance/sonic v1.14.2 // indirect
46+
github.com/bytedance/sonic/loader v0.4.0 // indirect
4647
github.com/cespare/xxhash/v2 v2.3.0 // indirect
47-
github.com/cloudwego/base64x v0.1.5 // indirect
48+
github.com/cloudwego/base64x v0.1.6 // indirect
4849
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
4950
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5051
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
@@ -58,21 +59,24 @@ require (
5859
github.com/go-sql-driver/mysql v1.9.2 // indirect
5960
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
6061
github.com/goccy/go-json v0.10.5 // indirect
62+
github.com/goccy/go-yaml v1.18.0 // indirect
6163
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
6264
github.com/google/s2a-go v0.1.9 // indirect
6365
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
6466
github.com/googleapis/gax-go/v2 v2.14.2 // indirect
6567
github.com/jinzhu/inflection v1.0.0 // indirect
6668
github.com/jinzhu/now v1.1.5 // indirect
6769
github.com/json-iterator/go v1.1.12 // indirect
68-
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
70+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
6971
github.com/leodido/go-urn v1.4.0 // indirect
7072
github.com/mattn/go-isatty v0.0.20 // indirect
7173
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7274
github.com/modern-go/reflect2 v1.0.2 // indirect
7375
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
7476
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
7577
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
78+
github.com/quic-go/qpack v0.5.1 // indirect
79+
github.com/quic-go/quic-go v0.56.0 // indirect
7680
github.com/sagikazarmark/locafero v0.9.0 // indirect
7781
github.com/sourcegraph/conc v0.3.0 // indirect
7882
github.com/spf13/afero v1.14.0 // indirect
@@ -82,7 +86,7 @@ require (
8286
github.com/stretchr/objx v0.5.2 // indirect
8387
github.com/subosito/gotenv v1.6.0 // indirect
8488
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
85-
github.com/ugorji/go/codec v1.2.12 // indirect
89+
github.com/ugorji/go/codec v1.3.1 // indirect
8690
github.com/zeebo/errs v1.4.0 // indirect
8791
go.opencensus.io v0.24.0 // indirect
8892
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
@@ -94,15 +98,16 @@ require (
9498
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
9599
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
96100
go.opentelemetry.io/otel/trace v1.35.0 // indirect
101+
go.uber.org/mock v0.6.0 // indirect
97102
go.uber.org/multierr v1.11.0 // indirect
98-
golang.org/x/arch v0.17.0 // indirect
99-
golang.org/x/crypto v0.38.0 // indirect
100-
golang.org/x/net v0.40.0 // indirect
103+
golang.org/x/arch v0.23.0 // indirect
104+
golang.org/x/crypto v0.43.0 // indirect
105+
golang.org/x/net v0.46.0 // indirect
101106
golang.org/x/oauth2 v0.30.0 // indirect
102-
golang.org/x/sync v0.14.0 // indirect
103-
golang.org/x/sys v0.33.0 // indirect
104-
golang.org/x/text v0.25.0 // indirect
105-
golang.org/x/time v0.11.0 // indirect
107+
golang.org/x/sync v0.18.0 // indirect
108+
golang.org/x/sys v0.38.0 // indirect
109+
golang.org/x/text v0.30.0 // indirect
110+
golang.org/x/time v0.12.0 // indirect
106111
google.golang.org/genproto v0.0.0-20250519155744-55703ea1f237 // indirect
107112
google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect
108113
google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect

0 commit comments

Comments
 (0)