Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6b761fb
feat: agentless RC fetcher
paullegranddc Jun 12, 2026
1b42d8a
fix: cleanup code
paullegranddc Jun 15, 2026
b88902e
fix: typos
paullegranddc Jun 15, 2026
d4767a3
fix: trim rc target path
paullegranddc Jun 15, 2026
02bb2ad
fix: respect agent refresh interval
paullegranddc Jun 17, 2026
d7468ec
feat: add extra TUF trust root
paullegranddc Jun 18, 2026
f1c5785
remove extra file
paullegranddc Jun 18, 2026
d734ac0
feat: get agent uuid from host
paullegranddc Jun 19, 2026
2ac515a
fix: always emit a lowercased uuid
paullegranddc Jun 19, 2026
1baa6e1
fix: remove intermediary cache
paullegranddc Jun 22, 2026
45eac96
fix: remove debug statemements
paullegranddc Jun 22, 2026
f16100e
remove unduplicated deps
paullegranddc Jun 22, 2026
348afbd
Merge branch 'main' into paullgdc/remote_config/agentless_fetcher
paullegranddc Jun 22, 2026
d263f05
fix:feature gate agntless and fix ubunut tests
paullegranddc Jun 23, 2026
98e2d48
fix: feature gate more thngs
paullegranddc Jun 23, 2026
f716774
fix: feature gate the right way
paullegranddc Jun 23, 2026
54b4e97
fix: path import
paullegranddc Jun 23, 2026
66a32a1
fix: add timeout
paullegranddc Jun 25, 2026
14997c6
Merge branch 'main' into paullgdc/remote_config/agentless_fetcher
paullegranddc Jun 25, 2026
368ddab
feat: macro bench example
paullegranddc Jun 25, 2026
1a812da
Merge branch 'main' into paullgdc/remote_config/agentless_fetcher
paullegranddc Jun 29, 2026
3871300
feat: check delegations
paullegranddc Jul 1, 2026
b4ccbf4
fix: agent numeric type compatibility
paullegranddc Jul 1, 2026
34ed6cd
fix: try to survive rc root rotation
paullegranddc Jul 2, 2026
66d6572
fix: ignore path that we cant parse
paullegranddc Jul 2, 2026
03d034f
fix: check that all paths match
paullegranddc Jul 2, 2026
443ee87
fix: reduce comment velocity
paullegranddc Jul 6, 2026
1f0cee1
fix: fmt
paullegranddc Jul 6, 2026
97c7e24
feat: bump rust-tuf to get 64 bits integers
paullegranddc Jul 6, 2026
610ba14
feat: cross check ourg uuid
paullegranddc Jul 7, 2026
c27c02a
fix: use host for agentles endpoint rather than authority
paullegranddc Jul 7, 2026
16c27f8
Merge branch 'main' into paullgdc/remote_config/agentless_fetcher
paullegranddc Jul 7, 2026
60463a2
fix: remove leftover debug statements
paullegranddc Jul 7, 2026
6aeae54
fix: only reset backoff after successful apply
paullegranddc Jul 7, 2026
345070e
fix: enable longpaths when running clippy
paullegranddc Jul 7, 2026
4e5385e
fix: try 2nd solution
paullegranddc Jul 7, 2026
3b17f6e
fix: fetch options
paullegranddc Jul 7, 2026
24fc159
try ffi with just git enabled
paullegranddc Jul 7, 2026
9d0ce93
try same solution with clippy
paullegranddc Jul 7, 2026
a07c02d
ci: enable git core.longpaths on Windows test job
paullegranddc Jul 8, 2026
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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ jobs:
run: |
if [[ "${{ matrix.platform }}" == "windows-latest" ]]; then
export AWS_LC_FIPS_SYS_NO_ASM=1
git config --global core.longpaths true
fi
if [[ -z "$CLIPPY_PACKAGES" ]]; then
cargo clippy --workspace --all-targets --all-features -- -D warnings
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-ffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ jobs:
env:
RUSTFLAGS: "${{ matrix.flags }}"
run: |
if [[ "${{ matrix.platform }}" == "windows-latest" ]]; then
git config --global core.longpaths true
fi
cargo run --bin release --release -- --out $LIBDD_OUTPUT_FOLDER
- name: 'Publish libdatadog'
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # 4.6.1
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ jobs:
- name: "Remove nextest CI report"
shell: bash
run: rm -rf target/nextest/ci/junit.xml
- name: Configure git long paths (Windows)
if: runner.os == 'Windows'
run: git config --global core.longpaths true
- name: "[${{ steps.rust-version.outputs.version}}] cargo build"
shell: bash
run: |
Expand Down
Loading