Svelte February 2026: Custom Select Elements and Remote Functions
Svelte's February 2026 update introduces custom select elements with remote data fetching, new button props for remote functions, and improvements to Node and Vercel adapters.
The Svelte team released its February 2026 update, bringing several developer-requested features to the popular JavaScript framework. The update focuses on form handling improvements, with new custom select element capabilities and enhanced support for remote function calls through SvelteKit.
Custom Select Elements
Svelte now provides first-class support for custom select components with built-in remote data fetching capabilities. Developers can specify a fetch property with a URL for loading options from remote APIs, ideal for applications with large or dynamically changing datasets. The implementation includes intelligent optimizations like configurable debounce times and minimum query length parameters to minimize unnecessary API calls during user input. This feature aligns Svelte with popular community libraries like Svelecte and svelte-select while providing a standardized approach in the core framework.
Remote Functions Enhancement
SvelteKit's remote functions now support button props with enhanced form handling. The buttonProps property includes an enhance method for customizing submission behavior, and developers can use the formaction attribute to allow different buttons within a single form to submit to different endpoints. This enables patterns like a single form handling both login and registration depending on which button the user clicks, improving code organization and reducing duplication.
Adapter Improvements
The update includes refinements to the Node and Vercel adapters, improving deployment experiences across hosting platforms. These changes address edge cases in server-side rendering and optimize build outputs for production deployments. The full release notes are available on the official Svelte blog, with migration guides for teams upgrading from previous versions.
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.