
GitHub has released weekly updates for Copilot featuring new model selection tiers and deeper integration with Sentry. Users can now choose between efficiency, balance, and intelligence modes to control cost and latency. The update also introduces a Sentry canvas that allows developers to investigate production crashes and generate fixes directly in the IDE. Additionally, agent usage metrics are generally available for enterprise reporting, and automatic session cleanup is now in preview.
Read original
© GitHub ChangelogGitHub Copilot’s code review tool has reached general availability, shifting from experimental to a core part of the pull request workflow. The biggest leap is auto-resolution: Copilot now validates whether its own suggestions were actually fixed by subsequent commits and closes them out automatically, saving developers from manual cleanup. It also groups findings into clear states like 'Resolved' or 'Previously missed,' giving a real-time health check of the PR rather than just a static list of errors. This reduces context switching significantly, letting engineers focus on new issues while the AI handles the administrative burden of closing old ones.
© GitHub ChangelogGitHub finally exposes the code coverage ruleset option via its REST API, closing a long-standing gap between UI configuration and programmatic control. This change allows teams to enforce minimum line coverage or maximum tolerable drops directly within infrastructure-as-code workflows, eliminating the need for manual web interface adjustments across multiple repositories. By bringing this enforcement mechanism into the automation pipeline, organizations can now treat code quality gates with the same rigor as security policies. It is a practical step toward consistent, scalable quality management on GitHub Enterprise Cloud and Team plans.
© GitHub ChangelogGitHub is quietly pruning its model lineup by deprecating selected legacy models across all Copilot experiences on October 19th, 2026. This forces a migration to newer alternatives for both Enterprise and Business customers, with automatic enablement unless administrators have explicitly disabled global defaults. The move signals a strategic consolidation of the underlying inference stack, reducing maintenance overhead while pushing users toward more capable or cost-effective options. Developers relying on specific older model behaviors in their workflows need to audit their integrations now rather than waiting for the cutoff.
This release quietly closes the hardware gap for local inference by adding default builds for CUDA 13 and ROCm 10.0. NVIDIA users on newer driver stacks can finally run without workarounds, while AMD GPU owners get parity with the latest ROCm version. Apple Silicon support is explicitly disabled in this build, a notable regression for Mac users who need to wait for the next patch. The inclusion of OpenVINO and SYCL builds further cements llama.cpp as the universal runtime for diverse hardware, ensuring no major accelerator is left behind.
This release prioritizes stability over new features, addressing critical correctness issues in vector handling for GET_ROWS operations. By fixing vec4 alignment checks and updating CUDA libraries to versions 12.8 and 13.3, it ensures reliable performance across NVIDIA hardware on both Linux and Windows. The inclusion of ROCm 10.0 builds further solidifies AMD GPU support without requiring complex configuration. While no new model architectures are added, these fixes prevent silent corruption in local inference tasks that could otherwise go unnoticed.
This release finally closes a gap in how llama.cpp handles sliding window attention patterns during model conversion. Previously, loaders silently ignored array-based SWA configurations from models like OLMo2 and Gemma3n, relying on hardcoded defaults that masked potential precision loss. The new Model-Saver now explicitly writes per-layer SWA flags and MLA geometry, ensuring bit-exact roundtrips for a dozen architectures including Plamo3 and Cohere2. This matters because it guarantees that converted GGUF files preserve the exact inference behavior of their original checkpoints, eliminating silent degradation for complex attention mechanisms.