From 754b211c59978ae57a14dd5c863983489a793866 Mon Sep 17 00:00:00 2001 From: ading2210 Date: Fri, 6 Sep 2024 20:20:17 -0400 Subject: [PATCH] downgrade wolfssl to work around a regression --- CHANGELOG.md | 3 +++ client/package.json | 2 +- client/tools/wolfssl.sh | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cac7d9..a2d05b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Libcurl.js Changelog: +## v0.6.15 (9/6/24): +- WolfSSL has been downgraded to v5.6.6 due to an upstream regression + ## v0.6.14 (9/4/24): - All dependencies have been updated to the latest versions - `libcurl.load_wasm` now returns a promise that resolves when the WASM has finished loading diff --git a/client/package.json b/client/package.json index 8a647e0..1238adf 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "libcurl.js", - "version": "0.6.14", + "version": "0.6.15", "description": "An experimental port of libcurl to WebAssembly for use in the browser.", "main": "libcurl.mjs", "exports": { diff --git a/client/tools/wolfssl.sh b/client/tools/wolfssl.sh index 9cb76f7..897da09 100755 --- a/client/tools/wolfssl.sh +++ b/client/tools/wolfssl.sh @@ -12,7 +12,7 @@ mkdir -p $PREFIX cd build rm -rf wolfssl -git clone -b v5.7.2-stable --depth=1 https://github.com/wolfSSL/wolfssl wolfssl +git clone -b v5.6.6-stable --depth=1 https://github.com/wolfSSL/wolfssl wolfssl cd wolfssl autoreconf -fi