Skip to content

Commit b79b65e

Browse files
committed
Update dependencies
1 parent 02fc05f commit b79b65e

File tree

8 files changed

+382
-446
lines changed

8 files changed

+382
-446
lines changed

.golangci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ run:
66
tests: true
77
timeout: 15m
88
skip-dirs:
9-
skip-dirs-use-default: true
109

1110
output:
1211
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
@@ -45,6 +44,7 @@ linters-settings:
4544
- github.com/stretchr
4645

4746
issues:
47+
exclude-dirs-use-default: true
4848
exclude-dirs:
4949
- .github
5050
- .githook
@@ -58,15 +58,15 @@ issues:
5858
linters:
5959
enable-all: true
6060
disable:
61-
- depguard # Go linter that checks if package imports are in a list of acceptable packages [fast: true, auto-fix: false]
62-
- exhaustruct # Checks if all structure fields are initialized [fast: false, auto-fix: false]
63-
- err113 # Go linter to check the errors handling expressions [fast: false, auto-fix: false]
64-
- ireturn # Accept Interfaces, Return Concrete Types [fast: false, auto-fix: false]
65-
- lll # Reports long lines [fast: true, auto-fix: false]
66-
- mnd # An analyzer to detect magic numbers. [fast: true, auto-fix: false]
67-
- musttag # enforce field tags in (un)marshaled structs [fast: false, auto-fix: false]
68-
- nlreturn # nlreturn checks for a new line before return and branch statements to increase code clarity [fast: true, auto-fix: false]
69-
- tagliatelle # Checks the struct tags. [fast: true, auto-fix: false]
70-
- testpackage # linter that makes you use a separate _test package [fast: true, auto-fix: false]
71-
- varnamelen # checks that the length of a variable's name matches its scope [fast: false, auto-fix: false]
61+
- depguard # Go linter that checks if package imports are in a list of acceptable packages [fast: true, auto-fix: false]
62+
- exhaustruct # Checks if all structure fields are initialized [fast: false, auto-fix: false]
63+
- err113 # Go linter to check the errors handling expressions [fast: false, auto-fix: false]
64+
- ireturn # Accept Interfaces, Return Concrete Types [fast: false, auto-fix: false]
65+
- lll # Reports long lines [fast: true, auto-fix: false]
66+
- mnd # An analyzer to detect magic numbers. [fast: true, auto-fix: false]
67+
- musttag # enforce field tags in (un)marshaled structs [fast: false, auto-fix: false]
68+
- nlreturn # nlreturn checks for a new line before return and branch statements to increase code clarity [fast: true, auto-fix: false]
69+
- tagliatelle # Checks the struct tags. [fast: true, auto-fix: false]
70+
- testpackage # linter that makes you use a separate _test package [fast: true, auto-fix: false]
71+
- varnamelen # checks that the length of a variable's name matches its scope [fast: false, auto-fix: false]
7272
- exportloopref # deprecated

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ GOFMT=$(shell which gofmt)
149149
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
150150
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
151151
GOLANGCILINT=$(BINUTIL)/golangci-lint
152-
GOLANGCILINTVERSION=v1.62.2
152+
GOLANGCILINTVERSION=v1.63.4
153153

154154
# Current operating system and architecture as one string.
155155
GOOSARCH=$(shell go env GOOS GOARCH | tr -d \\n)
@@ -623,7 +623,7 @@ schemathesistest:
623623
--request-timeout=2000 \
624624
--hypothesis-max-examples=100 \
625625
--hypothesis-deadline=2000 \
626-
--show-errors-tracebacks \
626+
--show-trace \
627627
--base-url='${API_TEST_URL}' \
628628
${OPENAPI_FILE}
629629

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
![rndpwd logo](doc/images/logo.png)
1111

