Commit Graph

104 Commits

Author SHA1 Message Date
Christien Rioux bb78723ce8 Merge branch 'clarify-wasm-limitations' into 'main'
Clarify that WASM bootstrap uses ws, not wss or DNS

See merge request veilid/veilid!205
2023-10-07 19:16:00 +00:00
Christien Rioux 0464b92f3d Merge branch 'firefox_snap' into 'main'
allow testing with Firefox snap

See merge request veilid/veilid!210
2023-10-07 19:10:11 +00:00
Mike Phipps 2dbd793878 The wasm_build.sh script is now more resilient to failures in finding llvm-dwarfdump 2023-10-01 15:57:58 -04:00
Derrick Oswald 15e4b75986 allow testing with Firefox snap
The snap version of Firefox cannot write to the /tmp location.
Recommended workaround is to set TMPDIR environment variable to location that both geckodriver and firefox can write to e.g. $HOME/tmp.
See https://github.com/mozilla/geckodriver/releases/tag/v0.31.0 and https://github.com/mozilla/geckodriver/issues/2010

This change adds the TMPDIR environment to allow testing with the Snap version of Firefox.
The downside is a possibly orphan directory (~/tmp) containing geckodriver and v8-compile-cache-1000.
2023-09-29 10:33:04 +02:00
Rivka Segan 7c0a06b630 Clarify that WASM bootstrap uses ws, not wss or DNS
This fixes the logic error of "bootstrapping via TXT record also will
work."

This also adds a clarification that, because DNS is unavailable, the
only option today is ws:// (Veilid currently does not allow wss://
with an IP address. Specifically, try_wss will fail with
apibail_parse_error! and then RPCError::map_protocol.) This
clarification saves time for any users who would otherwise be tempted
to get a certificate for an IP address (at least one free Certificate
Authority supports this, and the resulting certificate can be added
to a veilid-server configuration.)

try_wss failure:
https://gitlab.com/veilid/veilid/-/blob/bd4b4233bfed5bdca4da3cacda3ad960e28daab5/veilid-core/src/network_manager/types/dial_info/mod.rs#L199-L202
https://gitlab.com/veilid/veilid/-/blob/bd4b4233bfed5bdca4da3cacda3ad960e28daab5/veilid-core/src/rpc_processor/coders/dial_info.rs#L52-L56

see also:
https://gitlab.com/veilid/veilid/-/blob/bd4b4233bfed5bdca4da3cacda3ad960e28daab5/veilid-core/src/network_manager/types/dial_info/mod.rs#L58-L59

In addition, several spelling errors are fixed.
2023-09-27 05:46:22 +00:00
Brandon Vandegrift 1af71e7154 (wasm) re-export helpful length constants 2023-09-24 14:47:22 -04:00
Brandon Vandegrift 80afa19678 (wasm) Treat arbitrary byte data as Uint8Array, instead of base64url marshalling. 2023-09-20 00:46:45 -04:00
Christien Rioux a7b073cddb Merge branch 'feature/wasm-tests' into 'main'
(wasm) webdriver-based tests for JS/TS apis

See merge request veilid/veilid!175
2023-09-19 01:03:08 +00:00
Christien Rioux 563b80e31c Merge branch 'clippy-fixes' into 'main'
Clippy fixes

