Skip to content

Commit 6dff7a9

Browse files
committed
update deps
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent ef6c19a commit 6dff7a9

File tree

4 files changed

+132
-172
lines changed

4 files changed

+132
-172
lines changed

common.logger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func initLogger() *zap.SugaredLogger {
4545
}
4646

4747
logger = log.Sugar()
48-
slogger = slog.New(zapslog.NewHandler(log.Core(), nil))
48+
slogger = slog.New(zapslog.NewHandler(log.Core()))
4949

5050
return logger
5151
}

go.mod

Lines changed: 39 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -12,91 +12,84 @@ require (
1212
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armfeatures v1.2.0
1313
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0
1414
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armsubscriptions v1.3.0
15-
github.com/Azure/go-autorest/autorest v0.11.29
16-
github.com/Azure/go-autorest/autorest/to v0.4.0
17-
github.com/KimMachineGun/automemlimit v0.6.1
18-
github.com/Masterminds/sprig/v3 v3.2.3
15+
github.com/Azure/go-autorest/autorest v0.11.30
16+
github.com/Azure/go-autorest/autorest/to v0.4.1
17+
github.com/KimMachineGun/automemlimit v0.7.0
18+
github.com/Masterminds/sprig/v3 v3.3.0
1919
github.com/dustin/go-humanize v1.0.1
2020
github.com/gofrs/uuid v4.4.0+incompatible
2121
github.com/google/uuid v1.6.0
2222
github.com/jeremywohl/flatten/v2 v2.0.0-20211013061545-07e4a09fb8e4
2323
github.com/jessevdk/go-flags v1.6.1
2424
github.com/patrickmn/go-cache v2.1.0+incompatible
25-
github.com/prometheus/client_golang v1.20.1
26-
github.com/robertkrimen/otto v0.4.0
25+
github.com/prometheus/client_golang v1.20.5
26+
github.com/robertkrimen/otto v0.5.1
2727
github.com/robfig/cron/v3 v3.0.1
28-
github.com/webdevops/go-common v0.0.0-20240821190643-248b039cf4c0
28+
github.com/webdevops/go-common v0.0.0-20250202124351-b61548f2447b
2929
go.uber.org/zap v1.27.0
30-
go.uber.org/zap/exp v0.2.0
30+
go.uber.org/zap/exp v0.3.0
3131
gopkg.in/yaml.v3 v3.0.1
3232
)
3333

