Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libdd-common-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build_common = { path = "../build-common" }
anyhow = "1.0"
chrono = { version = "0.4.38", features = ["std"] }
crossbeam-queue = "0.3.11"
libdd-common = { version = "3.0.1", path = "../libdd-common" }
libdd-common = { version = "3.0.2", path = "../libdd-common" }
hyper = { workspace = true}
serde = "1.0"

Expand Down
7 changes: 7 additions & 0 deletions libdd-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@



## [3.0.2](https://github.com/datadog/libdatadog/compare/libdd-common-v3.0.1..libdd-common-v3.0.2) - 2026-03-25

### Changed
- Fix previous release.



## [3.0.1](https://github.com/datadog/libdatadog/compare/libdd-common-v3.0.0..libdd-common-v3.0.1) - 2026-03-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion libdd-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "libdd-common"
version = "3.0.1"
version = "3.0.2"
description = "Shared utilities for Datadog libraries including HTTP/HTTPS connectors, container entity detection, tag validation, rate limiting, and Unix/Windows platform helpers"
homepage = "https://github.com/DataDog/libdatadog/tree/main/datadog-common"
repository = "https://github.com/DataDog/libdatadog/tree/main/datadog-common"
Expand Down
6 changes: 3 additions & 3 deletions libdd-crashtracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ anyhow = "1.0"
chrono = {version = "0.4", default-features = false, features = ["std", "clock", "serde"]}
cxx = { version = "1.0", optional = true }
errno = "0.3"
libdd-common = { version = "3.0.1", path = "../libdd-common" }
libdd-telemetry = { version = "3.1.0", path = "../libdd-telemetry" }
libdd-common = { version = "3.0.2", path = "../libdd-common" }
libdd-telemetry = { version = "4.0.0", path = "../libdd-telemetry" }
http = "1.1"
libc = "0.2"
nix = { version = "0.29", features = ["poll", "signal", "socket"] }
Expand Down Expand Up @@ -85,4 +85,4 @@ cxx-build = { version = "1.0", optional = true }
# in the build-script context. The build script only needs cc_utils, which has no TLS dependency.
# Without this, aws-lc-sys gets compiled twice: once for the normal dep graph and once for the
# build-script dep graph (Cargo resolver v2 keeps these contexts separate).
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }
libdd-common = { version = "3.0.2", path = "../libdd-common", default-features = false }
8 changes: 8 additions & 0 deletions libdd-data-pipeline/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@



## [3.0.1](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v3.0.0..libdd-data-pipeline-v3.0.1) - 2026-03-25

### Added
- Fix previous version.



## [3.0.0](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v2.0.1..libdd-data-pipeline-v3.0.0) - 2026-03-23

