Merge branch 'feat/ranged-archive-listing' into main

# Conflicts:
#	.env.example
#	backup/Dockerfile
#	docker-compose.yml
This commit is contained in:
2026-07-31 04:24:58 +02:00
49 changed files with 7768 additions and 1627 deletions
@@ -0,0 +1,5 @@
-- AlterTable: count of packages whose provenance was backfilled during a run
-- (opportunistic cross-channel provenance backfill). Additive, non-null with a
-- default of 0 — no data change for existing rows.
ALTER TABLE "ingestion_runs"
ADD COLUMN "zipsBackfilled" INTEGER NOT NULL DEFAULT 0;
+1
View File
@@ -569,6 +569,7 @@ model IngestionRun {
zipsFound Int @default(0)
zipsDuplicate Int @default(0)
zipsIngested Int @default(0)
zipsBackfilled Int @default(0)
errorMessage String?
// Live activity tracking — written by worker in real-time