Skip to content

Commit ff6c755

Browse files
Bump the go_modules group across 1 directory with 5 updates
Bumps the go_modules group with 2 updates in the /apps/api directory: [github.com/gin-contrib/cors](https://github.com/gin-contrib/cors) and [github.com/jackc/pgx/v5](https://github.com/jackc/pgx). Updates `github.com/gin-contrib/cors` from 1.4.0 to 1.6.0 - [Release notes](https://github.com/gin-contrib/cors/releases) - [Changelog](https://github.com/gin-contrib/cors/blob/master/.goreleaser.yaml) - [Commits](gin-contrib/cors@v1.4.0...v1.6.0) Updates `golang.org/x/crypto` from 0.14.0 to 0.21.0 - [Commits](golang/crypto@v0.14.0...v0.21.0) Updates `github.com/jackc/pgx/v5` from 5.3.1 to 5.5.4 - [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md) - [Commits](jackc/pgx@v5.3.1...v5.5.4) Updates `golang.org/x/net` from 0.10.0 to 0.22.0 - [Commits](golang/net@v0.10.0...v0.22.0) Updates `google.golang.org/protobuf` from 1.30.0 to 1.33.0 --- updated-dependencies: - dependency-name: github.com/gin-contrib/cors dependency-version: 1.6.0 dependency-type: direct:production dependency-group: go_modules - dependency-name: golang.org/x/crypto dependency-version: 0.21.0 dependency-type: direct:production dependency-group: go_modules - dependency-name: github.com/jackc/pgx/v5 dependency-version: 5.5.4 dependency-type: indirect dependency-group: go_modules - dependency-name: golang.org/x/net dependency-version: 0.22.0 dependency-type: indirect dependency-group: go_modules - dependency-name: google.golang.org/protobuf dependency-version: 1.33.0 dependency-type: indirect dependency-group: go_modules ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent fa76a47 commit ff6c755

2 files changed

Lines changed: 68 additions & 101 deletions

File tree

apps/api/go.mod

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,50 @@ module codepulse-api
33
go 1.21
44

55
require (
6-
github.com/gin-contrib/cors v1.4.0
6+
github.com/gin-contrib/cors v1.6.0
77
github.com/gin-gonic/gin v1.9.1
88
github.com/golang-jwt/jwt/v5 v5.3.0
99
github.com/joho/godotenv v1.4.0
1010
github.com/redis/go-redis/v9 v9.2.1
11-
golang.org/x/crypto v0.14.0
11+
golang.org/x/crypto v0.21.0
1212
gorm.io/driver/postgres v1.5.2
1313
gorm.io/gorm v1.25.4
1414
)
1515

1616
require (
17-
github.com/bytedance/sonic v1.9.1 // indirect
17+
github.com/bytedance/sonic v1.11.2 // indirect
1818
github.com/cespare/xxhash/v2 v2.2.0 // indirect
19-
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
19+
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
20+
github.com/chenzhuoyu/iasm v0.9.1 // indirect
2021
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
21-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
22+
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
2223
github.com/gin-contrib/sse v0.1.0 // indirect
2324
github.com/go-playground/locales v0.14.1 // indirect
2425
github.com/go-playground/universal-translator v0.18.1 // indirect
25-
github.com/go-playground/validator/v10 v10.14.0 // indirect
26+
github.com/go-playground/validator/v10 v10.19.0 // indirect
2627
github.com/goccy/go-json v0.10.2 // indirect
2728
github.com/google/go-cmp v0.5.9 // indirect
2829
github.com/jackc/pgpassfile v1.0.0 // indirect
2930
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
30-
github.com/jackc/pgx/v5 v5.3.1 // indirect
31+
github.com/jackc/pgx/v5 v5.5.4 // indirect
32+
github.com/jackc/puddle/v2 v2.2.1 // indirect
3133
github.com/jinzhu/inflection v1.0.0 // indirect
3234
github.com/jinzhu/now v1.1.5 // indirect
3335
github.com/json-iterator/go v1.1.12 // indirect
34-
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
35-
github.com/leodido/go-urn v1.2.4 // indirect
36-
github.com/mattn/go-isatty v0.0.19 // indirect
36+
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
37+
github.com/kr/text v0.2.0 // indirect
38+
github.com/leodido/go-urn v1.4.0 // indirect
39+
github.com/mattn/go-isatty v0.0.20 // indirect
3740
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3841
github.com/modern-go/reflect2 v1.0.2 // indirect
39-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
42+
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
4043
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
41-
github.com/ugorji/go/codec v1.2.11 // indirect
42-
golang.org/x/arch v0.3.0 // indirect
43-
golang.org/x/net v0.10.0 // indirect
44-
golang.org/x/sys v0.13.0 // indirect
45-
golang.org/x/text v0.13.0 // indirect
46-
google.golang.org/protobuf v1.30.0 // indirect
44+
github.com/ugorji/go/codec v1.2.12 // indirect
45+
golang.org/x/arch v0.7.0 // indirect
46+
golang.org/x/net v0.22.0 // indirect
47+
golang.org/x/sync v0.1.0 // indirect
48+
golang.org/x/sys v0.18.0 // indirect
49+
golang.org/x/text v0.14.0 // indirect
50+
google.golang.org/protobuf v1.33.0 // indirect
4751
gopkg.in/yaml.v3 v3.0.1 // indirect
4852
)

0 commit comments

Comments
 (0)