### Added
Expand All @@ -13,6 +20,7 @@
- Change header name type to accept dynamic values ([#1722](https://github.com/datadog/libdatadog/issues/1722)) - ([4dd532f](https://github.com/datadog/libdatadog/commit/4dd532f2c15e928103fc441ab030bc8d94f070c0))



## [2.0.1](https://github.com/datadog/libdatadog/compare/libdd-data-pipeline-v2.0.0..libdd-data-pipeline-v2.0.1) - 2026-03-16

### Changed
Expand Down
14 changes: 7 additions & 7 deletions libdd-data-pipeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-data-pipeline"
version= "3.0.0"
version= "3.0.1"
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"
Expand Down Expand Up @@ -30,13 +30,13 @@ tokio = { version = "1.23", features = [
], default-features = false }
uuid = { version = "1.10.0", features = ["v4"] }
tokio-util = "0.7.11"
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }
libdd-telemetry = { version = "3.1.0", path = "../libdd-telemetry", default-features = false }
libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-stats = { version = "1.0.4", path = "../libdd-trace-stats" }
libdd-trace-utils = { version = "3.0.0", path = "../libdd-trace-utils", default-features = false }
libdd-common = { version = "3.0.2", path = "../libdd-common", default-features = false }
libdd-telemetry = { version = "4.0.0", path = "../libdd-telemetry", default-features = false }
libdd-trace-protobuf = { version = "3.0.1", path = "../libdd-trace-protobuf" }
libdd-trace-stats = { version = "2.0.0", path = "../libdd-trace-stats" }
libdd-trace-utils = { version = "3.0.1", path = "../libdd-trace-utils", default-features = false }
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }
libdd-dogstatsd-client = { version = "1.0.2", path = "../libdd-dogstatsd-client", default-features = false }
libdd-dogstatsd-client = { version = "2.0.0", path = "../libdd-dogstatsd-client", default-features = false }
libdd-tinybytes = { version = "1.1.0", path = "../libdd-tinybytes", features = [
"bytes_string",
"serialization",
Expand Down
8 changes: 8 additions & 0 deletions libdd-dogstatsd-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@



## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-dogstatsd-client-v1.0.2..libdd-dogstatsd-client-v2.0.0) - 2026-03-25

### Changed

- Fix previous version.



## [1.0.2](https://github.com/datadog/libdatadog/compare/libdd-dogstatsd-client-v1.0.1..libdd-dogstatsd-client-v1.0.2) - 2026-03-23

### Changed
Expand Down
4 changes: 2 additions & 2 deletions libdd-dogstatsd-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-dogstatsd-clie
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-dogstatsd-client"
rust-version.workspace = true
edition.workspace = true
version= "1.0.2"
version = "2.0.0"
license.workspace = true

[lib]
bench = false

[dependencies]
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }
libdd-common = { version = "3.0.2", path = "../libdd-common", default-features = false }
cadence = "1.3.0"
serde = { version = "1.0", features = ["derive", "rc"] }
tracing = { version = "0.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion libdd-library-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ rand = "0.8.3"
rmp = "0.8.14"
rmp-serde = "1.3.0"

libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-protobuf = { version = "3.0.1", path = "../libdd-trace-protobuf" }

[dev-dependencies]
tempfile = { version = "3.3" }
Expand Down
2 changes: 1 addition & 1 deletion libdd-profiling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ http-body-util = "0.1"
httparse = "1.9"
indexmap = "2.11"
libdd-alloc = { version = "1.0.0", path = "../libdd-alloc" }
libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false, features = ["reqwest", "test-utils"] }
libdd-common = { version = "3.0.2", path = "../libdd-common", default-features = false, features = ["reqwest", "test-utils"] }
libdd-profiling-protobuf = { version = "1.0.0", path = "../libdd-profiling-protobuf", features = ["prost_impls"] }
mime = "0.3.16"
parking_lot = { version = "0.12", default-features = false }
Expand Down
7 changes: 7 additions & 0 deletions libdd-telemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@



## [4.0.0](https://github.com/datadog/libdatadog/compare/libdd-telemetry-v3.1.0..libdd-telemetry-v4.0.0) - 2026-03-25

### Changed
- Fix previous version.



## [3.1.0](https://github.com/datadog/libdatadog/compare/libdd-telemetry-v3.0.0..libdd-telemetry-v3.1.0) - 2026-03-23

### Changed
Expand Down
4 changes: 2 additions & 2 deletions libdd-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-telemetry"
version= "3.1.0"
version= "4.0.0"
description = "Telemetry client allowing to send data as described in https://docs.datadoghq.com/tracing/configure_data_security/?tab=net#telemetry-collection"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-telemetry"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-telemetry"
Expand Down Expand Up @@ -31,7 +31,7 @@ tracing = { version = "0.1", default-features = false }
uuid = { version = "1.3", features = ["v4"] }
hashbrown = "0.15"

libdd-common = { version = "3.0.1", path = "../libdd-common", default-features = false }
libdd-common = { version = "3.0.2", path = "../libdd-common", default-features = false }
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }

[target."cfg(unix)".dependencies]
Expand Down
8 changes: 8 additions & 0 deletions libdd-trace-normalization/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog



## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-trace-normalization-v1.0.3..libdd-trace-normalization-v2.0.0) - 2026-03-25

### Changed
- Fix previous version.



## [1.0.3](https://github.com/datadog/libdatadog/compare/libdd-trace-normalization-v1.0.2..libdd-trace-normalization-v1.0.3) - 2026-03-23

### Changed
Expand Down
4 changes: 2 additions & 2 deletions libdd-trace-normalization/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-trace-normalization"
version = "1.0.3"
version = "2.0.0"
authors = ["David Lee <david.lee@datadoghq.com>"]
description = "A duplicate of trace normalization implemented in the agent in https://github.com/DataDog/datadog-agent/blob/main/pkg/trace/traceutil/normalize.go"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-normalization"
Expand All @@ -14,7 +14,7 @@ bench = false

