RepoJournal
Local LLMs Local LLMs
59 wires and counting

$ follow Local LLMs

Keep up with Local LLMs in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-07-30
stories 235

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

OLLAMA CLEANS UP LINT PIPELINE AS LLAMA.CPP ADDS SPECULATIVE DRAFTING FOR GLM-5.2

By RepoJournal · Filed · About Local LLMs · Composed from the cited sources · methodology

Ollama's CI now scans the entire codebase instead of just changed lines, unblocking larger PRs that were silently accumulating lint violations across their diffs.

The shift fixes a critical gap in golangci-lint's only-new-issues mode, which filters findings down to touched lines and drops issues introduced at a distance where the report anchors to an untouched line [1]. Daniel Hiltgen's follow-up PR cleans the tree of existing violations so dependent work lands without carrying unrelated fixes [2]. Meanwhile, Jesse Gross improved speculative decoding diagnostics by logging per-request stats at info level instead of debug, capturing every speculative round to surface throughput issues [3]. Across llama.cpp, the project shipped two releases with expanded speculative decoding support: GLM-5.2 now has NextN/MTP drafting via the --spec-type draft-mtp target [4], and RDNA3.5 tuning configs can now be optimized independently [5]. On the performance front, a new SYCL contiguous fast path eliminates redundant 64-bit integer math from unary elementwise ops, cutting SILU kernel time from 3.2 ms down toward the 0.63 ms bandwidth floor [6]. The same release cycle adds MTP draft support for mimo2 architecture, preserving trunk-only GGUFs while building the MiMo-specific graph with fused attention and shared-head fallbacks [7].

Quick answers

What shipped in Local LLMs on July 30, 2026?
Ollama's CI now scans the entire codebase instead of just changed lines, unblocking larger PRs that were silently accumulating lint violations across their diffs. In total, 113 commits, 113 pull requests, and 9 releases landed.
Who contributed to Local LLMs on July 30, 2026?
16 developers shipped this update, including Daniel Hiltgen, Jesse Gross, Xuan-Son Nguyen, Titaniumtown, tnhnyzc, github-actions[bot], Fadi Arafeh, and eicherseiji, and 8 more.
What were the notable Local LLMs updates?
CI: enable lint on the whole tree (#17457), lint: clean up current tree, and mlxrunner: count every speculative round and log stats at info.