Skip to content

Commit 8f611f3

Browse files
chore(release): merge release branch to main (#1735)
This PR merges the release branch to main --------- Co-authored-by: dd-octo-sts[bot] <200755185+dd-octo-sts[bot]@users.noreply.github.com> Co-authored-by: Julio Gonzalez <107922352+hoolioh@users.noreply.github.com> Co-authored-by: Julio <julio.gonzalez@datadoghq.com>
1 parent 9ed5af2 commit 8f611f3

18 files changed

Lines changed: 92 additions & 26 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 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 = "2.0.0", path = "../libdd-common" }
26+
libdd-common = { version = "2.0.1", path = "../libdd-common" }
2727
hyper = { workspace = true}
2828
serde = "1.0"
2929

libdd-common/CHANGELOG.md

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

33

44

5+
## [2.0.1](https://github.com/datadog/libdatadog/compare/libdd-common-v2.0.0..libdd-common-v2.0.1) - 2026-03-16
6+
7+
### Changed
8+
9+
- Run thread count test as single threaded ([#1626](https://github.com/datadog/libdatadog/issues/1626)) - ([b0296aa](https://github.com/datadog/libdatadog/commit/b0296aa173211c81ba1349f2e2812a79938f3153))
10+
- Run thread count test in own process ([#1693](https://github.com/datadog/libdatadog/issues/1693)) - ([3f3efef](https://github.com/datadog/libdatadog/commit/3f3efefb2ff45d7a5491b770480396d001b87631))
11+
- Update bytes to 1.11.1 to address RUSTSEC-2026-0007 ([#1628](https://github.com/datadog/libdatadog/issues/1628)) - ([0b0863b](https://github.com/datadog/libdatadog/commit/0b0863b2afb7302fe02ea0af77cb9f98550e2a62))
12+
13+
14+
515
## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-common-v1.1.0..libdd-common-v2.0.0) - 2026-02-23
616

717
### Added

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 = "2.0.0"
6+
version = "2.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ libdd-libunwind-sys = { version = "29.0.0", path = "../libdd-libunwind-sys" }
4848
anyhow = "1.0"
4949
chrono = {version = "0.4", default-features = false, features = ["std", "clock", "serde"]}
5050
cxx = { version = "1.0", optional = true }
51-
libdd-common = { version = "2.0.0", path = "../libdd-common" }
51+
libdd-common = { version = "2.0.1", path = "../libdd-common" }
5252
libdd-telemetry = { version = "3.0.0", path = "../libdd-telemetry" }
5353
http = "1.1"
5454
libc = "0.2"
@@ -84,4 +84,4 @@ cxx-build = { version = "1.0", optional = true }
8484
# in the build-script context. The build script only needs cc_utils, which has no TLS dependency.
8585
# Without this, aws-lc-sys gets compiled twice: once for the normal dep graph and once for the
8686
# build-script dep graph (Cargo resolver v2 keeps these contexts separate).
87-
libdd-common = { version = "2.0.0", path = "../libdd-common", default-features = false }
87+
libdd-common = { version = "2.0.1", path = "../libdd-common", default-features = false }

libdd-data-pipeline/CHANGELOG.md

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

33

4+
## [2.0.1](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v2.0.0..libdd-data-pipeline-v2.0.1) - 2026-03-16
5+
6+
### Changed
7+
8+
- Update dependencies ([#1734](https://github.com/DataDog/libdatadog/issues/1734)) - ([38dd71b](https://github.com/DataDog/libdatadog/commit/38dd71bd6fdac45ecab3d74ce1b4a827abae794a))
9+
10+
411

512
## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v1.0.0..libdd-data-pipeline-v2.0.0) - 2026-02-23
613

libdd-data-pipeline/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libdd-data-pipeline"
3-
version= "2.0.0"
3+
version= "2.0.1"
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 = "2.0.0", path = "../libdd-common", default-features = false }
33+
libdd-common = { version = "2.0.1", path = "../libdd-common", default-features = false }
3434
libdd-telemetry = { version = "3.0.0", path = "../libdd-telemetry", default-features = false }
3535
libdd-trace-protobuf = { version = "2.0.0", path = "../libdd-trace-protobuf" }
36-
libdd-trace-stats = { version = "1.0.1", path = "../libdd-trace-stats" }
37-
libdd-trace-utils = { version = "2.0.0", path = "../libdd-trace-utils", default-features = false }
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 }
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 = "2.0.0", path = "../libdd-common", default-features = false }
15+
libdd-common = { version = "2.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-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 = "2.0.0", path = "../libdd-common", default-features = false, features = ["reqwest", "test-utils"] }
45+
libdd-common = { version = "2.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 }

libdd-telemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tracing = { version = "0.1", default-features = false }
3131
uuid = { version = "1.3", features = ["v4"] }
3232
hashbrown = "0.15"
3333

34-
libdd-common = { version = "2.0.0", path = "../libdd-common", default-features = false }
34+
libdd-common = { version = "2.0.1", path = "../libdd-common", default-features = false }
3535
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }
3636

3737
[target."cfg(unix)".dependencies]

0 commit comments

Comments
 (0)