WebKit Features for Safari 26.6
WebKit ·
Safari 26.6 is here.
Safari 26.6 is here. This release adds a small refinement to WebAssembly’s streaming compilation paths, and delivers eight bug fixes across CSS, service workers, networking, extensions, and WebRTC.
This release continues the ongoing focus of this entire year — polishing how features fit together, and resolving issues you might have run into as a web developer.
WebKit for Safari 26.6 adds a compileOptions parameter to WebAssembly.compileStreaming() and WebAssembly.instantiateStreaming() .
Safari 26.2 shipped support for Wasm JS String Builtins — a way for WebAssembly modules to import a set of standardized JavaScript string operations as builtins, which the engine can then optimize much more aggressively than a normal JS import. To turn them on, you pass an options object to WebAssembly.compile() or WebAssembly.instantiate() .
The two streaming variants ( compileStreaming() and instantiateStreaming() ) didn’t yet accept that same options object. Now they do.
const module = await WebAssembly . compileStreaming ( fetch ( "example.wasm" ), { builtins : [ "js-string" ] } ); Now you don’t have to fall back from streaming compilation to use JS String Builtins.
In addition to the WebAssembly update, WebKit for Safari 26.6 includes eight bug fixes:
Safari 26.6 is available on iOS 26.6, iPadOS 26.6, visionOS 26.6, macOS Tahoe 26.6, macOS Sequoia, and macOS Sonoma. On iOS, iPadOS, and visionOS, you can update to Safari 26.6 as part of the OS update in Settings > General > Software Update. On macOS, Safari updates are delivered through System Settings > General > Software Update.
We love hearing from you. To share your thoughts, find us online: Jen Simmons on Bluesky / Mastodon , Saron Yitbarek on Bluesky / Mastodon , and Jon Davis on Bluesky / Mastodon . You can follow WebKit on LinkedIn .
If you run into any issues, we welcome your bug report . Filing issues really does make a difference.
You can also find this information in the Safari release notes .