Fixed
- v0.7.5 BD ISO backfill silently matched zero rows. The selector used a SQL
LIKE '%"language":"und"%'clause (no spaces) butjson.dumps()defaults to(', ', ': ')separators, so production rows always store"language": "und"with a space after the colon. The sweep ran on every fresh install, pulled zero candidates, set the idempotency flag, and exited — no log line, no error, no update. v0.7.6 drops the SQL JSON LIKE clause entirely and does all language-shape filtering in Python where the parse is correct regardless of separator style. A new flag name (iso_lang_backfilled_v076) re-runs the sweep on installs that already had the broken v0.7.5 flag set. Adds a regression test that constructs fixtures via the productionjson.dumpsserializer so this class of bug can't slip past again.
Docker images
Pinned to this release:
docker pull ghcr.io/i-ial9000/shrinkerr:0.7.6 # portable (amd64 + arm64, CPU)
docker pull ghcr.io/i-ial9000/shrinkerr:0.7.6-nvenc # x86_64 + NVIDIA GPU (NVENC)
docker pull ghcr.io/i-ial9000/shrinkerr:0.7.6-edge # as above but ffmpeg master
docker pull ghcr.io/i-ial9000/shrinkerr:0.7.6-edge-nvencFloating tags (:latest, :edge, :nvenc, :edge-nvenc) track the most recent release of each lineage.