WebAssembly 3.0 final — GC, 64‑bit memory, multi‑memory and exceptions land
Key update
The WebAssembly community published the final WebAssembly 3.0 standard, which brings several long‑awaited, engine‑level features: native garbage collection (Wasm GC), 64‑bit linear memories (removing the ~4GB barrier for non‑web embeddings), multiple memories per module, richer typed references and call_ref, native exception handling, relaxed SIMD variants and a deterministic execution profile. These are not small surface changes — they fundamentally expand what languages and workloads are practical to compile to and run as Wasm, both in browsers and in standalone runtimes. (webassembly.org)
Why it matters
Practically, Wasm 3.0 turns WebAssembly from a low‑level, systems‑style compilation target into a realistic platform for garbage‑collected, high‑level languages (Java, Kotlin, C#, etc.) without bundling a full language runtime in every module. Native GC plus typed references lets compilers emit much smaller, faster Wasm modules and removes a big barrier for language adoption. The 64‑bit memory and multiple‑memory features make Wasm viable for large in‑memory workloads and support true static linking and memory isolation patterns that matter for sandboxing and instrumentation.
For backend and DevOps workflows this changes the calculus: Wasm can now be a first‑class option for sandboxed microservices, plugin sandboxes, and edge functions where safety, fast startup and binary portability matter. That will affect how teams think about deployment (smaller, language‑portable artifacts vs. full container images), CI images (runtimes like Wasmtime/Wasmer will need to be tracked), and observability/security tooling.
For front‑end and build tooling (Vite, bundlers, TypeScript workflows) the ecosystem will need updates to handle new Wasm outputs and to interop cleanly with exception handling and reference types. Runtimes and toolchains (Node/Deno/Bun, bundlers, and polyfills) will lag engine support at first, so expect a period where experimentation is practical but production adoption requires checking engine feature matrices and updating CI/bundles accordingly.
Immediate practical actions for teams: evaluate the new feature availability in the specific browsers and standalone Wasm engines you target; prototype compiling any performance‑sensitive or sandboxed components to Wasm to measure size and performance benefits; and track the Wasm engine and toolchain release notes to plan when to move experimental workloads into production.
Source
Read Next
TypeScript's native Go port (Project Corsa) delivers ~10× type-check speedups
November 29, 2025Microsoft's TypeScript team has ported the compiler and language service to Go (Project Corsa), producing large, real-world speed and memory improvements and shipping native previews for early testing.
Node.js marks built-in TypeScript type‑stripping stable (v25.2.0)
November 28, 2025Node.js v25.2.0 (Nov 11, 2025) promotes runtime TypeScript 'type stripping' to stable — run many .ts files with node directly, with important practical caveats.
Docker patches critical RCE in nested dependency, upstreams fix to LangChain.js
November 27, 2025Docker found and fixed a critical RCE (CVE-2025-12735) rooted in the expr-eval dependency, replaced it with a maintained alternative, and contributed the fix upstream to LangChain.js—affecting Kibana and many LLM apps.