Skip to content

Commit be24862

Browse files
fix(deps): update module github.com/imdario/mergo to v1 (#15035)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Paul Rogers <paul.rogers@grafana.com>
1 parent 9decb65 commit be24862

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

‎clients/pkg/promtail/targets/serverutils/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package serverutils
33
import (
44
"flag"
55

6+
"dario.cat/mergo"
67
"github.com/grafana/dskit/server"
7-
"github.com/imdario/mergo"
88
)
99

1010
// MergeWithDefaults applies server.Config defaults to a given and different server.Config.

‎go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ require (
88
cloud.google.com/go/bigtable v1.33.0
99
cloud.google.com/go/pubsub v1.45.1
1010
cloud.google.com/go/storage v1.47.0
11+
dario.cat/mergo v1.0.1
1112
github.com/Azure/azure-pipeline-go v0.2.3
1213
github.com/Azure/azure-storage-blob-go v0.15.0
1314
github.com/Azure/go-autorest/autorest/adal v0.9.24
@@ -59,7 +60,6 @@ require (
5960
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645
6061
github.com/hashicorp/consul/api v1.30.0
6162
github.com/hashicorp/golang-lru/v2 v2.0.7
62-
github.com/imdario/mergo v0.3.16
6363
github.com/influxdata/telegraf v1.16.3
6464
github.com/jmespath/go-jmespath v0.4.0
6565
github.com/joncrlsn/dque v0.0.0-20211108142734-c2ef48c5192a
@@ -159,7 +159,6 @@ require (
159159
cloud.google.com/go/auth v0.10.2 // indirect
160160
cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect
161161
cloud.google.com/go/monitoring v1.21.2 // indirect
162-
dario.cat/mergo v1.0.1 // indirect
163162
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
164163
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect
165164
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
@@ -173,6 +172,7 @@ require (
173172
github.com/goccy/go-json v0.10.3 // indirect
174173
github.com/gorilla/handlers v1.5.2 // indirect
175174
github.com/hashicorp/golang-lru v0.6.0 // indirect
175+
github.com/imdario/mergo v0.3.16 // indirect
176176
github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c // indirect
177177
github.com/moby/docker-image-spec v1.3.1 // indirect
178178
github.com/moby/sys/userns v0.1.0 // indirect

‎integration/util/merger.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package util
33
import (
44
"fmt"
55

6-
"github.com/imdario/mergo"
6+
"dario.cat/mergo"
77
"gopkg.in/yaml.v2"
88
)
99

‎pkg/ruler/registry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"sync"
99
"time"
1010

11+
"dario.cat/mergo"
1112
"github.com/go-kit/log"
1213
"github.com/go-kit/log/level"
1314
"github.com/grafana/dskit/user"
14-
"github.com/imdario/mergo"
1515
"github.com/pkg/errors"
1616
"github.com/prometheus/client_golang/prometheus"
1717
promConfig "github.com/prometheus/common/config"

0 commit comments

Comments
 (0)