ensure semver for examples#670
Merged
yoshuawuyts merged 3 commits intoJun 1, 2026
Merged
Conversation
Member
Author
|
It looks like CI is failing but I don't think it's because of this PR. For example:
That's an issue where Nix's dependency model apparently requires a diamond dependency graph, which is incompatible with Rust's dependency model which resolves that by duplicating dependencies. I think that means that CI on the main branch is currently not passing. cc/ @Mossaka |
aa8c404 to
940ff84
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #670 +/- ##
=======================================
Coverage ? 87.05%
=======================================
Files ? 30
Lines ? 10855
Branches ? 0
=======================================
Hits ? 9450
Misses ? 1405
Partials ? 0 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Each example's WIT `world` and `package` declaration is renamed to match its published component name (its directory) under the `microsoft` namespace, e.g. `package component:fetch-rs; world fetch;` becomes `package microsoft:fetch-rs; world fetch-rs;`. Updates the eval-py and gomodule-go build configs that select the world by name, the gomodule-go Go import path and generated bindings, and regenerates the context7-rs bindings (the only example exporting an interface, where the package name is part of the published API). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The unpinned `cargo install mdbook-tabs` started resolving to 1.0.x,
which requires mdBook 0.5 and fails against the 0.4 binary used here
("missing field items" / "unknown field multilingual"). Pin mdbook-tabs
to the last 0.4-compatible release (0.2.3) and bump the mdBook binary to
0.4.52. Verified locally that this combination builds the book cleanly.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
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.
Fixes #669, making our example components compatible with upcoming registry tooling and future composition tooling. Thanks!