@aresdefencelabs/wasm-http-runtime 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/abi.js +1 -0
  2. package/package.json +1 -1
package/dist/abi.js CHANGED
@@ -115,6 +115,7 @@ export function createAresAbiImports(state) {
115
115
  headers: outbound.headers,
116
116
  body: outbound.body ?? undefined
117
117
  });
118
+ console.log("[AresWasm] abi_http_fetch_blocking fetch completed, status =", response.status);
118
119
  const bodyText = await response.text();
119
120
  const bodyBytes = utf8ByteLength(bodyText);
120
121
  if (bodyBytes > state.options.maxResponseBodyBytes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aresdefencelabs/wasm-http-runtime",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Runtime adapter that connects C++ WebAssembly workers to the Cloudflare Workers runtime via an ABI bridge.",
5
5
  "type": "module",
6
6
  "private": false,