Python 3.14.2 Released with Template Strings and Free-Threading Support
Latest bugfix release advances t-strings (PEP 750) and free-threaded mode, with official Android binaries now available.
Python 3.14.2 has been released, continuing the evolution of Python's most feature-rich version. This bugfix release advances template string literals, free-threaded mode, and brings official Android binary releases for the first time.
Template Strings Progress
PEP 750's template string literals (t-strings) continue maturing, offering developers a way to create custom string processing using f-string-like syntax. This feature enables safer string handling for SQL queries, HTML generation, and other contexts where string interpolation needs custom processing.
Free-Threading Advances
The "no GIL" dream (PEP 703) keeps maturing in Python 3.14. The adaptive specializing interpreter now runs properly in free-threaded mode, with the single-thread penalty reduced to just 5-10%. PEP 779 officially marks free-threaded Python as supported, giving teams confidence to experiment with true parallelism.
Official Android Support
For the first time, official Android binary releases are available for Python. Combined with PEP 776's tier-3 support for Emscripten, Python continues expanding beyond traditional desktop and server environments into mobile and web platforms.
Additional Improvements
Python 3.14.2 includes the experimental JIT compiler in official macOS and Windows binaries. The new tail-call interpreter provides 3-5% performance improvements on standard benchmarks when using Clang 19+ on x86-64 and AArch64 architectures.
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.