Skip to content

Commit 34eab21

Browse files
authored
release: v1.4.0-rc.3 (#608)
Align dependencies from nested packages so they use the current version tag for the `github.com/DataDog/orchestrion` module, so that they are aligned on the current/latest release. Also, adjust the dependency on `dd-trace-go/v2` to the latest release candidate.
1 parent c579d46 commit 34eab21

File tree

11 files changed

+28
-33
lines changed

11 files changed

+28
-33
lines changed

.github/workflows/validate.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,13 @@ jobs:
6262
# Don't run for push, it's not necessary
6363
if: github.event_name != 'push'
6464
run: |-
65+
currentTag=$(go run . version -static | cut -d' ' -f 2)
6566
for gomod in $(find . -iname go.mod -not -path './_docs/themes/**'); do
6667
dir="$(dirname "${gomod}")"
68+
if [[ -n $(go -C="${dir}" mod edit --json | jq '(.Replace // []).[] | select(.Old.Path == "github.com/DataDog/orchestrion")') ]]; then
69+
echo "Aligning orchestrion version in ${dir} to ${currentTag} if necessary..."
70+
go -C="${dir}" mod edit -go="$(go -C="${dir}" mod edit -json | jq -r .Go)" -require="github.com/DataDog/orchestrion@${currentTag}"
71+
fi
6772
go -C="${dir}" mod tidy -go="$(go -C="${dir}" mod edit -json | jq -r .Go)"
6873
go -C="${dir}" mod edit -toolchain=none
6974
done

LICENSE-3rdparty.csv

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ orchestrion,github.com/DataDog/go-sqllexer,MIT,"Copyright (c) 2023 Datadog, Inc.
1616
orchestrion,github.com/DataDog/go-tuf,BSD-3-Clause,"Copyright (c) 2014-2020 Prime Directive, Inc. All rights reserved."
1717
orchestrion,github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes,Apache-2.0,unknown
1818
orchestrion,github.com/DataDog/orchestrion,Apache-2.0,"Copyright 2023 Datadog, Inc. | Copyright [2023-Present] Datadog, Inc."
19+
orchestrion,github.com/Masterminds/semver/v3,MIT,"Copyright (C) 2014-2019, Matt Butcher and Matt Farina"
1920
orchestrion,github.com/Microsoft/go-winio,MIT,Copyright (c) 2015 Microsoft
2021
orchestrion,github.com/aymanbagabas/go-osc52/v2,MIT,Copyright (c) 2022 Ayman Bagabas
2122
orchestrion,github.com/blakesmith/ar,MIT,Copyright (c) 2013 Blake Smith <blakesmith0@gmail.com>
@@ -34,14 +35,12 @@ orchestrion,github.com/eapache/queue/v2,MIT,Copyright (c) 2014 Evan Huus
3435
orchestrion,github.com/ebitengine/purego,Apache-2.0,unknown
3536
orchestrion,github.com/fsnotify/fsnotify,BSD-3-Clause,Copyright © 2012 The Go Authors. All rights reserved.
3637
orchestrion,github.com/go-ole/go-ole,MIT,"Copyright © 2013-2017 Yasuhiro Matsumoto, <mattn.jp@gmail.com>"
38+
orchestrion,github.com/go-viper/mapstructure/v2,MIT,Copyright (c) 2013 Mitchell Hashimoto
3739
orchestrion,github.com/goccy/go-yaml,MIT,Copyright (c) 2019 Masaaki Goshima
3840
orchestrion,github.com/gogo/protobuf,BSD-3-Clause,"Copyright (c) 2013, The GoGo Authors. All rights reserved. | Copyright 2010 The Go Authors. All rights reserved."
3941
orchestrion,github.com/golang/protobuf/proto,BSD-3-Clause,Copyright 2010 The Go Authors. All rights reserved.
4042
orchestrion,github.com/google/go-tpm,Apache-2.0,unknown
4143
orchestrion,github.com/google/uuid,BSD-3-Clause,"Copyright (c) 2009,2014 Google Inc. All rights reserved."
42-
orchestrion,github.com/hashicorp/go-secure-stdlib/parseutil,MPL-2.0,"Copyright (c) 2020 HashiCorp, Inc."
43-
orchestrion,github.com/hashicorp/go-secure-stdlib/strutil,MPL-2.0,unknown
44-
orchestrion,github.com/hashicorp/go-sockaddr,MPL-2.0,"Copyright (c) 2016 HashiCorp, Inc."
4544
orchestrion,github.com/json-iterator/go,MIT,Copyright (c) 2016 json-iterator
4645
orchestrion,github.com/klauspost/compress,MIT,Copyright (c) 2012 The Go Authors. All rights reserved. | Copyright (c) 2019 Klaus Post. All rights reserved. | Copyright 2016-2017 The New York Times Company | Copyright (c) 2015 Klaus Post | Copyright (c) 2011 The Snappy-Go Authors. All rights reserved. | Copyright 2016 The filepathx Authors
4746
orchestrion,github.com/klauspost/compress/s2,BSD-3-Clause,Copyright (c) 2011 The Snappy-Go Authors. All rights reserved. | Copyright (c) 2019 Klaus Post. All rights reserved.
@@ -50,7 +49,6 @@ orchestrion,github.com/mattn/go-colorable,MIT,Copyright (c) 2016 Yasuhiro Matsum
5049
orchestrion,github.com/mattn/go-isatty,MIT,unknown
5150
orchestrion,github.com/mattn/go-runewidth,MIT,Copyright (c) 2016 Yasuhiro Matsumoto
5251
orchestrion,github.com/minio/highwayhash,Apache-2.0,unknown
53-
orchestrion,github.com/mitchellh/mapstructure,MIT,Copyright (c) 2013 Mitchell Hashimoto
5452
orchestrion,github.com/modern-go/concurrent,Apache-2.0,unknown
5553
orchestrion,github.com/modern-go/reflect2,Apache-2.0,unknown
5654
orchestrion,github.com/muesli/termenv,MIT,Copyright (c) 2019 Christian Muehlhaeuser
@@ -69,7 +67,6 @@ orchestrion,github.com/puzpuzpuz/xsync/v3,Apache-2.0,unknown
6967
orchestrion,github.com/rivo/uniseg,MIT,Copyright (c) 2019 Oliver Kuederle
7068
orchestrion,github.com/rs/zerolog,MIT,Copyright (c) 2017 Olivier Poitrey
7169
orchestrion,github.com/russross/blackfriday/v2,BSD-2-Clause,unknown
72-
orchestrion,github.com/ryanuber/go-glob,MIT,Copyright (c) 2014 Ryan Uber
7370
orchestrion,github.com/secure-systems-lab/go-securesystemslib/cjson,MIT,Copyright (c) 2021 NYU Secure Systems Lab
7471
orchestrion,github.com/shirou/gopsutil/v4,BSD-3-Clause,"Copyright (c) 2014, WAKAYAMA Shirou | Copyright (c) 2009 The Go Authors. All rights reserved."
7572
orchestrion,github.com/tinylib/msgp/msgp,MIT,Copyright (c) 2014 Philip Hofer
@@ -92,6 +89,7 @@ orchestrion,go.uber.org/atomic,MIT,"Copyright (c) 2016 Uber Technologies, Inc."
9289
orchestrion,go.uber.org/multierr,MIT,"Copyright (c) 2017-2021 Uber Technologies, Inc."
9390
orchestrion,go.uber.org/zap,MIT,"Copyright (c) 2016-2017 Uber Technologies, Inc."
9491
orchestrion,golang.org/x/crypto,BSD-3-Clause,Copyright 2009 The Go Authors.
92+
orchestrion,golang.org/x/exp/constraints,BSD-3-Clause,Copyright 2009 The Go Authors.
9593
orchestrion,golang.org/x/mod/semver,BSD-3-Clause,Copyright 2009 The Go Authors.
9694
orchestrion,golang.org/x/net,BSD-3-Clause,Copyright 2009 The Go Authors.
9795
orchestrion,golang.org/x/sync/errgroup,BSD-3-Clause,Copyright 2009 The Go Authors.

_docs/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
cloud.google.com/go/pubsub v1.49.0
1313
github.com/99designs/gqlgen v0.17.70
1414
github.com/DataDog/dd-trace-go/orchestrion/all/v2 v2.1.0-dev
15-
github.com/DataDog/orchestrion v1.4.0-rc.2
15+
github.com/DataDog/orchestrion v1.4.0-rc.3
1616
github.com/DataDog/orchestrion/instrument v1.3.1
1717
github.com/IBM/sarama v1.45.1
1818
github.com/Shopify/sarama v1.38.1

_docs/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapp
226226
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.50.0/go.mod h1:otE2jQekW/PqXk1Awf5lmfokJx4uwuqcj1ab5SpGeW0=
227227
github.com/IBM/sarama v1.45.1 h1:nY30XqYpqyXOXSNoe2XCgjj9jklGM1Ye94ierUb1jQ0=
228228
github.com/IBM/sarama v1.45.1/go.mod h1:qifDhA3VWSrQ1TjSMyxDl3nYL3oX2C83u+G6L79sq4w=
229-
github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0=
230-
github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ=
229+
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
230+
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
231231
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
232232
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
233233
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=

go.mod

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/DataDog/orchestrion
33
go 1.23.0
44

55
require (
6-
github.com/DataDog/dd-trace-go/v2 v2.1.0-dev
6+
github.com/DataDog/dd-trace-go/v2 v2.0.0-rc.12
77
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
88
github.com/charmbracelet/lipgloss v1.1.0
99
github.com/dave/dst v0.27.3
@@ -45,6 +45,7 @@ require (
4545
github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect
4646
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.26.0 // indirect
4747
github.com/DataDog/sketches-go v1.4.7 // indirect
48+
github.com/Masterminds/semver/v3 v3.3.1 // indirect
4849
github.com/Microsoft/go-winio v0.6.2 // indirect
4950
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
5051
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -60,14 +61,12 @@ require (
6061
github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 // indirect
6162
github.com/ebitengine/purego v0.8.2 // indirect
6263
github.com/go-ole/go-ole v1.3.0 // indirect
64+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
6365
github.com/gogo/protobuf v1.3.2 // indirect
6466
github.com/golang/protobuf v1.5.4 // indirect
6567
github.com/google/go-cmp v0.7.0 // indirect
6668
github.com/google/go-tpm v0.9.3 // indirect
6769
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
68-
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 // indirect
69-
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
70-
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
7170
github.com/json-iterator/go v1.1.12 // indirect
7271
github.com/klauspost/compress v1.18.0 // indirect
7372
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
@@ -76,7 +75,6 @@ require (
7675
github.com/mattn/go-isatty v0.0.20 // indirect
7776
github.com/mattn/go-runewidth v0.0.16 // indirect
7877
github.com/minio/highwayhash v1.0.3 // indirect
79-
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c // indirect
8078
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8179
github.com/modern-go/reflect2 v1.0.2 // indirect
8280
github.com/muesli/termenv v0.16.0 // indirect
@@ -93,7 +91,6 @@ require (
9391
github.com/puzpuzpuz/xsync/v3 v3.5.1 // indirect
9492
github.com/rivo/uniseg v0.4.7 // indirect
9593
github.com/russross/blackfriday/v2 v2.1.0 // indirect
96-
github.com/ryanuber/go-glob v1.0.0 // indirect
9794
github.com/secure-systems-lab/go-securesystemslib v0.9.0 // indirect
9895
github.com/sergi/go-diff v1.3.1 // indirect
9996
github.com/tinylib/msgp v1.2.5 // indirect
@@ -117,6 +114,7 @@ require (
117114
go.uber.org/multierr v1.11.0 // indirect
118115
go.uber.org/zap v1.27.0 // indirect
119116
golang.org/x/crypto v0.37.0 // indirect
117+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
120118
golang.org/x/net v0.39.0 // indirect
121119
golang.org/x/text v0.24.0 // indirect
122120
golang.org/x/time v0.11.0 // indirect

go.sum

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ github.com/DataDog/datadog-agent/pkg/version v0.64.2 h1:clAPToUGyhFWJIfN6pBR808Y
1818
github.com/DataDog/datadog-agent/pkg/version v0.64.2/go.mod h1:DgOVsfSRaNV4GZNl/qgoZjG3hJjoYUNWPPhbfTfTqtY=
1919
github.com/DataDog/datadog-go/v5 v5.6.0 h1:2oCLxjF/4htd55piM75baflj/KoE6VYS7alEUqFvRDw=
2020
github.com/DataDog/datadog-go/v5 v5.6.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw=
21-
github.com/DataDog/dd-trace-go/v2 v2.1.0-dev h1:jjNUHrtQNk8raMFbFeSVQUtA0CqwYcHiCVyrkv68e/I=
22-
github.com/DataDog/dd-trace-go/v2 v2.1.0-dev/go.mod h1:sQSg6afReqxxgIdLOZLK0xs85T945tvS2gtxf2Zzt58=
21+
github.com/DataDog/dd-trace-go/v2 v2.0.0-rc.12 h1:81RnCgdmLAD2AJglker4clWtEN7IaEd/UdgdHkeRicA=
22+
github.com/DataDog/dd-trace-go/v2 v2.0.0-rc.12/go.mod h1:WBtf7TA9bWr5uA8DjOyw1qlSKe3bw9gN5nc0Ta9dHFE=
2323
github.com/DataDog/go-libddwaf/v3 v3.5.4 h1:cLV5lmGhrUBnHG50EUXdqPQAlJdVCp9n3aQ5bDWJEAg=
2424
github.com/DataDog/go-libddwaf/v3 v3.5.4/go.mod h1:HoLUHdj0NybsPBth/UppTcg8/DKA4g+AXuk8cZ6nuoo=
2525
github.com/DataDog/go-runtime-metrics-internal v0.0.4-0.20250319104955-81009b9bad14 h1:tc5aVw7OcMyfVmJnrY4IOeiV1RTSaBuJBqF14BXxzIo=
@@ -34,6 +34,8 @@ github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.26.0 h1:GlvoS
3434
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.26.0/go.mod h1:mYQmU7mbHH6DrCaS8N6GZcxwPoeNfyuopUoLQltwSzs=
3535
github.com/DataDog/sketches-go v1.4.7 h1:eHs5/0i2Sdf20Zkj0udVFWuCrXGRFig2Dcfm5rtcTxc=
3636
github.com/DataDog/sketches-go v1.4.7/go.mod h1:eAmQ/EBmtSO+nQp7IZMZVRPT4BQTmIc5RZQ+deGlTPM=
37+
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
38+
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
3739
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
3840
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
3941
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
@@ -90,6 +92,8 @@ github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre
9092
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
9193
github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE=
9294
github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78=
95+
github.com/go-viper/mapstructure/v2 v2.2.1 h1:ZAaOCxANMuZx5RCeg0mBdEZk7DZasvvZIxtHqx8aGss=
96+
github.com/go-viper/mapstructure/v2 v2.2.1/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
9397
github.com/goccy/go-yaml v1.17.1 h1:LI34wktB2xEE3ONG/2Ar54+/HJVBriAGJ55PHls4YuY=
9498
github.com/goccy/go-yaml v1.17.1/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
9599
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
@@ -111,12 +115,6 @@ github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 h1:BHT72Gu3keYf3ZEu2J
111115
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6/go.mod h1:boTsfXsheKC2y+lKOCMpSfarhxDeIzfZG1jqGcPl3cA=
112116
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
113117
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
114-
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 h1:U+kC2dOhMFQctRfhK0gRctKAPTloZdMU5ZJxaesJ/VM=
115-
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0/go.mod h1:Ll013mhdmsVDuoIXVfBtvgGJsXDYkTw1kooNcoCXuE0=
116-
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 h1:kes8mmyCpxJsI7FTwtzRqEy9CdjCtrXrXGuOpxEA7Ts=
117-
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2/go.mod h1:Gou2R9+il93BqX25LAKCLuM+y9U2T4hlwvT1yprcna4=
118-
github.com/hashicorp/go-sockaddr v1.0.7 h1:G+pTkSO01HpR5qCxg7lxfsFEZaG+C0VssTy/9dbT+Fw=
119-
github.com/hashicorp/go-sockaddr v1.0.7/go.mod h1:FZQbEYa1pxkQ7WLpyXJ6cbjpT8q0YgQaK/JakXqGyWw=
120118
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
121119
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
122120
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
@@ -145,8 +143,6 @@ github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6T
145143
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
146144
github.com/minio/highwayhash v1.0.3 h1:kbnuUMoHYyVl7szWjSxJnxw11k2U709jqFPPmIUyD6Q=
147145
github.com/minio/highwayhash v1.0.3/go.mod h1:GGYsuwP/fPD6Y9hMiXuapVvlIUEhFhMTh0rxU3ik1LQ=
148-
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c h1:cqn374mizHuIWj+OSJCajGr/phAmuMug9qIX3l9CflE=
149-
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
150146
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
151147
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
152148
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
@@ -199,8 +195,6 @@ github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
199195
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
200196
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
201197
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
202-
github.com/ryanuber/go-glob v1.0.0 h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk=
203-
github.com/ryanuber/go-glob v1.0.0/go.mod h1:807d1WSdnB0XRJzKNil9Om6lcp/3a0v4qIHxIXzX/Yc=
204198
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 h1:PKK9DyHxif4LZo+uQSgXNqs0jj5+xZwwfKHgph2lxBw=
205199
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1/go.mod h1:JXeL+ps8p7/KNMjDQk3TCwPpBy0wYklyWTfbkIzdIFU=
206200
github.com/secure-systems-lab/go-securesystemslib v0.9.0 h1:rf1HIbL64nUpEIZnjLZ3mcNEL9NBPB0iuVjyxvq3LZc=

instrument/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.0
55
replace github.com/DataDog/orchestrion => ..
66

77
require (
8-
github.com/DataDog/orchestrion v1.4.0-rc.2
8+
github.com/DataDog/orchestrion v1.4.0-rc.3
99
gopkg.in/DataDog/dd-trace-go.v1 v1.73.0-rc.3
1010
)
1111

instrument/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ github.com/DataDog/sketches-go v1.4.7 h1:eHs5/0i2Sdf20Zkj0udVFWuCrXGRFig2Dcfm5rt
6565
github.com/DataDog/sketches-go v1.4.7/go.mod h1:eAmQ/EBmtSO+nQp7IZMZVRPT4BQTmIc5RZQ+deGlTPM=
6666
github.com/IBM/sarama v1.45.1 h1:nY30XqYpqyXOXSNoe2XCgjj9jklGM1Ye94ierUb1jQ0=
6767
github.com/IBM/sarama v1.45.1/go.mod h1:qifDhA3VWSrQ1TjSMyxDl3nYL3oX2C83u+G6L79sq4w=
68-
github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0=
69-
github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ=
68+
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
69+
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
7070
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
7171
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
7272
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "runtime/debug"
99

1010
const (
1111
// tag specifies the current release tag. It needs to be manually updated.
12-
tag = "v1.4.0-rc.2"
12+
tag = "v1.4.0-rc.3"
1313
devSuffix = "+devel"
1414
)
1515

samples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/99designs/gqlgen v0.17.70
12-
github.com/DataDog/orchestrion v1.4.0-rc.2
12+
github.com/DataDog/orchestrion v1.4.0-rc.3
1313
github.com/DataDog/orchestrion/instrument v1.3.1
1414
github.com/IBM/sarama v1.45.1
1515
github.com/Shopify/sarama v1.38.1

0 commit comments

Comments
 (0)