Skip to content
Closed
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
20 changes: 10 additions & 10 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 = "1.1.0", path = "../libdd-common" }
libdd-common = { version = "1.2.0", path = "../libdd-common" }
hyper = { workspace = true}
serde = "1.0"

Expand Down
14 changes: 14 additions & 0 deletions libdd-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog



## [1.2.0](https://github.com/datadog/libdatadog/compare/libdd-common-v1.1.0..libdd-common-v1.2.0) - 2026-02-16

### Added

- Single source of truth for headers (fixes issue in profiling with missing headers) ([#1493](https://github.com/datadog/libdatadog/issues/1493)) - ([9f2417e](https://github.com/datadog/libdatadog/commit/9f2417e1a472d433eddc2adeeb0c19ec2cb8b53a))

### Changed

- Merge remote-tracking branch 'origin/main' into release - ([4591b42](https://github.com/datadog/libdatadog/commit/4591b420e3b242770c862ae48d640b486009760c))
- Switch from multipart to multer to resolve deprecation warnings and dependabot alerts ([#1540](https://github.com/datadog/libdatadog/issues/1540)) - ([0d804b3](https://github.com/datadog/libdatadog/commit/0d804b39c0bfb7315f59f097a3702f1b70aa191a))
- Make reqwest available in common ([#1504](https://github.com/datadog/libdatadog/issues/1504)) - ([7986270](https://github.com/datadog/libdatadog/commit/7986270b124c313a71ae28ae415201ec3ccd794b))


## [1.1.0](https://github.com/datadog/libdatadog/compare/libdd-common-v1.0.0..libdd-common-v1.1.0) - 2026-01-20

### Added
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 = "1.1.0"
version = "1.2.0"
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 @@ -46,8 +46,8 @@ anyhow = "1.0"
backtrace = "=0.3.74"
chrono = {version = "0.4", default-features = false, features = ["std", "clock", "serde"]}
cxx = { version = "1.0", optional = true }
libdd-common = { version = "1.1.0", path = "../libdd-common" }
libdd-telemetry = { version = "2.0.0", path = "../libdd-telemetry" }
libdd-common = { version = "1.2.0", path = "../libdd-common" }
libdd-telemetry = { version = "3.0.0", path = "../libdd-telemetry" }
http = "1.0"
libc = "0.2"
nix = { version = "0.29", features = ["poll", "signal", "socket"] }
Expand Down Expand Up @@ -78,4 +78,4 @@ tempfile = { version = "3.13" }
# If we use a newer version of cc, CI fails on alpine.
cc = "1.1.31"
cxx-build = { version = "1.0", optional = true }
libdd-common = { version = "1.1.0", path = "../libdd-common" }
libdd-common = { version = "1.2.0", path = "../libdd-common" }
10 changes: 10 additions & 0 deletions libdd-data-pipeline/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog



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

### Changed

- Health metrics ([#1433](https://github.com/datadog/libdatadog/issues/1433)) - ([7f30d50](https://github.com/datadog/libdatadog/commit/7f30d50f45be5027b1fc67296d06720f8279efe5))
- Merge release branch to main ([#1550](https://github.com/datadog/libdatadog/issues/1550)) - ([d52ee90](https://github.com/datadog/libdatadog/commit/d52ee90209cb12a28bdda0114535c1a985a29d95))
- Proposal for libdd-tinybytes ([#1549](https://github.com/datadog/libdatadog/issues/1549)) - ([59fbb06](https://github.com/datadog/libdatadog/commit/59fbb06d05b6cebd3242e54987b56b49e79181a1))

## 1.0.0 - 2025-11-18

Initial release.
18 changes: 9 additions & 9 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= "1.0.0"
version= "2.0.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"
Expand Down Expand Up @@ -32,14 +32,14 @@ tokio = { version = "1.23", features = [
], default-features = false }
uuid = { version = "1.10.0", features = ["v4"] }
tokio-util = "0.7.11"
libdd-common = { version = "1.1.0", path = "../libdd-common", default-features = false }
libdd-telemetry = { version = "2.0.0", path = "../libdd-telemetry", default-features = false }
libdd-trace-protobuf = { version = "1.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-stats = { version = "1.0.0", path = "../libdd-trace-stats" }
libdd-trace-utils = { version = "1.0.0", path = "../libdd-trace-utils", default-features = false }
libdd-ddsketch = { version = "1.0.0", path = "../libdd-ddsketch" }
libdd-dogstatsd-client = { version = "1.0.0", path = "../libdd-dogstatsd-client", default-features = false }
libdd-tinybytes = { version = "1.1.0", path = "../libdd-tinybytes", features = [
libdd-common = { version = "1.2.0", path = "../libdd-common", default-features = false }
libdd-telemetry = { version = "3.0.0", path = "../libdd-telemetry", default-features = false }
libdd-trace-protobuf = { version = "1.1.0", path = "../libdd-trace-protobuf" }
libdd-trace-stats = { version = "1.0.1", path = "../libdd-trace-stats" }
libdd-trace-utils = { version = "2.0.0", path = "../libdd-trace-utils", default-features = false }
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }
libdd-dogstatsd-client = { version = "1.0.1", path = "../libdd-dogstatsd-client", default-features = false }
libdd-tinybytes = { version = "1.1.1", path = "../libdd-tinybytes", features = [
"bytes_string",
"serialization",
] }
Expand Down
11 changes: 11 additions & 0 deletions libdd-ddsketch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog



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

### Changed

- Remove manual changelog modifications ([#1472](https://github.com/datadog/libdatadog/issues/1472)) - ([d5f1bbf](https://github.com/datadog/libdatadog/commit/d5f1bbfac5850d1b4ecc9052772855fa33587459))
- Update `prost` crates ([#1426](https://github.com/datadog/libdatadog/issues/1426)) - ([14bab86](https://github.com/datadog/libdatadog/commit/14bab865cfab5151fd399c594ab8f67e8bc7dcf1))
- Add changelog for every published crate ([#1396](https://github.com/datadog/libdatadog/issues/1396)) - ([5c4a024](https://github.com/datadog/libdatadog/commit/5c4a024598d6fe6cbd93a3e3dc9882848912064f))
- Don't panic if CryptoProvider already installed ([#1391](https://github.com/datadog/libdatadog/issues/1391)) - ([2f641ea](https://github.com/datadog/libdatadog/commit/2f641eae3708c34e4adfe62c9d477e665da4f12e))

## 1.0.0 - 2025-11-17

Initial release.
2 changes: 1 addition & 1 deletion libdd-ddsketch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-ddsketch"
version = "1.0.0"
version = "1.0.1"
description = "Minimal implementation of Datadog's DDSketch"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-ddsketch"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-ddsketch"
Expand Down
4 changes: 4 additions & 0 deletions libdd-dogstatsd-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog



## [1.0.1](https://github.com/datadog/libdatadog/compare/libdd-dogstatsd-client-v1.0.0..libdd-dogstatsd-client-v1.0.1) - 2026-02-16

## 1.0.0

Initial release.
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.0"
version= "1.0.1"
license.workspace = true

[lib]
bench = false

[dependencies]
libdd-common = { version = "1.1.0", path = "../libdd-common", default-features = false }
libdd-common = { version = "1.2.0", 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-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 = "1.1.0", path = "../libdd-common", default-features = false, features = ["reqwest", "test-utils"] }
libdd-common = { version = "1.2.0", 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
8 changes: 8 additions & 0 deletions libdd-telemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog



## [3.0.0](https://github.com/datadog/libdatadog/compare/libdd-telemetry-v2.0.0..libdd-telemetry-v3.0.0) - 2026-02-16

### Fixed

- Fix logs payload format [APMSP-2590] ([#1498](https://github.com/datadog/libdatadog/issues/1498)) - ([b44bb77](https://github.com/datadog/libdatadog/commit/b44bb77dc7e7dcfd8e47d9e8c2bbe1d3cfa894f6))


## [2.0.0](https://github.com/datadog/libdatadog/compare/libdd-telemetry-v1.0.0..libdd-telemetry-v2.0.0) - 2026-01-20

### Added
Expand Down
6 changes: 3 additions & 3 deletions libdd-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-telemetry"
version= "2.0.0"
version= "3.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 @@ -33,8 +33,8 @@ tracing = { version = "0.1", default-features = false }
uuid = { version = "1.3", features = ["v4"] }
hashbrown = "0.15"

libdd-common = { version = "1.1.0", path = "../libdd-common", default-features = false }
libdd-ddsketch = { version = "1.0.0", path = "../libdd-ddsketch" }
libdd-common = { version = "1.2.0", path = "../libdd-common", default-features = false }
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }

[target."cfg(unix)".dependencies]
libc = "0.2.176"
Expand Down
8 changes: 8 additions & 0 deletions libdd-tinybytes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@



## [1.1.1](https://github.com/datadog/libdatadog/compare/libdd-tinybytes-v1.1.0..libdd-tinybytes-v1.1.1) - 2026-02-16

### Changed

- Merge release branch to main ([#1550](https://github.com/datadog/libdatadog/issues/1550)) - ([d52ee90](https://github.com/datadog/libdatadog/commit/d52ee90209cb12a28bdda0114535c1a985a29d95))



## [1.1.0](https://github.com/datadog/libdatadog/compare/libdd-tinybytes-v1.0.0..libdd-tinybytes-v1.1.0) - 2026-02-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion libdd-tinybytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-tinybytes"
version= "1.1.0"
version= "1.1.1"
description = "Tiny implementation of a bytes::Bytes like type that supports AsRef<[u8]>"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-tinybytes"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-tinybytes"
Expand Down
4 changes: 4 additions & 0 deletions libdd-trace-normalization/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog



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

## 1.0.0 - 2025-11-18

Initial release.
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.0"
version = "1.0.1"
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 = "1.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-protobuf = { version = "1.1.0", path = "../libdd-trace-protobuf" }
arbitrary = { version = "1.3", features = ["derive"], optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions libdd-trace-obfuscation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ serde_json = "1.0"
url = "2.4.0"
percent-encoding = "2.1"
log = "0.4"
libdd-trace-protobuf = { version = "1.0.0", path = "../libdd-trace-protobuf" }
libdd-trace-utils = { version = "1.0.0", path = "../libdd-trace-utils" }
libdd-common = { version = "1.1.0", path = "../libdd-common" }
libdd-trace-protobuf = { version = "1.1.0", path = "../libdd-trace-protobuf" }
libdd-trace-utils = { version = "2.0.0", path = "../libdd-trace-utils" }
libdd-common = { version = "1.2.0", path = "../libdd-common" }

[dev-dependencies]
duplicate = "0.4.1"
Expand Down
4 changes: 4 additions & 0 deletions libdd-trace-protobuf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog



## [1.1.0](https://github.com/datadog/libdatadog/compare/libdd-trace-protobuf-v1.0.0..libdd-trace-protobuf-v1.1.0) - 2026-02-16

## 1.0.0 - 2025-11-17

Initial release.
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 = "1.0.0"
version = "1.1.0"
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
4 changes: 4 additions & 0 deletions libdd-trace-stats/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog



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

## 1.0.0 - 2025-11-18

Initial release.
8 changes: 4 additions & 4 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.0"
version = "1.0.1"
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 @@ -10,9 +10,9 @@ license.workspace = true
autobenches = false

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

[lib]
Expand Down
Loading
Loading