New
Abseil LTS branch, January 2026
Abseil LTS 20260107.0
What's New
absl::StringResizeAndOverwrite(): A new function inabsl/strings/resize_and_overwrite.hthat acts as a polyfill for C++23'sstd::basic_string::resize_and_overwrite. This allows for efficient resizing and in-place initialization of strings, avoiding the overhead of default initialization, which is particularly useful when working with C-style APIs that write directly to a buffer. See https://github.com/abseil/abseil-cpp/issues/1136#issuecomment-3498884715 for performance notes.absl::chunked_queue: A new container in optimized for use as a FIFO (First-In, First-Out) queue.