From 9902cd54ce7a8bddd6af09dd5a165c5ad04b05da Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 11 Mar 2025 19:22:31 -0400 Subject: [PATCH] extension_host: Remove restriction of extension API v0.3.0 to development builds (#26498) Forgot to do this in #26495. Release Notes: - N/A --- crates/extension_host/src/wasm_host/wit.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/extension_host/src/wasm_host/wit.rs b/crates/extension_host/src/wasm_host/wit.rs index 0e5f9e2a1b..03d0387ce0 100644 --- a/crates/extension_host/src/wasm_host/wit.rs +++ b/crates/extension_host/src/wasm_host/wit.rs @@ -108,8 +108,6 @@ impl Extension { let _ = release_channel; if version >= latest::MIN_VERSION { - authorize_access_to_unreleased_wasm_api_version(release_channel)?; - let extension = latest::Extension::instantiate_async(store, component, latest::linker()) .await