downgrade wolfssl to work around a regression

This commit is contained in:
ading2210 2024-09-06 20:20:17 -04:00
parent 23dd3bd981
commit 754b211c59
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
# Libcurl.js Changelog: # 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): ## v0.6.14 (9/4/24):
- All dependencies have been updated to the latest versions - All dependencies have been updated to the latest versions
- `libcurl.load_wasm` now returns a promise that resolves when the WASM has finished loading - `libcurl.load_wasm` now returns a promise that resolves when the WASM has finished loading

View file

@ -1,6 +1,6 @@
{ {
"name": "libcurl.js", "name": "libcurl.js",
"version": "0.6.14", "version": "0.6.15",
"description": "An experimental port of libcurl to WebAssembly for use in the browser.", "description": "An experimental port of libcurl to WebAssembly for use in the browser.",
"main": "libcurl.mjs", "main": "libcurl.mjs",
"exports": { "exports": {

View file

@ -12,7 +12,7 @@ mkdir -p $PREFIX
cd build cd build
rm -rf wolfssl 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 cd wolfssl
autoreconf -fi autoreconf -fi