diff --git a/CHANGELOG.md b/CHANGELOG.md index 304890b..751229a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.4.1 + +#### 🐞 Fixes + +- Potentially fixed a WASM memory issue. + ## 0.4.0 #### 🚀 Updates diff --git a/Cargo.lock b/Cargo.lock index c5498dc..22ac06d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2456,7 +2456,7 @@ dependencies = [ [[package]] name = "schema_plugin" -version = "0.4.0" +version = "0.4.1" dependencies = [ "extism-pdk", "proto_pdk", diff --git a/Cargo.toml b/Cargo.toml index e0c22cf..1a8e2be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schema_plugin" -version = "0.4.0" +version = "0.4.1" edition = "2021" license = "MIT" publish = false diff --git a/src/proto.rs b/src/proto.rs index f423a76..e189692 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -196,7 +196,7 @@ pub fn load_versions(Json(_): Json) -> FnResult = fetch_url_with_cache(endpoint)?; + let response: Vec = fetch_url(endpoint)?; let version_key = &schema.resolve.manifest_version_key; let mut versions = vec![];