Skip to content

Commit 57704bc

Browse files
committed
Merge branch 'main' of github.com:DataDog/libdatadog into paullgdc/remote_config/agentless_fetcher
* 'main' of github.com:DataDog/libdatadog: feat(data-pipeline)!: add flush_and_close to the trace buffer (#2313) refactor(rc)!: make conversion from RemoteConfigProduct back and forth generally available (#2325) chore: release v40.0.0 (#2326) feat(datadog-ffe): server-side EVP flagevaluation payload + bincode-safe sidecar delivery (#2117) feat(data-pipeline): set structured span values (#2300) feat(telemetry)!: Add Installation signature and AppProduct changes payloads (#2213) fix(libdd-trace-utils): apply SpanLink flags masking when v0.5 json encoding (#2314) feat(data-pipeline): encode structured values (#2304) feat(crashtracking): send debug log when no data is received at all (#2321) chore: release v39.0.0 (#2324) feat(data-pipeline): add span links FFI (#2305) fix(crashtracking): check fields and exclude uuid for `has_data` (#2322) feat(data-pipeline): add span events FFI (#2301)
2 parents 18074d7 + fbdace3 commit 57704bc

69 files changed

Lines changed: 7649 additions & 471 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release-proposal-dispatch.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ jobs:
433433
run: |
434434
# Get commits since release for each crate and save to file
435435
"${WORKFLOW_SCRIPTS_ROOT}/commits-since-release.sh" "$(cat /tmp/crates.json)" > /tmp/commits-by-crate.json
436-
436+
437437
# Capture ephemeral release branch tip now. Use this in Release version bumps
438438
# so tag/merge-base resolution uses the same ref the script used.
439439
git rev-parse HEAD > /tmp/release_head_sha
@@ -1011,7 +1011,6 @@ jobs:
10111011
if [ "${#PR_TITLE}" -gt 100 ]; then
10121012
PR_TITLE="${PR_TITLE:0:97}..."
10131013
fi
1014-
10151014
if gh pr create \
10161015
--head "$BRANCH_NAME" \
10171016
--title "$PR_TITLE" \

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ resolver = "2"
8080
[workspace.package]
8181
rust-version = "1.87.0"
8282
edition = "2021"
83-
version = "38.0.0"
83+
version = "40.0.0"
8484
license = "Apache-2.0"
8585
authors = ["Datadog Inc. <info@datadoghq.com>"]
8686

datadog-live-debugger/src/remote_config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::probe_defs::LiveDebuggingData;
55
use libdd_remote_config::{ParseError, RemoteConfigContent, RemoteConfigProduct};
66

77
impl RemoteConfigContent for LiveDebuggingData {
8-
const PRODUCT: RemoteConfigProduct = RemoteConfigProduct::LiveDebugger;
8+
const PRODUCT: RemoteConfigProduct = RemoteConfigProduct::LiveDebugging;
99

1010
fn parse(data: &[u8]) -> Result<Self, ParseError> {
1111
crate::parse_json::parse(&String::from_utf8_lossy(data))

0 commit comments

Comments
 (0)