Go 1.26 Ships with Green Tea Garbage Collector Enabled by Default
Go 1.26 enables the Green Tea garbage collector by default, delivering 10-40% lower GC overhead for most programs, alongside a 30% reduction in cgo call overhead and a new crypto/hpke package for post-quantum encryption.
Go 1.26 was released on February 10, 2026, with the Green Tea garbage collector enabled by default — the headline feature of a release that delivers broad performance improvements for backend services and cloud-native workloads.
Green Tea Garbage Collector
The Green Tea GC, which has been in development for several years and was available as an experimental option in Go 1.25, is now the default for all Go programs. Most programs with significant GC workloads should see 10-40% lower garbage collection overhead, which translates directly to lower tail latencies and more consistent response times for network services, API servers, and data processing pipelines.
The improvement is particularly significant for Go's core constituency: backend services running in Kubernetes, API gateways, and microservices that handle high request volumes. GC pause latency is one of the primary performance constraints in garbage-collected languages, and a 10-40% reduction in GC overhead means that Go services can handle more requests per instance with less variance in response times — reducing both infrastructure costs and the frequency of latency-related alerts.
cgo Performance
The overhead of calling C code from Go through cgo was reduced by approximately 30%. This benefits any Go application that interfaces with C libraries — including database drivers, graphics libraries, and system-level APIs that do not have pure Go implementations. The cgo overhead reduction is cumulative with the GC improvements, meaning that Go applications calling C code frequently will see compounded performance gains.
Language Changes
Go 1.26 introduces two language changes. The built-in new function now accepts expressions as operands, allowing syntax like new(int64(300)) that was previously a compilation error. Generic types may now reference themselves in their own type parameter list, enabling self-referential generic types that are useful for implementing tree structures, linked lists, and other recursive data types in a type-safe manner.
New Packages and Tooling
A new experimental simd/archsimd package provides architecture-specific SIMD (Single Instruction, Multiple Data) operations, enabling Go programs to use CPU vector instructions for data-parallel operations. The new crypto/hpke package implements Hybrid Public Key Encryption (RFC 9180) with support for post-quantum hybrid KEMs, preparing Go's cryptographic library for the eventual transition to post-quantum cryptography.
The go fix command was completely rewritten using the Go analysis framework with "modernizers" that suggest safe code upgrades — replacing deprecated API calls with their modern equivalents and applying other mechanical improvements that can be applied automatically without changing program behavior.
Related Articles
Redis 8.4 Brings Hybrid Search, Atomic Multi-Key Operations, and Auto-Repair AOF
Redis 8.4 is now generally available, delivering hybrid search that combines full-text and vector queries using Reciprocal Rank Fusion, new atomic string commands like MSETEX and DELEX, and automatic repair for corrupted append-only files. Lookahead prefetching and JSON memory optimizations round out a performance-focused release.
Deno 2.7 Stabilizes Temporal API and Ships Native Windows ARM Builds
Deno 2.7 has stabilized the TC39 Temporal API, bringing immutable, timezone-aware date and time objects to replace the legacy JavaScript Date API. The release also delivers official Windows ARM builds for Surface and Snapdragon devices, npm overrides support, and global install compilation for standalone executables.
Laravel 13 Ships with PHP Attributes, Passkeys, and Zero Breaking Changes
Taylor Otwell unveiled Laravel 13 at Laracon EU, delivering PHP 8 Attributes as an alternative to class properties, built-in passkey authentication in starter kits, and a new Reverb database driver for horizontal WebSocket scaling. The release requires PHP 8.3+ and promises the smoothest upgrade path in Laravel history.