Skip to content

Commit 63c5a4a

Browse files
7.50.1 final (#21679)
* Updates for 7.50.1 * Add prelude for 7.50.1 release * prelude updated
1 parent 1bd4ee9 commit 63c5a4a

File tree

19 files changed

+94
-91
lines changed

19 files changed

+94
-91
lines changed

comp/core/telemetry/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
replace github.com/DataDog/datadog-agent/pkg/util/fxutil => ../../../pkg/util/fxutil
66

77
require (
8-
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1-rc.1
8+
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1
99
github.com/prometheus/client_golang v1.17.0
1010
github.com/prometheus/client_model v0.5.0
1111
github.com/stretchr/testify v1.8.4

go.mod

+40-40
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ require (
7272
code.cloudfoundry.org/lager v2.0.0+incompatible
7373
github.com/CycloneDX/cyclonedx-go v0.7.2
7474
github.com/DataDog/appsec-internal-go v1.0.1
75-
github.com/DataDog/datadog-agent/pkg/gohai v0.50.1-rc.1
76-
github.com/DataDog/datadog-agent/pkg/obfuscate v0.50.1-rc.1
77-
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.50.1-rc.1
78-
github.com/DataDog/datadog-agent/pkg/security/secl v0.50.1-rc.1
79-
github.com/DataDog/datadog-agent/pkg/trace v0.50.1-rc.1
80-
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.50.1-rc.1
81-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
82-
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1-rc.1
83-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1
75+
github.com/DataDog/datadog-agent/pkg/gohai v0.50.1
76+
github.com/DataDog/datadog-agent/pkg/obfuscate v0.50.1
77+
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.50.1
78+
github.com/DataDog/datadog-agent/pkg/security/secl v0.50.1
79+
github.com/DataDog/datadog-agent/pkg/trace v0.50.1
80+
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.50.1
81+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
82+
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1
83+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1
8484
github.com/DataDog/datadog-go/v5 v5.3.0
8585
// do not update datadog-operator to 1.2.1 because the indirect dependency github.com/DataDog/datadog-api-client-go/v2 v2.15.0 is trigger a huge Go heap memory increase.
8686
github.com/DataDog/datadog-operator v1.1.0
@@ -583,35 +583,35 @@ require github.com/lorenzosaino/go-sysctl v0.3.1
583583
require (
584584
github.com/DATA-DOG/go-sqlmock v1.5.0
585585
github.com/DataDog/agent-payload/v5 v5.0.100
586-
github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1-rc.1
587-
github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.50.1-rc.1
588-
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.50.1-rc.1
589-
github.com/DataDog/datadog-agent/pkg/config/env v0.50.1-rc.1
590-
github.com/DataDog/datadog-agent/pkg/config/logs v0.50.1-rc.1
591-
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1-rc.1
592-
github.com/DataDog/datadog-agent/pkg/errors v0.50.1-rc.1
593-
github.com/DataDog/datadog-agent/pkg/metrics v0.50.1-rc.1
594-
github.com/DataDog/datadog-agent/pkg/networkdevice/profile v0.50.1-rc.1
595-
github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.50.1-rc.1
596-
github.com/DataDog/datadog-agent/pkg/process/util/api v0.50.1-rc.1
597-
github.com/DataDog/datadog-agent/pkg/proto v0.50.1-rc.1
598-
github.com/DataDog/datadog-agent/pkg/status/health v0.50.1-rc.1
599-
github.com/DataDog/datadog-agent/pkg/tagset v0.50.1-rc.1
600-
github.com/DataDog/datadog-agent/pkg/telemetry v0.50.1-rc.1
601-
github.com/DataDog/datadog-agent/pkg/util/backoff v0.50.1-rc.1
602-
github.com/DataDog/datadog-agent/pkg/util/cache v0.50.1-rc.1
603-
github.com/DataDog/datadog-agent/pkg/util/common v0.50.1-rc.1
604-
github.com/DataDog/datadog-agent/pkg/util/compression v0.50.1-rc.1
605-
github.com/DataDog/datadog-agent/pkg/util/executable v0.50.1-rc.1
606-
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.50.1-rc.1
607-
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1-rc.1
608-
github.com/DataDog/datadog-agent/pkg/util/http v0.50.1-rc.1
609-
github.com/DataDog/datadog-agent/pkg/util/json v0.50.1-rc.1
610-
github.com/DataDog/datadog-agent/pkg/util/optional v0.50.1-rc.1
611-
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1-rc.1
612-
github.com/DataDog/datadog-agent/pkg/util/statstracker v0.50.1-rc.1
613-
github.com/DataDog/datadog-agent/pkg/util/testutil v0.50.1-rc.1
614-
github.com/DataDog/datadog-agent/pkg/version v0.50.1-rc.1
586+
github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1
587+
github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.50.1
588+
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.50.1
589+
github.com/DataDog/datadog-agent/pkg/config/env v0.50.1
590+
github.com/DataDog/datadog-agent/pkg/config/logs v0.50.1
591+
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1
592+
github.com/DataDog/datadog-agent/pkg/errors v0.50.1
593+
github.com/DataDog/datadog-agent/pkg/metrics v0.50.1
594+
github.com/DataDog/datadog-agent/pkg/networkdevice/profile v0.50.1
595+
github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.50.1
596+
github.com/DataDog/datadog-agent/pkg/process/util/api v0.50.1
597+
github.com/DataDog/datadog-agent/pkg/proto v0.50.1
598+
github.com/DataDog/datadog-agent/pkg/status/health v0.50.1
599+
github.com/DataDog/datadog-agent/pkg/tagset v0.50.1
600+
github.com/DataDog/datadog-agent/pkg/telemetry v0.50.1
601+
github.com/DataDog/datadog-agent/pkg/util/backoff v0.50.1
602+
github.com/DataDog/datadog-agent/pkg/util/cache v0.50.1
603+
github.com/DataDog/datadog-agent/pkg/util/common v0.50.1
604+
github.com/DataDog/datadog-agent/pkg/util/compression v0.50.1
605+
github.com/DataDog/datadog-agent/pkg/util/executable v0.50.1
606+
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.50.1
607+
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1
608+
github.com/DataDog/datadog-agent/pkg/util/http v0.50.1
609+
github.com/DataDog/datadog-agent/pkg/util/json v0.50.1
610+
github.com/DataDog/datadog-agent/pkg/util/optional v0.50.1
611+
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1
612+
github.com/DataDog/datadog-agent/pkg/util/statstracker v0.50.1
613+
github.com/DataDog/datadog-agent/pkg/util/testutil v0.50.1
614+
github.com/DataDog/datadog-agent/pkg/version v0.50.1
615615
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs v0.8.0
616616
github.com/aquasecurity/trivy v0.0.0-00010101000000-000000000000
617617
github.com/aws/aws-sdk-go-v2/service/kms v1.22.2
@@ -634,8 +634,8 @@ require (
634634
require (
635635
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
636636
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
637-
github.com/DataDog/datadog-agent/pkg/util/buf v0.50.1-rc.1 // indirect
638-
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.50.1-rc.1 // indirect
637+
github.com/DataDog/datadog-agent/pkg/util/buf v0.50.1 // indirect
638+
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.50.1 // indirect
639639
github.com/DataDog/datadog-api-client-go/v2 v2.13.0 // indirect
640640
github.com/DataDog/go-sqllexer v0.0.8 // indirect
641641
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect

pkg/aggregator/ckey/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ replace (
88
)
99

1010
require (
11-
github.com/DataDog/datadog-agent/pkg/tagset v0.50.1-rc.1
12-
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1-rc.1
11+
github.com/DataDog/datadog-agent/pkg/tagset v0.50.1
12+
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1
1313
github.com/stretchr/testify v1.8.4
1414
github.com/twmb/murmur3 v1.1.8
1515
)

pkg/config/env/go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ replace (
1111
)
1212

1313
require (
14-
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1-rc.1
15-
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.50.1-rc.1
16-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
17-
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.50.1-rc.1
14+
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1
15+
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.50.1
16+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
17+
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.50.1
1818
github.com/stretchr/testify v1.8.4
1919
)
2020

2121
require (
22-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
22+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
2323
github.com/DataDog/viper v1.12.0 // indirect
2424
github.com/Microsoft/go-winio v0.6.1 // indirect
2525
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect

pkg/config/logs/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ replace (
1010
)
1111

1212
require (
13-
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1-rc.1
14-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
15-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1
13+
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1
14+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
15+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1
1616
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
1717
github.com/stretchr/testify v1.8.4
1818
)

pkg/config/model/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ replace (
99
)
1010

1111
require (
12-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
12+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
1313
github.com/DataDog/viper v1.12.0
1414
github.com/spf13/afero v1.1.2
1515
github.com/spf13/pflag v1.0.3
1616
github.com/stretchr/testify v1.8.1
1717
)
1818

1919
require (
20-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
20+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
2121
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
2222
github.com/davecgh/go-spew v1.1.1 // indirect
2323
github.com/fsnotify/fsnotify v1.4.7 // indirect

pkg/gohai/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module github.com/DataDog/datadog-agent/pkg/gohai
55
go 1.20
66

77
require (
8-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
8+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
99
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
1010
github.com/moby/sys/mountinfo v0.7.1
1111
github.com/shirou/gopsutil/v3 v3.23.10
@@ -14,7 +14,7 @@ require (
1414
)
1515

1616
require (
17-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
17+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
1818
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1919
github.com/go-ole/go-ole v1.2.6 // indirect
2020
github.com/kr/pretty v0.3.1 // indirect

pkg/metrics/go.mod

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ replace (
1818
)
1919

2020
require (
21-
github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.50.1-rc.1
22-
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1-rc.1
23-
github.com/DataDog/datadog-agent/pkg/tagset v0.50.1-rc.1
24-
github.com/DataDog/datadog-agent/pkg/telemetry v0.50.1-rc.1
25-
github.com/DataDog/datadog-agent/pkg/util/buf v0.50.1-rc.1
26-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
21+
github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.50.1
22+
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1
23+
github.com/DataDog/datadog-agent/pkg/tagset v0.50.1
24+
github.com/DataDog/datadog-agent/pkg/telemetry v0.50.1
25+
github.com/DataDog/datadog-agent/pkg/util/buf v0.50.1
26+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
2727
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.8.0
2828
github.com/stretchr/testify v1.8.4
2929
go.uber.org/atomic v1.7.0
3030
)
3131

3232
require (
33-
github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1-rc.1 // indirect
34-
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1-rc.1 // indirect
35-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
36-
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1-rc.1 // indirect
33+
github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1 // indirect
34+
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1 // indirect
35+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
36+
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1 // indirect
3737
github.com/DataDog/sketches-go v1.4.2 // indirect
3838
github.com/DataDog/viper v1.12.0 // indirect
3939
github.com/beorn7/perks v1.0.1 // indirect

pkg/orchestrator/model/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ replace (
88
)
99

1010
require (
11-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
11+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
1212
github.com/patrickmn/go-cache v2.1.0+incompatible
1313
)
1414

1515
require (
16-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
16+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
1717
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
1818
gopkg.in/yaml.v2 v2.4.0 // indirect
1919
)

pkg/process/util/api/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ replace (
1010

1111
require (
1212
github.com/DataDog/agent-payload/v5 v5.0.97
13-
github.com/DataDog/datadog-agent/pkg/telemetry v0.50.1-rc.1
13+
github.com/DataDog/datadog-agent/pkg/telemetry v0.50.1
1414
github.com/gogo/protobuf v1.3.2
1515
github.com/stretchr/testify v1.8.4
1616
)
1717

1818
require (
19-
github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1-rc.1 // indirect
20-
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1-rc.1 // indirect
19+
github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1 // indirect
20+
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1 // indirect
2121
github.com/DataDog/mmh3 v0.0.0-20200805151601-30884ca2197a // indirect
2222
github.com/DataDog/zstd v1.4.8 // indirect
2323
github.com/DataDog/zstd_0 v0.0.0-20210310093942-586c1286621f // indirect

pkg/tagset/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
replace github.com/DataDog/datadog-agent/pkg/util/sort => ../util/sort/
66

77
require (
8-
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1-rc.1
8+
github.com/DataDog/datadog-agent/pkg/util/sort v0.50.1
99
github.com/stretchr/testify v1.8.4
1010
github.com/twmb/murmur3 v1.1.8
1111
)

pkg/telemetry/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ replace (
77
github.com/DataDog/datadog-agent/pkg/util/fxutil => ../util/fxutil
88
)
99

10-
require github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1-rc.1
10+
require github.com/DataDog/datadog-agent/comp/core/telemetry v0.50.1
1111

1212
require (
13-
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1-rc.1 // indirect
13+
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.50.1 // indirect
1414
github.com/beorn7/perks v1.0.1 // indirect
1515
github.com/cespare/xxhash/v2 v2.2.0 // indirect
1616
github.com/davecgh/go-spew v1.1.1 // indirect

pkg/trace/go.mod

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ go 1.20
1010
replace github.com/docker/distribution => github.com/docker/distribution v2.8.1+incompatible
1111

1212
require (
13-
github.com/DataDog/datadog-agent/pkg/obfuscate v0.50.1-rc.1
14-
github.com/DataDog/datadog-agent/pkg/proto v0.50.1-rc.1
15-
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.50.1-rc.1
16-
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.50.1-rc.1
17-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
18-
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1-rc.1
19-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1
13+
github.com/DataDog/datadog-agent/pkg/obfuscate v0.50.1
14+
github.com/DataDog/datadog-agent/pkg/proto v0.50.1
15+
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.50.1
16+
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.50.1
17+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
18+
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1
19+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1
2020
github.com/DataDog/datadog-go/v5 v5.1.1
2121
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.1
2222
github.com/DataDog/sketches-go v1.4.2

pkg/util/cgroups/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ replace (
99
)
1010

1111
require (
12-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
13-
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1-rc.1
12+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
13+
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1
1414
github.com/containerd/cgroups/v3 v3.0.2
1515
github.com/google/go-cmp v0.5.8
1616
github.com/karrick/godirwalk v1.17.0
1717
github.com/stretchr/testify v1.8.1
1818
)
1919

2020
require (
21-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
21+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
2222
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
2323
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
2424
github.com/davecgh/go-spew v1.1.1 // indirect

pkg/util/filesystem/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ replace (
99
)
1010

1111
require (
12-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
12+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
1313
github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95
1414
github.com/shirou/gopsutil/v3 v3.23.9
1515
github.com/stretchr/testify v1.8.4
1616
golang.org/x/sys v0.12.0
1717
)
1818

1919
require (
20-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
20+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
2121
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
2222
github.com/davecgh/go-spew v1.1.1 // indirect
2323
github.com/go-ole/go-ole v1.2.6 // indirect

pkg/util/http/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ replace (
1010
)
1111

1212
require (
13-
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1-rc.1
14-
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1-rc.1
13+
github.com/DataDog/datadog-agent/pkg/config/model v0.50.1
14+
github.com/DataDog/datadog-agent/pkg/util/log v0.50.1
1515
github.com/stretchr/testify v1.8.4
1616
golang.org/x/net v0.15.0
1717
)
1818

1919
require (
20-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1 // indirect
20+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1 // indirect
2121
github.com/DataDog/viper v1.12.0 // indirect
2222
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
2323
github.com/davecgh/go-spew v1.1.1 // indirect

pkg/util/log/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
replace github.com/DataDog/datadog-agent/pkg/util/scrubber => ../scrubber
66

77
require (
8-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1-rc.1
8+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.50.1
99
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
1010
github.com/stretchr/testify v1.8.1
1111
go.uber.org/zap v1.22.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
prelude:
2+
|
3+
Release on: 2023-12-20

test/new-e2e/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ replace (
1313

1414
require (
1515
github.com/DataDog/agent-payload/v5 v5.0.73
16-
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1-rc.1
17-
github.com/DataDog/datadog-agent/test/fakeintake v0.50.1-rc.1
16+
github.com/DataDog/datadog-agent/pkg/util/pointer v0.50.1
17+
github.com/DataDog/datadog-agent/test/fakeintake v0.50.1
1818
github.com/DataDog/datadog-api-client-go v1.16.0
1919
github.com/DataDog/datadog-api-client-go/v2 v2.15.0
2020
// Are you bumping github.com/DataDog/test-infra-definitions ?

0 commit comments

Comments
 (0)