| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-01-08 | chore: upgrade nostr-* packages to rev 4767ad13 | DanConwayDev | |
| - Update nostr-relay-builder, nostr-sdk, nostr-lmdb to latest revision - Update grasp-audit nostr-sdk dependency - Fix clippy warnings: - Replace .clone() with std::slice::from_ref() in src/git/sync.rs - Change &PathBuf to &Path in tests/common/git_server.rs - Replace vec![] with array literal in src/purgatory/sync/functions.rs - Update PR_TEST_COMMIT_HASH in grasp-audit due to event generation changes All 249 tests passing, no breaking changes required. | |||
| 2026-01-08 | chore: cargo fmt | DanConwayDev | |
| 2026-01-07 | test: fix hanging unit tests issue | DanConwayDev | |
| 2026-01-07 | test: add WIP SmartHttpServer to test | DanConwayDev | |
| 2026-01-07 | test: add SimpleGitServer helper for dumb HTTP git serving | DanConwayDev | |
| Add a test helper that serves git repositories over HTTP using git's dumb HTTP protocol. This enables integration tests that need to fetch git data from an external URL without requiring a full git HTTP backend. Features: - Creates bare clone of source repository - Runs git update-server-info to generate required metadata - Serves static files over HTTP using hyper - Automatic cleanup on drop - Path traversal protection Tests included: - Server starts and stops correctly - info/refs endpoint is accessible - git ls-remote works against server - git fetch works against server - Path traversal is blocked This helper will be used in Phase 3 to test PR clone tag sync, where the PR event's clone URL points to an external git server that is NOT an ngit-grasp relay. | |||