Skip to content

Commit

Permalink
Update release.json and Go modules for 6/7.46.0-rc.2 (#17452)
Browse files Browse the repository at this point in the history
  • Loading branch information
kacper-murzyn authored Jun 4, 2023
1 parent 2ecf2ae commit 0c98c9c
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 26 deletions.
20 changes: 10 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ require (
github.com/CycloneDX/cyclonedx-go v0.7.1
github.com/DataDog/agent-payload/v5 v5.0.85
github.com/DataDog/appsec-internal-go v0.0.0-20230215162203-5149228be86a
github.com/DataDog/datadog-agent/pkg/gohai v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/obfuscate v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/security/secl v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/trace v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/log v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/pointer v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/gohai v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/obfuscate v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/security/secl v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/trace v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/log v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/pointer v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.2
github.com/DataDog/datadog-go/v5 v5.1.1
github.com/DataDog/datadog-operator v1.0.3
github.com/DataDog/ebpf-manager v0.2.8-0.20230331131947-0cbd4db2728c
Expand Down Expand Up @@ -566,7 +566,7 @@ require (
)

require (
github.com/DataDog/datadog-agent/pkg/proto v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/proto v0.46.0-rc.2
github.com/aquasecurity/trivy v0.0.0-00010101000000-000000000000
github.com/cloudfoundry-community/go-cfclient/v2 v2.0.1-0.20230503155151-3d15366c5820
github.com/godror/godror v0.37.0
Expand Down
12 changes: 6 additions & 6 deletions pkg/trace/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ go 1.18
replace github.com/docker/distribution => github.com/docker/distribution v2.8.1+incompatible

require (
github.com/DataDog/datadog-agent/pkg/obfuscate v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/log v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/pointer v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/obfuscate v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/log v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/pointer v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.2
github.com/DataDog/datadog-go/v5 v5.1.1
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.2.3
github.com/DataDog/sketches-go v1.4.2
Expand Down
6 changes: 3 additions & 3 deletions pkg/util/cgroups/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ replace (
)

require (
github.com/DataDog/datadog-agent/pkg/util/log v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/pointer v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/log v0.46.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/pointer v0.46.0-rc.2
github.com/containerd/cgroups v1.0.4
github.com/google/go-cmp v0.5.8
github.com/karrick/godirwalk v1.17.0
github.com/stretchr/testify v1.8.1
)

require (
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.2 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/log/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
replace github.com/DataDog/datadog-agent/pkg/util/scrubber => ../scrubber

require (
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.46.0-rc.2
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
github.com/stretchr/testify v1.8.1
go.uber.org/zap v1.22.0
Expand Down
10 changes: 5 additions & 5 deletions release.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"SECURITY_AGENT_POLICIES_VERSION": "master"
},
"release-a6": {
"INTEGRATIONS_CORE_VERSION": "7.46.0-rc.1",
"OMNIBUS_SOFTWARE_VERSION": "7.46.0-rc.1",
"INTEGRATIONS_CORE_VERSION": "7.46.0-rc.2",
"OMNIBUS_SOFTWARE_VERSION": "7.46.0-rc.2",
"OMNIBUS_RUBY_VERSION": "7.46.0-rc.1",
"JMXFETCH_VERSION": "0.47.9",
"JMXFETCH_HASH": "fb5c3fc2fb42db1ee5c3a7c6187b316d79d69c50b967db0b7ffde590622d0395",
Expand All @@ -41,8 +41,8 @@
"WINDOWS_DDNPM_SHASUM": "f12af44306eac3ea15828fd12c24d44ae519692a94a0f1f5d4fa868c3e596b07"
},
"release-a7": {
"INTEGRATIONS_CORE_VERSION": "7.46.0-rc.1",
"OMNIBUS_SOFTWARE_VERSION": "7.46.0-rc.1",
"INTEGRATIONS_CORE_VERSION": "7.46.0-rc.2",
"OMNIBUS_SOFTWARE_VERSION": "7.46.0-rc.2",
"OMNIBUS_RUBY_VERSION": "7.46.0-rc.1",
"JMXFETCH_VERSION": "0.47.9",
"JMXFETCH_HASH": "fb5c3fc2fb42db1ee5c3a7c6187b316d79d69c50b967db0b7ffde590622d0395",
Expand Down Expand Up @@ -82,4 +82,4 @@
"dca-1.9.0": {
"SECURITY_AGENT_POLICIES_VERSION": "v0.3"
}
}
}
2 changes: 1 addition & 1 deletion test/new-e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ go 1.18
replace github.com/DataDog/datadog-agent/test/fakeintake => ../fakeintake

require (
github.com/DataDog/datadog-agent/test/fakeintake v0.46.0-rc.1
github.com/DataDog/datadog-agent/test/fakeintake v0.46.0-rc.2
github.com/DataDog/test-infra-definitions v0.0.0-20230526143644-ed785d3a20d5
github.com/aws/aws-sdk-go-v2 v1.18.0
github.com/aws/aws-sdk-go-v2/config v1.18.25
Expand Down

0 comments on commit 0c98c9c

Please sign in to comment.