3434
require (
35-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect
36-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect
35+
dario.cat/mergo v1.0.1 // indirect
36+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0 // indirect
37+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.1 // indirect
3738
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
3839
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
3940
github.com/Azure/go-autorest/autorest/adal v0.9.24 // indirect
40-
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
41-
github.com/Azure/go-autorest/logger v0.2.1 // indirect
42-
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
43-
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
41+
github.com/Azure/go-autorest/autorest/date v0.3.1 // indirect
42+
github.com/Azure/go-autorest/logger v0.2.2 // indirect
43+
github.com/Azure/go-autorest/tracing v0.6.1 // indirect
44+
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.3 // indirect
4445
github.com/Masterminds/goutils v1.1.1 // indirect
45-
github.com/Masterminds/semver/v3 v3.2.1 // indirect
46+
github.com/Masterminds/semver/v3 v3.3.1 // indirect
4647
github.com/beorn7/perks v1.0.1 // indirect
4748
github.com/cespare/xxhash/v2 v2.3.0 // indirect
48-
github.com/cilium/ebpf v0.16.0 // indirect
49-
github.com/cjlapao/common-go v0.0.40 // indirect
50-
github.com/containerd/cgroups/v3 v3.0.3 // indirect
51-
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
49+
github.com/cjlapao/common-go v0.0.41 // indirect
5250
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
53-
github.com/docker/go-units v0.5.0 // indirect
5451
github.com/go-logr/logr v1.4.2 // indirect
5552
github.com/go-logr/stdr v1.2.2 // indirect
56-
github.com/godbus/dbus/v5 v5.1.0 // indirect
57-
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
53+
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
5854
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
5955
github.com/huandu/xstrings v1.5.0 // indirect
60-
github.com/imdario/mergo v0.3.16 // indirect
61-
github.com/klauspost/compress v1.17.9 // indirect
56+
github.com/klauspost/compress v1.17.11 // indirect
6257
github.com/kylelemons/godebug v1.1.0 // indirect
63-
github.com/microsoft/kiota-abstractions-go v1.6.1 // indirect
58+
github.com/microsoft/kiota-abstractions-go v1.8.1 // indirect
6459
github.com/microsoft/kiota-authentication-azure-go v1.1.0 // indirect
65-
github.com/microsoft/kiota-http-go v1.4.4 // indirect
60+
github.com/microsoft/kiota-http-go v1.4.7 // indirect
6661
github.com/microsoft/kiota-serialization-form-go v1.0.0 // indirect
67-
github.com/microsoft/kiota-serialization-json-go v1.0.8 // indirect
62+
github.com/microsoft/kiota-serialization-json-go v1.0.9 // indirect
6863
github.com/microsoft/kiota-serialization-multipart-go v1.0.0 // indirect
6964
github.com/microsoft/kiota-serialization-text-go v1.0.0 // indirect
70-
github.com/microsoftgraph/msgraph-sdk-go v1.47.0 // indirect
71-
github.com/microsoftgraph/msgraph-sdk-go-core v1.2.0 // indirect
65+
github.com/microsoftgraph/msgraph-sdk-go v1.60.0 // indirect
66+
github.com/microsoftgraph/msgraph-sdk-go-core v1.2.1 // indirect
7267
github.com/mitchellh/copystructure v1.2.0 // indirect
7368
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7469
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
75-
github.com/opencontainers/runtime-spec v1.2.0 // indirect
7670
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
7771
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
7872
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7973
github.com/prometheus/client_model v0.6.1 // indirect
80-
github.com/prometheus/common v0.55.0 // indirect
74+
github.com/prometheus/common v0.62.0 // indirect
8175
github.com/prometheus/procfs v0.15.1 // indirect
8276
github.com/remeh/sizedwaitgroup v1.0.0 // indirect
8377
github.com/shopspring/decimal v1.4.0 // indirect
84-
github.com/sirupsen/logrus v1.9.3 // indirect
85-
github.com/spf13/cast v1.7.0 // indirect
86-
github.com/std-uritemplate/std-uritemplate/go v1.0.5 // indirect
87-
github.com/stretchr/testify v1.9.0 // indirect
88-
go.opentelemetry.io/otel v1.28.0 // indirect
89-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
90-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
78+
github.com/spf13/cast v1.7.1 // indirect
79+
github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.3 // indirect
80+
github.com/stretchr/testify v1.10.0 // indirect
81+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
82+
go.opentelemetry.io/otel v1.34.0 // indirect
83+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
84+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
9185
go.uber.org/multierr v1.11.0 // indirect
92-
golang.org/x/crypto v0.26.0 // indirect
93-
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
94-
golang.org/x/net v0.28.0 // indirect
95-
golang.org/x/sys v0.24.0 // indirect
96-
golang.org/x/text v0.17.0 // indirect
97-
google.golang.org/protobuf v1.34.2 // indirect
86+
golang.org/x/crypto v0.33.0 // indirect
87+
golang.org/x/net v0.34.0 // indirect
88+
golang.org/x/sys v0.30.0 // indirect
89+
golang.org/x/text v0.22.0 // indirect
90+
google.golang.org/protobuf v1.36.5 // indirect
9891
gopkg.in/sourcemap.v1 v1.0.5 // indirect
99-
k8s.io/apimachinery v0.31.0 // indirect
92+
k8s.io/apimachinery v0.32.1 // indirect
10093
k8s.io/klog/v2 v2.130.1 // indirect
101-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
94+
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
10295
)

0 commit comments

Comments
 (0)