See merge request veilid/veilid!195
2023-09-19 00:43:41 +00:00
Christien Rioux 20451af880 more clippy 2023-09-18 19:49:57 -04:00
Christien Rioux 6438a64fc7 clippy work 2023-09-17 19:37:02 -04:00
Brandon Vandegrift 40a1c9933c (wasm) webdriver-based tests for JS/TS apis, update README 2023-09-17 18:17:24 -04:00
TC Johnson fa13f95a10 Version update: v0.2.2 → v0.2.3
- Security fix for WS denial of service
- Support for latest Rust 1.72
2023-09-17 13:21:57 -05:00
John Smith d60c296303 cargo upgrades 2023-09-16 21:56:19 -04:00
TC Johnson 06c0abead8 Version update: v0.2.1 → v0.2.2 2023-09-16 17:32:16 -05:00
Christien Rioux 960a4cb964 Revert "version bump fix"
This reverts commit 2d291b86b64542845bc10c092e8ad6a78e8b85df.
2023-09-16 16:51:59 -04:00
Christien Rioux ba72aa9dd3 version bump fix 2023-09-16 16:51:59 -04:00
Christien Rioux ad47e400ed build fixes 2023-09-16 16:51:58 -04:00
Brandon Vandegrift ac8bbe9a83 Replace .unwrap() with ? operator 2023-09-12 08:06:49 -04:00
Brandon Vandegrift c2c607efac (wasm) Better TS types for serialized structs, RoutingContext++, more crypto fns 2023-09-11 18:42:05 -04:00
Brandon Vandegrift 5aeda006a4 (wasm) basic working unit tests 2023-09-04 22:13:58 -04:00
Brandon Vandegrift 6b7301a963 (wasm) Improved memory management, track by struct so drop works, use --weak-ref for wasm-bindgen 2023-09-04 17:34:49 -04:00
Brandon Vandegrift 93963e9d08 (wasm) Cleanup and refactoring, add TableDB transactions, copy over docs for JSDoc. 2023-09-04 14:04:57 -04:00
Brandon Vandegrift ca11f6075d (wasm) Add VeilidCrypto class, refine interfaces for VeilidRoutingContext 2023-09-03 23:27:20 -04:00
Brandon Vandegrift c5d7922fc5 Add VeilidRoutingContext class for WASM 2023-09-03 23:27:20 -04:00
Christien Rioux 9aeec3cfa8 build fixes and cleanup 2023-09-03 23:27:20 -04:00
Brandon Vandegrift 779532b624 Add new VeilidTable and VeilidClient to WASM API
These new interfaces have been reworked (compared to the original API) to emit (mostly) proper TypeScript types.
2023-09-03 23:27:08 -04:00
Brandon Vandegrift 0abc9a8b45 Revert breaking changes to WASM API 2023-09-03 23:27:08 -04:00
Brandon Vandegrift 1b20037053 Setup for TypeScript type gen for WASM using Tsify
- Includes breaking changes to the WASM API surface, since it now accepts objects instead of stringified JSON.
2023-09-03 23:27:08 -04:00
TC Johnson 65826b219b Version update: v0.2.0 → v0.2.1 2023-09-03 19:45:12 -05:00
Christien Rioux 9f4ac0e45f Merge branch 'feature-private-builds' into 'main'
Increase privacy for WASM release builds

See merge request veilid/veilid!163
2023-09-03 00:28:03 +00:00
Christien Rioux a77f80a8a9 repo fixes 2023-09-02 15:47:19 -04:00
TC Johnson 2c46a159a3 Version update: v0.1.10 → v0.2.0 2023-09-02 09:45:56 -05:00
Christien Rioux 90772728c2 bumpversion fixes 2023-09-02 10:41:59 -04:00
Vanya Agnesandra e75af7d9b4 Redact usernames and user project structure from wasm panic messages 2023-08-30 13:07:48 -04:00
Christien Rioux c8fd523a91 fix wasm 2023-08-29 15:52:47 -05:00
Christien Rioux e302b764d0 docs and tests work 2023-08-29 15:15:47 -05:00
Christien Rioux e504da2564 xfer 2023-08-22 15:11:45 -04:00
TC Johnson 513116e672 Version update: v0.1.9 → v0.1.10 2023-08-20 11:37:18 -05:00
TC Johnson dfeecdde0d Version update: v0.1.8 → v0.1.9 2023-08-19 17:35:52 -05:00
TC Johnson 04c26e48f0 'Version update: 0.1.7 → 0.1.8' 2023-08-18 20:27:01 -05:00
Brandon Vandegrift 18dfe99e09 use as_human_base64 to serialize VeilidRouteBlob 2023-08-16 10:29:59 -04:00
Brandon Vandegrift fae12b234d Fix veilid-wasm errors so it compiles, emit TypeScript types.
- `wrap_api_future` function did not exist, so I used `wrap_api_future_plain` since the return type appears to be a base64 encoded string.
- Argument order for `create_dht_record` was incorrectly swapped.
- `veilid_core::json_as_base64` does not exist, don't exactly know what to replace it with for serde serialization, but I commented it out for now.
- Removed `--no-typescript` flag from `wasm-buildgen` so that TypeScript types are emitted.
2023-08-15 13:47:26 -04:00
John Smith 8a287d13ef 0.1.7 2023-07-30 19:33:58 -04:00
Christien Rioux 00aad2c728 bugfixes 2023-07-25 01:04:22 -04:00
John Smith 1861650d44 0.1.6 2023-07-22 16:28:05 -04:00
TC Johnson 4951e983c7 Release 0.1.5 2023-07-22 12:02:10 -05:00
Christien Rioux fa45f491eb 0.1.4 2023-07-19 21:15:54 -04:00
John Smith 4702a33a4a licensing 2023-07-19 12:48:44 -04:00
John Smith fff6742c6f version bump 2023-07-17 17:53:42 -04:00