The llama.cpp project released build b10715, which includes a key optimization to the DFlash implementation. The DFlash encoder is now fused directly into the KV cache injection process during decoding.

Previously, running the encoder as a separate `llama_encode` call forced a device-to-host round trip for its output before the injection decode could re-upload it, along with a second graph build per round. This change folds the encoder into the decoder's embedding branch, allowing target features to be fed directly to a single `llama_decode` call.

The release provides binaries for macOS (Apple Silicon and Intel), iOS, Linux (CPU, Vulkan, ROCm, OpenVINO, SYCL), Android, Windows (CPU, CUDA 12/13, Vulkan, OpenVINO, SYCL, ROCm), and openEuler.