V0.1.1 release, close to actual release. Bug & security fixes/improvements.

This commit is contained in:
unknown
2026-05-24 19:29:41 +02:00
parent a7b44af91a
commit b004e15948
38 changed files with 3145 additions and 137 deletions

46
agent1_batch5_9.md Normal file
View File

@@ -0,0 +1,46 @@
# Verification Report: Server-Side Features (Batches 59)
## 1. Deduplication + Hash Blacklist (Batch 8)
**File:** `crates/cgcx-file-pipeline/src/lib.rs`
| Check | Status | Line(s) | Notes |
|-------|--------|---------|-------|
| `plaintext_hash` computed during encryption | **PASS** | ~69, ~89, ~95 | `blake3::Hasher` updated in the encryption loop; finalized after the stream is complete. |
| `find_active_by_plaintext_hash` checked before storing new files | **PASS** | ~103 | Deduplication lookup occurs after blacklist check and before persisting to disk. |
| `HashBlacklistRepo::contains` checked and returns `BlockedHash` | **PASS** | ~99101 | Blacklist is enforced *before* deduplication. On match, temp file is dropped and `CgcxError::BlockedHash` is returned. |
**No issues found.** The order (blacklist → dedup → persist) is correct and safe.
---
## 2. View-Count / Raw-File Fix (Batch 4 Follow-Up)
**File:** `crates/cgcx-server/src/main.rs`
| Check | Status | Line(s) | Notes |
|-------|--------|---------|-------|
| `serve_raw_file` increments views correctly | **PASS** | ~996 | Diff confirms `method: Method` parameter was added; view increment is guarded by `if !is_head` (same pattern as `serve_file` at line ~825). |
**No issues found.** `serve_raw_file` now mirrors `serve_file`s view-counting behavior, including the 30-second delayed cleanup when `max_views` is reached.
---
## 3. Metadata / Author Visibility (Batch 7)
**File:** `crates/cgcx-server/src/main.rs`
| Check | Status | Line(s) | Notes |
|-------|--------|---------|-------|
| `get_metadata` returns `author` only when `show_author` is true | **PASS** | ~530543 | `author` is set to `Some(AuthorInfo { ... })` only when `content.show_author` is `true`; otherwise `None`. |
**No issues found.** The `ContentMetadata` struct also includes the new `total_size` field (line ~556).
---
## Summary
| Feature | Result |
|---------|--------|
| Deduplication + Hash Blacklist | ✅ PASS |
| View-Count / Raw-File Fix | ✅ PASS |
| Metadata / Author Visibility | ✅ PASS |
No blocking issues or deviations from the approved design were identified.