Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/code-quality-caller.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -31,3 +31,4 @@ jobs:
# fleet-wide + advisory soak done (backend#1303).
soft-fail: false
all-files: ${{ inputs.all-files || false }}
gitleaks-baseline: .gitleaks-baseline.json
23 changes: 23 additions & 0 deletions .gitleaks-baseline.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
[
{
"RuleID": "generic-api-key",
"Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.",
"StartLine": 212,
"EndLine": 212,
"StartColumn": 4,
"EndColumn": 45,
"Match": "IdempotencyKey: \"REDACTED\"",
"Secret": "REDACTED",
"File": "internal/submit/submit_test.go",
"SymlinkFile": "",
"Commit": "d2754bd0e71bd5363b7c7f51a286b7d705e7928d",
"Link": "https://github.com/tracebloc/cli/blob/d2754bd0e71bd5363b7c7f51a286b7d705e7928d/internal/submit/submit_test.go#L212",
"Entropy": 4.004886,
"Author": "lukasWuttke",
"Email": "54042461+LukasWodka@users.noreply.github.com",
"Date": "2026-07-13T11:27:35Z",
"Message": "feat(push): print the run's correlation id on submit (backend#1028 item 3) (#245)\n\nThe idempotency key the CLI already sends is becoming the end-to-end\ningest correlation id: jobs-manager derives the Job name from it, labels\nevery spawned resource with it, and (client-runtime) stamps it into the\ningestor container as TRACEBLOC_INGEST_CORRELATION_ID, where the\ningestor (data-ingestors) logs it and carries it into the backend\nregistration payload.\n\nThe CLI was the only layer that never showed the key, so the customer\nhad no copy of the one string that threads all layers together. Print\nit as a hint line on every submit path — fresh and replay (a replayed\nrun is exactly when you reach for the id to find the already-running\nJob).\n\nNo wire change: the key was already in the POST body.\n\nCo-authored-by: Claude Fable 5 \u003cnoreply@anthropic.com\u003e",
"Tags": [],
"Fingerprint": "d2754bd0e71bd5363b7c7f51a286b7d705e7928d:internal/submit/submit_test.go:generic-api-key:212"
}
]
Loading