From 3597a157c27353ec8ea37284f94996b5a260a651 Mon Sep 17 00:00:00 2001 From: Munir Date: Thu, 14 May 2026 14:05:14 -0400 Subject: [PATCH] chore: bump libdd-capabilities-impl to 1.1.0 and libdd-data-pipeline to 3.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps two crates that added public APIs without a version increment, so they can be published to crates.io and consumed without [patch.crates-io]: - libdd-capabilities-impl 1.0.0 → 1.1.0 (adds NativeCapabilities) - libdd-data-pipeline 3.0.1 → 3.1.0 (adds telemetry feature, TelemetryInstrumentationSessions, generic TraceExporter) libdd-telemetry is already at 5.0.0 on main (unpublished), so no bump needed. Required by dd-trace-rs to use instrumentation session ID propagation without a [patch.crates-io] workaround. Co-Authored-By: Claude Sonnet 4.6 --- libdd-capabilities-impl/Cargo.toml | 2 +- libdd-data-pipeline/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libdd-capabilities-impl/Cargo.toml b/libdd-capabilities-impl/Cargo.toml index 0f9fe0bab9..a1f24c5dd9 100644 --- a/libdd-capabilities-impl/Cargo.toml +++ b/libdd-capabilities-impl/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "libdd-capabilities-impl" -version = "1.0.0" +version = "1.1.0" description = "Native implementations of libdd-capabilities traits" homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-capabilities-impl" repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-capabilities-impl" diff --git a/libdd-data-pipeline/Cargo.toml b/libdd-data-pipeline/Cargo.toml index 192cf04ca5..95421d1324 100644 --- a/libdd-data-pipeline/Cargo.toml +++ b/libdd-data-pipeline/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdd-data-pipeline" -version= "3.0.1" +version= "3.1.0" description = "Trace exporter package allowing sending data from datadog SDKs to the Trace Agent." homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-data-pipeline" repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-data-pipeline" @@ -48,7 +48,7 @@ libdd-tinybytes = { version = "1.1.0", path = "../libdd-tinybytes", features = [ [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio = { version = "1.23", features = ["time", "test-util"], default-features = false } -libdd-capabilities-impl = { version = "1.0.0", path = "../libdd-capabilities-impl", default-features = false } +libdd-capabilities-impl = { version = "1.1.0", path = "../libdd-capabilities-impl", default-features = false } [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2", features = ["js"] } @@ -63,7 +63,7 @@ harness = false path = "benches/trace_buffer.rs" [dev-dependencies] -libdd-capabilities-impl = { version = "1.0.0", path = "../libdd-capabilities-impl" } +libdd-capabilities-impl = { version = "1.1.0", path = "../libdd-capabilities-impl" } libdd-log = { path = "../libdd-log" } libdd-shared-runtime = { version = "0.1.0", path = "../libdd-shared-runtime" } regex = "1.5"