-
Notifications
You must be signed in to change notification settings - Fork 305
Migrate WASI 0.1 docs from legacy/ dir to wasi-0.1 branch
#855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ricochet
approved these changes
Dec 18, 2025
fniephaus
added a commit
to fniephaus/wasi.dev
that referenced
this pull request
Jan 23, 2026
The WASI 0.1 docs were migrated as part of WebAssembly/WASI#855
jhpratt
added a commit
to jhpratt/rust
that referenced
this pull request
Jan 26, 2026
Fix broken WASIp1 reference link ### Location (URL) https://doc.rust-lang.org/rustc/platform-support/wasm32-wasip1.html <img width="800" alt="image" src="https://github.com/user-attachments/assets/b9402b3a-db7b-405f-b4ef-d849c03ad893" /> ### Summary The WASIp1 reference link in the `wasm32-wasip1` platform documentation currently points to a path that no longer exists in the WASI repository. The WASI project recently migrated the WASI 0.1 (preview1) documentation from the `legacy/preview1` directory to the dedicated `wasi-0.1` branch (WebAssembly/WASI#855). This updates the link to point to the intended historical WASIp1 reference, which matches the documented intent of the `wasm32-wasip1` target.
Zalathar
added a commit
to Zalathar/rust
that referenced
this pull request
Jan 26, 2026
Fix broken WASIp1 reference link ### Location (URL) https://doc.rust-lang.org/rustc/platform-support/wasm32-wasip1.html <img width="800" alt="image" src="https://github.com/user-attachments/assets/b9402b3a-db7b-405f-b4ef-d849c03ad893" /> ### Summary The WASIp1 reference link in the `wasm32-wasip1` platform documentation currently points to a path that no longer exists in the WASI repository. The WASI project recently migrated the WASI 0.1 (preview1) documentation from the `legacy/preview1` directory to the dedicated `wasi-0.1` branch (WebAssembly/WASI#855). This updates the link to point to the intended historical WASIp1 reference, which matches the documented intent of the `wasm32-wasip1` target.
rust-timer
added a commit
to rust-lang/rust
that referenced
this pull request
Jan 26, 2026
Rollup merge of #151639 - zzaekkii:wasm32-wasip1, r=madsmtm Fix broken WASIp1 reference link ### Location (URL) https://doc.rust-lang.org/rustc/platform-support/wasm32-wasip1.html <img width="800" alt="image" src="https://github.com/user-attachments/assets/b9402b3a-db7b-405f-b4ef-d849c03ad893" /> ### Summary The WASIp1 reference link in the `wasm32-wasip1` platform documentation currently points to a path that no longer exists in the WASI repository. The WASI project recently migrated the WASI 0.1 (preview1) documentation from the `legacy/preview1` directory to the dedicated `wasi-0.1` branch (WebAssembly/WASI#855). This updates the link to point to the intended historical WASIp1 reference, which matches the documented intent of the `wasm32-wasip1` target.
github-actions bot
pushed a commit
to rust-lang/rustc-dev-guide
that referenced
this pull request
Jan 26, 2026
Fix broken WASIp1 reference link ### Location (URL) https://doc.rust-lang.org/rustc/platform-support/wasm32-wasip1.html <img width="800" alt="image" src="https://github.com/user-attachments/assets/b9402b3a-db7b-405f-b4ef-d849c03ad893" /> ### Summary The WASIp1 reference link in the `wasm32-wasip1` platform documentation currently points to a path that no longer exists in the WASI repository. The WASI project recently migrated the WASI 0.1 (preview1) documentation from the `legacy/preview1` directory to the dedicated `wasi-0.1` branch (WebAssembly/WASI#855). This updates the link to point to the intended historical WASIp1 reference, which matches the documented intent of the `wasm32-wasip1` target.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR moves the content of the
legacy/directory to a dedicatedwasi-0.1branch. This should make the WASI 0.1 archive easier to find and link to for those who want to, while keeping the main branch focused on the development of upcoming WASI versions. This should create a better experience overall for people who care exclusively about WASI 0.1.While this PR only affects the WASI 0.1 archive, the plan is to repeat this once more with the introduction of WASI 0.3. Just like we're doing here, we would create a new branch labeled
wasi-0.2and then use that as the archive for the existing WASI 0.2 interfaces and definitions. And with the introduction of WASI 1.0, we would do this one last time.I've also gone ahead and setup branch protection rules for the WASI 0.1 branch to ensure it cannot just be deleted or force pushed to. That way we're treating it as a long-lasting archive branch, and not just something that is at risk of accidental deletion. For WASI 0.2 and beyond specifically, this also puts us in a position where we can consider publishing additional point releases should there ever be a need to.
I've also gone ahead and searched for any links to the
legacy/directory on GitHub, but from what I can tell all references are either historical or are forks of this repository. In a follow-up PR I'd like to see whether we can re-format the README a little, and see if we can start listing historical WASI versions under a dedicated heading to make it easier to find at a glance.Thanks!