Skip to content

Commit d3ac415

Browse files
dd-octo-sts[bot]github-actions[bot]iunanua
authored
chore(release): proposal for libdd-remote-config (#2138)
# Release proposal for libdd-remote-config and its dependencies This PR contains version bumps based on public API changes and commits since last release. ## libdd-common **Next version:** `5.0.0` **Semver bump:** `major` **Tag:** `libdd-common-v5.0.0` ### Commits - chore(profiling): Use SECURITY_ANONYMOUS when connecting to named pipe server (#2134) - fix: Fix http PathAndQuery Uri Parsing (#2122) - chore(common)!: replace native-certs with platform-verifier (#2078) - feat(data-pipeline)!: CSS Trace Filters (#1985) - fix(libdd-common): Add fallback logic for resolving Azure Functions instance name [SVLS-8931] (#2077) - test: fix timeouts on heavily contended scenarios (#2093) ## libdd-remote-config **Next version:** `1.0.0` **Semver bump:** `major` **Tag:** `libdd-remote-config-v1.0.0` **Warning:** this is an initial release. Please verify that the version and commits included are correct. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: iunanua <18325288+iunanua@users.noreply.github.com>
1 parent b10b1d4 commit d3ac415

20 files changed

Lines changed: 47 additions & 22 deletions

File tree

Cargo.lock

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

datadog-ffe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ chrono = { version = "0.4.38", default-features = false, features = ["now", "ser
1919
derive_more = { version = "2.0.0", default-features = false, features = ["from", "into"] }
2020
log = { version = "0.4.21", default-features = false, features = ["kv", "kv_serde"] }
2121
md5 = { version = "0.7.0", default-features = false }
22-
libdd-common = { version = "4.2.0", path = "../libdd-common", default-features = false, features = ["require-regex-full"] }
22+
libdd-common = { version = "5.0.0", path = "../libdd-common", default-features = false, features = ["require-regex-full"] }
2323
semver = "1.0"
2424
serde-bool = { version = "0.1.3", default-features = false }
2525
serde_with = { version = "3.11.0", default-features = false, features = ["base64", "hex", "macros"] }

libdd-agent-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ serde_json = "1.0"
2929
thiserror = "2"
3030
tokio = { version = "1.23", features = ["rt"] }
3131
libdd-http-client = { version = "35.0", path = "../libdd-http-client", default-features = false }
32-
libdd-common = { version = "4.0", path = "../libdd-common", default-features = false }
32+
libdd-common = { version = "5.0", path = "../libdd-common", default-features = false }
3333
tracing = { version = "0.1", default-features = false }
3434

3535
[dev-dependencies]

libdd-capabilities-impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bench = false
1919
bytes = "1"
2020
http = "1"
2121
libdd-capabilities = { path = "../libdd-capabilities", version = "2.0.0" }
22-
libdd-common = { path = "../libdd-common", version = "4.2.0", default-features = false }
22+
libdd-common = { path = "../libdd-common", version = "5.0.0", default-features = false }
2323
tokio = { version = "1", features = ["time"] }
2424

2525
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

libdd-common/CHANGELOG.md

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

33

44

5+
## [5.0.0](https://github.com/datadog/libdatadog/compare/libdd-common-v4.2.0..libdd-common-v5.0.0) - 2026-06-19
6+
7+
### Added
8+
9+
- CSS Trace Filters ([#1985](https://github.com/datadog/libdatadog/issues/1985)) - ([2842d90](https://github.com/datadog/libdatadog/commit/2842d906c6f6596fd589d85767038cec3f646d37))
10+
11+
### Changed
12+
13+
- Replace native-certs with platform-verifier ([#2078](https://github.com/datadog/libdatadog/issues/2078)) - ([59db709](https://github.com/datadog/libdatadog/commit/59db7092373d33acc833c4ccfc13bbb486554e98))
14+
- Use SECURITY_ANONYMOUS when connecting to named pipe server ([#2134](https://github.com/datadog/libdatadog/issues/2134)) - ([b10b1d4](https://github.com/datadog/libdatadog/commit/b10b1d46577e95e057bd2b310641f965e6167d58))
15+
- Fix timeouts on heavily contended scenarios ([#2093](https://github.com/datadog/libdatadog/issues/2093)) - ([e780619](https://github.com/datadog/libdatadog/commit/e780619d5e0626a8cc161c4cb848057fbbe13533))
16+
17+
### Fixed
18+
19+
- Add fallback logic for resolving Azure Functions instance name [SVLS-8931] ([#2077](https://github.com/datadog/libdatadog/issues/2077)) - ([a820699](https://github.com/datadog/libdatadog/commit/a820699426f28cbabb3a74d87c7309d030b52e7c))
20+
- Fix http PathAndQuery Uri Parsing ([#2122](https://github.com/datadog/libdatadog/issues/2122)) - ([e746d26](https://github.com/datadog/libdatadog/commit/e746d26c489c518db9dc61e112dd8e2db97d0656))
21+
22+
23+
524
## [4.2.0](https://github.com/datadog/libdatadog/compare/libdd-common-v4.1.0..libdd-common-v4.2.0) - 2026-05-29
625

726
### 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 = "4.2.0"
6+
version = "5.0.0"
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
@@ -49,7 +49,7 @@ 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 = "4.2.0", path = "../libdd-common" }
52+
libdd-common = { version = "5.0.0", path = "../libdd-common" }
5353
libdd-telemetry = { version = "5.0.1", path = "../libdd-telemetry" }
5454
http = "1.1"
5555
libc = "0.2"
@@ -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 = "4.2.0", path = "../libdd-common", default-features = false }
88+
libdd-common = { version = "5.0.0", path = "../libdd-common", default-features = false }

libdd-data-pipeline/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tokio = { version = "1.23", features = [
3232
uuid = { version = "1.10.0", features = ["v4"] }
3333
tokio-util = "0.7.11"
3434
libdd-capabilities = { path = "../libdd-capabilities", version = "2.0.0" }
35-
libdd-common = { version = "4.2.0", path = "../libdd-common", default-features = false }
35+
libdd-common = { version = "5.0.0", path = "../libdd-common", default-features = false }
3636
libdd-shared-runtime = { version = "1.0.0", path = "../libdd-shared-runtime", default-features = false }
3737
libdd-telemetry = { version = "5.0.1", path = "../libdd-telemetry", default-features = false, optional = true}
3838
libdd-trace-protobuf = { version = "3.0.2", path = "../libdd-trace-protobuf" }

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 = "4.2.0", path = "../libdd-common", default-features = false }
15+
libdd-common = { version = "5.0.0", 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-http-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fastrand = "2"
2828
tokio = { version = "1.23", features = ["rt", "time"] }
2929
reqwest = { version = "0.13", default-features = false, optional = true }
3030
rustls = { version = "0.23", default-features = false, optional = true }
31-
libdd-common = { version = "4.2.0", path = "../libdd-common", default-features = false, optional = true }
31+
libdd-common = { version = "5.0.0", path = "../libdd-common", default-features = false, optional = true }
3232
hyper = { workspace = true, optional = true }
3333
hyper-util = { workspace = true, optional = true }
3434
http-body-util = { version = "0.1", optional = true }

0 commit comments

Comments
 (0)