Skip to content

Commit 1816bce

Browse files
dd-octo-sts[bot]iunanua
authored andcommitted
chore(release): proposal for libdd-data-pipeline (#1781)
# Release proposal for libdd-data-pipeline and its dependencies This PR contains version bumps based on public API changes and commits since last release. ## libdd-common **Next version:** `3.0.1` **Semver bump:** `patch` **Tag:** `libdd-common-v3.0.1` ### Commits - chore(build): update reqwest and quinn-proto dependency for dependabot alert (#1774) - chore(build): ekump/APMSP-2718 update aws-lc dependencies (#1751) ## libdd-trace-protobuf **Next version:** `3.0.0` **Semver bump:** `major` **Tag:** `libdd-trace-protobuf-v3.0.0` ### Commits - fix(trace-stats): rename wrongly cased stats fields (#1780) - feat(rc)!: add process_tags to remote config Target (#1586) ## libdd-telemetry **Next version:** `3.1.0` **Semver bump:** `minor` **Tag:** `libdd-telemetry-v3.1.0` ### Commits - refactor(sidecar)!: Refactor tarpc away (#1742) ## libdd-trace-utils **Next version:** `3.0.0` **Semver bump:** `major` **Tag:** `libdd-trace-utils-v3.0.0` ### Commits - fix(trace-stats): rename wrongly cased stats fields (#1780) - refactor(trace-utils)!: change header name type to accept dynamic values (#1722) ## libdd-data-pipeline **Next version:** `3.0.0` **Semver bump:** `major` **Tag:** `libdd-data-pipeline-v3.0.0` ### Commits - feat(agents)!: retrieve container tags hash from /info endpoint (#1700) - refactor(trace-utils)!: change header name type to accept dynamic values (#1722) --------- Co-authored-by: dd-octo-sts[bot] <200755185+dd-octo-sts[bot]@users.noreply.github.com>
1 parent 5ff99ff commit 1816bce

21 files changed

Lines changed: 105 additions & 36 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libdd-common-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build_common = { path = "../build-common" }
2323
anyhow = "1.0"
2424
chrono = { version = "0.4.38", features = ["std"] }
2525
crossbeam-queue = "0.3.11"
26-
libdd-common = { version = "3.0.0", path = "../libdd-common" }
26+
libdd-common = { version = "3.0.1", path = "../libdd-common" }
2727
hyper = { workspace = true}
2828
serde = "1.0"
2929

libdd-common/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33

44

5+
## [3.0.1](https://github.com/datadog/libdatadog/compare/libdd-common-v3.0.0..libdd-common-v3.0.1) - 2026-03-23
6+
7+
### Changed
8+
9+
- Update reqwest and quinn-proto dependency for dependabot alert ([#1774](https://github.com/datadog/libdatadog/issues/1774)) - ([1cd2791](https://github.com/datadog/libdatadog/commit/1cd2791f5e94ab3197e8e68bf6d670cc715d80a0))
10+
- Ekump/APMSP-2718 update aws-lc dependencies ([#1751](https://github.com/datadog/libdatadog/issues/1751)) - ([5d5a596](https://github.com/datadog/libdatadog/commit/5d5a596b54b4bc3729063c30393e9706cf2d4eba))
11+
12+
13+
514
## [3.0.0](https://github.com/datadog/libdatadog/compare/libdd-common-v2.0.1..libdd-common-v3.0.0) - 2026-03-18
615

716
### Changed

libdd-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "libdd-common"
6-
version = "3.0.0"
6+
version = "3.0.1"
77
description = "Shared utilities for Datadog libraries including HTTP/HTTPS connectors, container entity detection, tag validation, rate limiting, and Unix/Windows platform helpers"
88
homepage = "https://github.com/DataDog/libdatadog/tree/main/datadog-common"
99
repository = "https://github.com/DataDog/libdatadog/tree/main/datadog-common"

libdd-crashtracker/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ anyhow = "1.0"
4949
chrono = {version = "0.4", default-features = false, features = ["std", "clock", "serde"]}
5050
cxx = { version = "1.0", optional = true }
5151
errno = "0.3"
52-
libdd-common = { version = "3.0.0", path = "../libdd-common" }
53-
libdd-telemetry = { version = "3.0.0", path = "../libdd-telemetry" }
52+
libdd-common = { version = "3.0.1", path = "../libdd-common" }
53+
libdd-telemetry = { version = "3.1.0", path = "../libdd-telemetry" }
5454
http = "1.1"
5555
libc = "0.2"
5656
nix = { version = "0.29", features = ["poll", "signal", "socket"] }
@@ -85,4 +85,4 @@ cxx-build = { version = "1.0", optional = true }
8585
# in the build-script context. The build script only needs cc_utils, which has no TLS dependency.
8686
# Without this, aws-lc-sys gets compiled twice: once for the normal dep graph and once for the
8787
# build-script dep graph (Cargo resolver v2 keeps these contexts separate).
88-
libdd-common = { version = "3.0.0", path = "../libdd-common", default-features = false }
88+
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }

libdd-data-pipeline/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22

33

4+
5+
## [3.0.0](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v2.0.1..libdd-data-pipeline-v3.0.0) - 2026-03-23
6+
7+
### Added
8+
9+
- Retrieve container tags hash from /info endpoint ([#1700](https://github.com/datadog/libdatadog/issues/1700)) - ([cc4a550](https://github.com/datadog/libdatadog/commit/cc4a550bf6063f80e969332485df806e2c420ebf))
10+
11+
### Changed
12+
13+
- Change header name type to accept dynamic values ([#1722](https://github.com/datadog/libdatadog/issues/1722)) - ([4dd532f](https://github.com/datadog/libdatadog/commit/4dd532f2c15e928103fc441ab030bc8d94f070c0))
14+
15+
416
## [2.0.1](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v2.0.0..libdd-data-pipeline-v2.0.1) - 2026-03-16
517

618
### Changed

libdd-data-pipeline/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libdd-data-pipeline"
3-
version= "2.0.1"
3+
version= "3.0.0"
44
description = "Trace exporter package allowing sending data from datadog SDKs to the Trace Agent."
55
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-data-pipeline"
66
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-data-pipeline"
@@ -30,11 +30,11 @@ tokio = { version = "1.23", features = [
3030
], default-features = false }
3131
uuid = { version = "1.10.0", features = ["v4"] }
3232
tokio-util = "0.7.11"
33-
libdd-common = { version = "3.0.0", path = "../libdd-common", default-features = false }
34-
libdd-telemetry = { version = "3.0.0", path = "../libdd-telemetry", default-features = false }
35-
libdd-trace-protobuf = { version = "2.0.0", path = "../libdd-trace-protobuf" }
36-
libdd-trace-stats = { version = "1.0.3", path = "../libdd-trace-stats" }
37-
libdd-trace-utils = { version = "2.0.2", path = "../libdd-trace-utils", default-features = false }
33+
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }
34+
libdd-telemetry = { version = "3.1.0", path = "../libdd-telemetry", default-features = false }
35+
libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
36+
libdd-trace-stats = { version = "1.0.4", path = "../libdd-trace-stats" }
37+
libdd-trace-utils = { version = "3.0.0", path = "../libdd-trace-utils", default-features = false }
3838
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }
3939
libdd-dogstatsd-client = { version = "1.0.1", path = "../libdd-dogstatsd-client", default-features = false }
4040
libdd-tinybytes = { version = "1.1.0", path = "../libdd-tinybytes", features = [

libdd-dogstatsd-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license.workspace = true
1212
bench = false
1313

1414
[dependencies]
15-
libdd-common = { version = "3.0.0", path = "../libdd-common", default-features = false }
15+
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }
1616
cadence = "1.3.0"
1717
serde = { version = "1.0", features = ["derive", "rc"] }
1818
tracing = { version = "0.1", default-features = false }

libdd-library-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ rand = "0.8.3"
2424
rmp = "0.8.14"
2525
rmp-serde = "1.3.0"
2626

27-
libdd-trace-protobuf = { version = "2.0.0", path = "../libdd-trace-protobuf" }
27+
libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
2828

2929
[dev-dependencies]
3030
tempfile = { version = "3.3" }

libdd-profiling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ http-body-util = "0.1"
4242
httparse = "1.9"
4343
indexmap = "2.11"
4444
libdd-alloc = { version = "1.0.0", path = "../libdd-alloc" }
45-
libdd-common = { version = "3.0.0", path = "../libdd-common", default-features = false, features = ["reqwest", "test-utils"] }
45+
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false, features = ["reqwest", "test-utils"] }
4646
libdd-profiling-protobuf = { version = "1.0.0", path = "../libdd-profiling-protobuf", features = ["prost_impls"] }
4747
mime = "0.3.16"
4848
parking_lot = { version = "0.12", default-features = false }

0 commit comments

Comments
 (0)