-
Notifications
You must be signed in to change notification settings - Fork 109
Description
Hey all,
So thinking about interfaces in WIT it seems clear that there are two somewhat surprising eventualities that happen in hosts today (wasmtime, jco at the very least):
- Linked interfaces may be downgraded to match what is in the host (i.e.
ns:pkg/iface@0.2.1being downgraded tons:pkg/iface@0.2.0) - Partly due to (1) but in general adding functions to an existing interface (even with
@since) could become a breaking change, because guests cannot predict whether hosts will have coverage or not.
This should likely be called out more clearly in WIT.md, similar to how it is called out explicitly in wasmtime's Linker documentation -- thoughts?
The ideal is to prevent people from being surprised when building components that target the newest version of a given interface but running in an older host/embedding and experiencing an unexpected runtime failure.
Downgrading is a host-specific quirk, and is technically not promised/required by a given platform (no guest can ensure that a certain platform does a certain thing with it's imports), but it is still surprising behavior that should probably be noted somewhere.