[dependencies]
anyhow = "1.0"
libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-protobuf = { version = "3.0.1", path = "../libdd-trace-protobuf" }
arbitrary = { version = "1.3", features = ["derive"], optional = true }

[features]
Expand Down
8 changes: 8 additions & 0 deletions libdd-trace-obfuscation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog



## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-trace-obfuscation-v1.0.1..libdd-trace-obfuscation-v2.0.0) - 2026-03-25

### Changed
- Fix previous version.


## [1.0.1](https://github.com/datadog/libdatadog/compare/libdd-trace-obfuscation-v1.0.0..libdd-trace-obfuscation-v1.0.1) - 2026-03-16

### Changed
Expand Down
8 changes: 4 additions & 4 deletions libdd-trace-obfuscation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-trace-obfuscation"
version = "1.0.1"
version = "2.0.0"
description = "A duplicate of trace obfuscator implemented in the agent and documented in https://docs.datadoghq.com/tracing/configure_data_security/?tab=net#trace-obfuscation"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-obfuscation"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-obfuscation"
Expand All @@ -17,9 +17,9 @@ serde_json = { version = "1.0", features = ["preserve_order"] }
percent-encoding = "2.1"
log = "0.4"
fluent-uri = "0.4.1"
libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-utils = { version = "3.0.0", path = "../libdd-trace-utils" }
libdd-common = { version = "3.0.1", path = "../libdd-common" }
libdd-trace-protobuf = { version = "3.0.1", path = "../libdd-trace-protobuf" }
libdd-trace-utils = { version = "3.0.1", path = "../libdd-trace-utils" }
libdd-common = { version = "3.0.2", path = "../libdd-common" }

[dev-dependencies]
duplicate = "0.4.1"
Expand Down
7 changes: 7 additions & 0 deletions libdd-trace-protobuf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@



## [3.0.1](https://github.com/datadog/libdatadog/compare/libdd-trace-protobuf-v3.0.0..libdd-trace-protobuf-v3.0.1) - 2026-03-25

### Changed
- Fix previous version.



## [3.0.0](https://github.com/datadog/libdatadog/compare/libdd-trace-protobuf-v2.0.0..libdd-trace-protobuf-v3.0.0) - 2026-03-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion libdd-trace-protobuf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-trace-protobuf"
version = "3.0.0"
version = "3.0.1"
description = "Protobuf utils for Datadog's traces serialization"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-protobuf"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-protobuf"
Expand Down
8 changes: 8 additions & 0 deletions libdd-trace-stats/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog



## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-trace-stats-v1.0.4..libdd-trace-stats-v2.0.0) - 2026-03-25

### Changed
- Fix previous version.



## [1.0.4](https://github.com/datadog/libdatadog/compare/libdd-trace-stats-v1.0.3..libdd-trace-stats-v1.0.4) - 2026-03-23

### Changed
Expand Down
6 changes: 3 additions & 3 deletions libdd-trace-stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-trace-stats"
version = "1.0.4"
version = "2.0.0"
description = "This crate provides utilities to compute stats from Datadog traces."
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-stats"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-trace-stats"
Expand All @@ -11,8 +11,8 @@ autobenches = false

[dependencies]
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }
libdd-trace-protobuf = { version = "3.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-utils = { version = "3.0.0", path = "../libdd-trace-utils", default-features = false }
libdd-trace-protobuf = { version = "3.0.1", path = "../libdd-trace-protobuf" }
libdd-trace-utils = { version = "3.0.1", path = "../libdd-trace-utils", default-features = false }
hashbrown = { version = "0.15" }

[lib]
Expand Down
7 changes: 7 additions & 0 deletions libdd-trace-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@



## [3.0.1](https://github.com/datadog/libdatadog/compare/libdd-trace-utils-v3.0.0..libdd-trace-utils-v3.0.1) - 2026-03-25

### Changed
- Fix previous version.



## [3.0.0](https://github.com/datadog/libdatadog/compare/libdd-trace-utils-v2.0.2..libdd-trace-utils-v3.0.0) - 2026-03-23

### Changed
Expand Down
Loading
Loading