Skip to content

Commit 6fd0cc5

Browse files
sownakdependabot[bot]ankurdotb
authored
chore(deps): version upgrades [DEV-4716] (#323)
* chore(deps): Bump github.com/lestrrat-go/jwx from 1.2.29 to 1.2.30 Bumps [github.com/lestrrat-go/jwx](https://github.com/lestrrat-go/jwx) from 1.2.29 to 1.2.30. - [Release notes](https://github.com/lestrrat-go/jwx/releases) - [Changelog](https://github.com/lestrrat-go/jwx/blob/v1.2.30/Changes) - [Commits](lestrrat-go/jwx@v1.2.29...v1.2.30) --- updated-dependencies: - dependency-name: github.com/lestrrat-go/jwx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): Bump github.com/go-resty/resty/v2 from 2.13.1 to 2.16.2 (#316) * chore(deps): Bump github.com/go-resty/resty/v2 from 2.13.1 to 2.16.2 Bumps [github.com/go-resty/resty/v2](https://github.com/go-resty/resty) from 2.13.1 to 2.16.2. - [Release notes](https://github.com/go-resty/resty/releases) - [Commits](go-resty/resty@v2.13.1...v2.16.2) --- updated-dependencies: - dependency-name: github.com/go-resty/resty/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix: unresolved link in readme Signed-off-by: Sownak Roy <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Sownak Roy <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sownak Roy <[email protected]> Co-authored-by: Sownak Roy <[email protected]> * chore(deps): Bump github.com/rs/zerolog from 1.32.0 to 1.33.0 (#307) Bumps [github.com/rs/zerolog](https://github.com/rs/zerolog) from 1.32.0 to 1.33.0. - [Commits](rs/zerolog@v1.32.0...v1.33.0) --- updated-dependencies: - dependency-name: github.com/rs/zerolog dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sownak Roy <[email protected]> * chore(deps-dev): Bump semantic-release from 24.1.0 to 24.2.0 (#313) Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 24.1.0 to 24.2.0. - [Release notes](https://github.com/semantic-release/semantic-release/releases) - [Commits](semantic-release/semantic-release@v24.1.0...v24.2.0) --- updated-dependencies: - dependency-name: semantic-release dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sownak Roy <[email protected]> * chore: version upgrades Signed-off-by: Sownak Roy <[email protected]> * Updated go version in docker and ci Signed-off-by: Sownak Roy <[email protected]> * fix golint errors Signed-off-by: Sownak Roy <[email protected]> * bump npm * remove deprecated code Signed-off-by: Sownak Roy <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Sownak Roy <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ankur Banerjee <[email protected]>
1 parent d2ef828 commit 6fd0cc5

File tree

7 files changed

+1001
-1390
lines changed

7 files changed

+1001
-1390
lines changed

.github/linters/.golangci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ linters-settings:
4242
- badCall # Remove this after CI workflow PR
4343

4444
gofumpt:
45-
lang-version: "1.21"
45+
lang-version: "1.22"
4646

4747
misspell:
4848
ignore-words:
@@ -52,7 +52,7 @@ linters-settings:
5252

5353
stylecheck:
5454
# Select the Go version to target.
55-
go: "1.21"
55+
go: "1.22"
5656
# STxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
5757
# Default: ["*"]
5858
checks: ["all"]

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
### STAGE 1: Build cheqd did-resolver binary pre-requisites ###
33
#####################################################################
44

5-
FROM golang:1.21-alpine AS builder
5+
FROM golang:1.22-alpine AS builder
66

77
# Install minimum necessary dependencies
88
ENV PACKAGES="make git bash linux-headers findutils"

go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,20 @@ require (
6363
github.com/sourcegraph/conc v0.3.0 // indirect
6464
github.com/spf13/afero v1.11.0 // indirect
6565
github.com/spf13/cast v1.6.0 // indirect
66-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
6766
github.com/spf13/pflag v1.0.5 // indirect
6867
github.com/subosito/gotenv v1.6.0 // indirect
6968
github.com/swaggo/files/v2 v2.0.0 // indirect
7069
github.com/valyala/bytebufferpool v1.0.0 // indirect
7170
github.com/valyala/fasttemplate v1.2.2 // indirect
7271
go.uber.org/atomic v1.9.0 // indirect
7372
go.uber.org/multierr v1.9.0 // indirect
74-
golang.org/x/crypto v0.30.0 // indirect
73+
golang.org/x/crypto v0.31.0 // indirect
7574
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
76-
golang.org/x/net v0.32.0 // indirect
75+
golang.org/x/net v0.33.0 // indirect
7776
golang.org/x/sys v0.28.0 // indirect
7877
golang.org/x/text v0.21.0 // indirect
7978
golang.org/x/time v0.6.0 // indirect
8079
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
81-
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
8280
google.golang.org/genproto/googleapis/api v0.0.0-20241202173237-19429a94021a // indirect
8381
google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect
8482
gopkg.in/ini.v1 v1.67.0 // indirect

go.sum

Lines changed: 21 additions & 623 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)