|
Revision tags: dev, v36.0.9, v44.0.1, v43.0.2, v36.0.8, v24.0.8, v44.0.0, v43.0.1, v42.0.2, v36.0.7, v24.0.7, v43.0.0, v42.0.1, v41.0.4, v42.0.0, v40.0.4, v36.0.6, v24.0.6, v41.0.3, v41.0.2, v41.0.1, v36.0.5, v40.0.3, v41.0.0, v36.0.4, v39.0.2, v40.0.2 |
|
| #
1cc0bcff |
| 13-Jan-2026 |
Bailey Hayes <[email protected]> |
feat(p3)!: vendor 0.3.0-rc-2026-01-06 (#12250)
* feat(p3)!: vendor 0.3.0-rc-2026-01-06
Update wasmtime's WASI implementation from version 0.3.0-rc-2025-09-16 to 0.3.0-rc-2026-01-06, using wkg for W
feat(p3)!: vendor 0.3.0-rc-2026-01-06 (#12250)
* feat(p3)!: vendor 0.3.0-rc-2026-01-06
Update wasmtime's WASI implementation from version 0.3.0-rc-2025-09-16 to 0.3.0-rc-2026-01-06, using wkg for WIT vendoring.
This involves API changes in clocks and HTTP.
* Handle some review comments
* Update WASI implementations to avoid `as`
This can have a loss in precision so this shuffles around some types to ensure that `try_into` and friends are always used instead of `as`. This changes the source-of-truth for timestamps to be `i64` seconds so WASIp2 is the odd-one-out that can't represent negative timestamps.
* Flag expected WASI failures
* Get wasi:http tests working again
* Rename `proxy` module to `service` to reflect the WIT world. * Adjust the middleware test to using the `middleware` world.
---------
Co-authored-by: Alex Crichton <[email protected]>
show more ...
|
|
Revision tags: v40.0.1, v40.0.0, v39.0.1, v39.0.0, v38.0.4, v37.0.3, v36.0.3, v24.0.5, v38.0.3, v38.0.2, v38.0.1, v37.0.2, v37.0.1, v37.0.0 |
|
| #
5a2860ce |
| 10-Sep-2025 |
Roman Volosatovs <[email protected]> |
p3-http: rework `content-length` handling (#11658)
* p3-http: correctly handle `result` future cancellation
Signed-off-by: Roman Volosatovs <[email protected]>
* p3-http: restructure the `con
p3-http: rework `content-length` handling (#11658)
* p3-http: correctly handle `result` future cancellation
Signed-off-by: Roman Volosatovs <[email protected]>
* p3-http: restructure the `content-length` test a bit
Signed-off-by: Roman Volosatovs <[email protected]>
* test(http): keep accepting connections after errors
prtest:full
Signed-off-by: Roman Volosatovs <[email protected]>
* test(p3-http): assert `handle` error on exceeding `content-length`
Signed-off-by: Roman Volosatovs <[email protected]>
* p3-http: perform `content-length` check early
Signed-off-by: Roman Volosatovs <[email protected]>
* test(p3-http): account for `handle` race condition
Signed-off-by: Roman Volosatovs <[email protected]>
* refactor(http): reuse `get_content_length`
Signed-off-by: Roman Volosatovs <[email protected]>
* p3-http: check `content-length` for host bodies
Signed-off-by: Roman Volosatovs <[email protected]>
* doc(p3-http): call out that host bodies are not validated
Signed-off-by: Roman Volosatovs <[email protected]>
* p3-http: refactor body size error send
Signed-off-by: Roman Volosatovs <[email protected]>
* fix(p3-http): do not rely on `Drop` for host body check
Signed-off-by: Roman Volosatovs <[email protected]>
* doc(p3-http): ensure non-default send request is documented
Signed-off-by: Roman Volosatovs <[email protected]>
* doc(p3-http): correct `send_request` doc
Signed-off-by: Roman Volosatovs <[email protected]>
---------
Signed-off-by: Roman Volosatovs <[email protected]>
show more ...
|
| #
f3d72564 |
| 09-Sep-2025 |
Roman Volosatovs <[email protected]> |
p3-http: finish `wasi:[email protected]` implementation (#11636)
* refactor(p3-http): use trappable errors
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): implement `content-lengt
p3-http: finish `wasi:[email protected]` implementation (#11636)
* refactor(p3-http): use trappable errors
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): implement `content-length` handling
Signed-off-by: Roman Volosatovs <[email protected]>
* refactor(p3-http): remove a few resource utilities
Signed-off-by: Roman Volosatovs <[email protected]>
* remove unused test import
Signed-off-by: Roman Volosatovs <[email protected]>
* fix(p3-http): close stream handles on drop
Signed-off-by: Roman Volosatovs <[email protected]>
* test(p3-http): stream responses back
This is something we've been doing in wasip3, but I forgot to port this over
Signed-off-by: Roman Volosatovs <[email protected]>
* doc(p3-http): add missing docs, internalize more, simplify
Signed-off-by: Roman Volosatovs <[email protected]>
* refactor(p3-http): extract `Body::consume`
Signed-off-by: Roman Volosatovs <[email protected]>
* refactor(p3-http): clean-up `content-length` error reporting
Signed-off-by: Roman Volosatovs <[email protected]>
* refactor(p3-http): drop elided lifetime
Signed-off-by: Roman Volosatovs <[email protected]>
* fix(p3-http): avoid guest body deadlock hazard
Signed-off-by: Roman Volosatovs <[email protected]>
* refactor(p3-http): add more docs, clean-up
Signed-off-by: Roman Volosatovs <[email protected]>
* doc(p3-http): add more docs
Signed-off-by: Roman Volosatovs <[email protected]>
* fix(p3-http): rework result future handling
Most importantly this avoids a race condition between `content-length` error observed by `GuestBody` and hyper I/O driver
Signed-off-by: Roman Volosatovs <[email protected]>
* add new imports after rebase
Signed-off-by: Roman Volosatovs <[email protected]>
* clean-up `poll_consume`
Signed-off-by: Roman Volosatovs <[email protected]>
* assert content-length `handle` results
Signed-off-by: Roman Volosatovs <[email protected]>
* relax `content_length` test `handle` assert
Signed-off-by: Roman Volosatovs <[email protected]>
---------
Signed-off-by: Roman Volosatovs <[email protected]>
show more ...
|
| #
5674e4b4 |
| 07-Sep-2025 |
Roman Volosatovs <[email protected]> |
feat(p3): implement `wasi:http` (#11440)
* feat(p3-http): begin implementation
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): implement incoming HTTP
Signed-off-by: Rom
feat(p3): implement `wasi:http` (#11440)
* feat(p3-http): begin implementation
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): implement incoming HTTP
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): switch to new API
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): begin outgoing implementation
Signed-off-by: Roman Volosatovs <[email protected]>
* test(p3-http): test invalid header
Signed-off-by: Roman Volosatovs <[email protected]>
* fix(p3-http): await I/O if future receiver dropped
Signed-off-by: Roman Volosatovs <[email protected]>
* Re-internalize some fields
Try to keep fields private and use public ctors instead.
* Uncomment `p3_http_outbound_request_content_length` test
It's still semi-failing, but defer that to #11631
* Get tests passing CI again
---------
Signed-off-by: Roman Volosatovs <[email protected]> Co-authored-by: Alex Crichton <[email protected]>
show more ...
|
| #
1047b511 |
| 04-Sep-2025 |
Alex Crichton <[email protected]> |
Update wit-bindgen to 0.45.0 (#11609)
* Update wit-bindgen to 0.45.0
Pulling in recent changes
* Add vets
* Remove dead imports
|
|
Revision tags: v36.0.2, v36.0.1, v36.0.0 |
|
| #
6f6a514b |
| 15-Aug-2025 |
Roman Volosatovs <[email protected]> |
feat(p3): begin `wasi:http` implementation (#11439)
* doc: fix typo in p3 filesystem ref
Signed-off-by: Roman Volosatovs <[email protected]>
* build: vendor `wasi:[email protected]` WIT
Signed-off-
feat(p3): begin `wasi:http` implementation (#11439)
* doc: fix typo in p3 filesystem ref
Signed-off-by: Roman Volosatovs <[email protected]>
* build: vendor `wasi:[email protected]` WIT
Signed-off-by: Roman Volosatovs <[email protected]>
* feat(p3-http): scaffold p3 implementation
Signed-off-by: Roman Volosatovs <[email protected]>
* test(p3-http): add tests
Signed-off-by: Roman Volosatovs <[email protected]>
* chore(p3-http): add utils used by p3 tests
Signed-off-by: Roman Volosatovs <[email protected]>
* chore: add `expect` reasons
Signed-off-by: Roman Volosatovs <[email protected]>
* address review comments
Signed-off-by: Roman Volosatovs <[email protected]>
* establish `conn` connections on drop
Signed-off-by: Roman Volosatovs <[email protected]>
---------
Signed-off-by: Roman Volosatovs <[email protected]>
show more ...
|