1212
* **category:** Application
13-
* **copyright:** 2015-2024 tecnickcom
13+
* **copyright:** 2015-2025 tecnickcom
1414
* **license:** [LICENSE](https://github.com/tecnickcom/rndpwd/blob/main/LICENSE)
1515
* **cvs:** https://github.com/tecnickcom/rndpwd
1616

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.3.15
1+
5.3.16

go.mod

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23
55
toolchain go1.23.4
66

77
require (
8-
github.com/Vonage/gosrvlib v1.101.19
8+
github.com/Vonage/gosrvlib v1.101.20
99
github.com/go-playground/validator/v10 v10.23.0
1010
github.com/golang/mock v1.6.0
1111
github.com/jstemmer/go-junit-report/v2 v2.1.0
@@ -18,12 +18,12 @@ require (
1818
)
1919

2020
require (
21-
cloud.google.com/go v0.116.0 // indirect
22-
cloud.google.com/go/auth v0.12.1 // indirect
21+
cloud.google.com/go v0.118.0 // indirect
22+
cloud.google.com/go/auth v0.13.0 // indirect
2323
cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect
24-
cloud.google.com/go/compute/metadata v0.5.2 // indirect
24+
cloud.google.com/go/compute/metadata v0.6.0 // indirect
2525
cloud.google.com/go/firestore v1.17.0 // indirect
26-
cloud.google.com/go/longrunning v0.6.3 // indirect
26+
cloud.google.com/go/longrunning v0.6.4 // indirect
2727
github.com/armon/go-metrics v0.4.1 // indirect
2828
github.com/beorn7/perks v1.0.1 // indirect
2929
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -34,18 +34,17 @@ require (
3434
github.com/fatih/color v1.18.0 // indirect
3535
github.com/felixge/httpsnoop v1.0.4 // indirect
3636
github.com/fsnotify/fsnotify v1.8.0 // indirect
37-
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
37+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
3838
github.com/go-logr/logr v1.4.2 // indirect
3939
github.com/go-logr/stdr v1.2.2 // indirect
4040
github.com/go-playground/locales v0.14.1 // indirect
4141
github.com/go-playground/universal-translator v0.18.1 // indirect
4242
github.com/gogo/protobuf v1.3.2 // indirect
43-
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
4443
github.com/golang/protobuf v1.5.4 // indirect
4544
github.com/google/s2a-go v0.1.8 // indirect
4645
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
47-
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
48-
github.com/hashicorp/consul/api v1.30.0 // indirect
46+
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
47+
github.com/hashicorp/consul/api v1.31.0 // indirect
4948
github.com/hashicorp/errwrap v1.1.0 // indirect
5049
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5150
github.com/hashicorp/go-hclog v1.6.3 // indirect
@@ -69,8 +68,8 @@ require (
6968
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7069
github.com/modern-go/reflect2 v1.0.2 // indirect
7170
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
72-
github.com/nats-io/nats.go v1.37.0 // indirect
73-
github.com/nats-io/nkeys v0.4.8 // indirect
71+
github.com/nats-io/nats.go v1.38.0 // indirect
72+
github.com/nats-io/nkeys v0.4.9 // indirect
7473
github.com/nats-io/nuid v1.0.1 // indirect
7574
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
7675
github.com/pkg/errors v0.9.1 // indirect
@@ -83,36 +82,36 @@ require (
8382
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
8483
github.com/sourcegraph/conc v0.3.0 // indirect
8584
github.com/spf13/afero v1.11.0 // indirect
86-
github.com/spf13/cast v1.7.0 // indirect
85+
github.com/spf13/cast v1.7.1 // indirect
8786
github.com/spf13/pflag v1.0.5 // indirect
8887
github.com/subosito/gotenv v1.6.0 // indirect
8988
go.etcd.io/etcd/api/v3 v3.5.17 // indirect
9089
go.etcd.io/etcd/client/pkg/v3 v3.5.17 // indirect
9190
go.etcd.io/etcd/client/v2 v2.305.17 // indirect
9291
go.etcd.io/etcd/client/v3 v3.5.17 // indirect
93-
go.opencensus.io v0.24.0 // indirect
94-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.57.0 // indirect
95-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
96-
go.opentelemetry.io/otel v1.32.0 // indirect
97-
go.opentelemetry.io/otel/metric v1.32.0 // indirect
98-
go.opentelemetry.io/otel/trace v1.32.0 // indirect
92+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
93+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
94+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
95+
go.opentelemetry.io/otel v1.33.0 // indirect
96+
go.opentelemetry.io/otel/metric v1.33.0 // indirect
97+
go.opentelemetry.io/otel/trace v1.33.0 // indirect
9998
go.uber.org/multierr v1.11.0 // indirect
100-
golang.org/x/crypto v0.31.0 // indirect
101-
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect
99+
golang.org/x/crypto v0.32.0 // indirect
100+
golang.org/x/exp v0.0.0-20250103183323-7d7fa50e5329 // indirect
102101
golang.org/x/mod v0.22.0 // indirect
103-
golang.org/x/net v0.32.0 // indirect
104-
golang.org/x/oauth2 v0.24.0 // indirect
102+
golang.org/x/net v0.34.0 // indirect
103+
golang.org/x/oauth2 v0.25.0 // indirect
105104
golang.org/x/sync v0.10.0 // indirect
106-
golang.org/x/sys v0.28.0 // indirect
105+
golang.org/x/sys v0.29.0 // indirect
107106
golang.org/x/text v0.21.0 // indirect
108-
golang.org/x/time v0.8.0 // indirect
107+
golang.org/x/time v0.9.0 // indirect
109108
golang.org/x/tools v0.28.0 // indirect
110-
google.golang.org/api v0.211.0 // indirect
111-
google.golang.org/genproto v0.0.0-20241209162323-e6fa225c2576 // indirect
112-
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
113-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
114-
google.golang.org/grpc v1.68.1 // indirect
115-
google.golang.org/protobuf v1.35.2 // indirect
109+
google.golang.org/api v0.214.0 // indirect
110+
google.golang.org/genproto v0.0.0-20250106144421-5f5ef82da422 // indirect
111+
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
112+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect
113+
google.golang.org/grpc v1.69.2 // indirect
114+
google.golang.org/protobuf v1.36.1 // indirect
116115
gopkg.in/ini.v1 v1.67.0 // indirect
117116
gopkg.in/yaml.v3 v3.0.1 // indirect
118117
)

0 commit comments

Comments
 (0)