-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We would like to get to a stage where we can commit to the public API. To help us achieve this add a script that generates the public API and checks it against three committed files, one for each feature set: no features, alloc, std. The idea is that with this applied any PR that changes the public API should include a final patch that is just the changes to the api/*.txt files, that way reviewers can discuss the changes without even needing to look at the code, quickly giving concept ACK/NACKs. We also run the script in CI to make sure we have not accidentally changed the public API so that we can be confident that don't break semver during releases. The script can also be used to diff between two release versions to get a complete list of API changes, useful for writing release notes and for users upgrading.
- Loading branch information
Showing
8 changed files
with
3,117 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
API text files | ||
============== | ||
|
||
Each file here lists the public API when built with some set of features | ||
enabled. To create these files run `../contrib/check-for-api-changes.sh`: | ||
|
||
Requires `cargo-public-api`, install with: | ||
|
||
`cargo +stable install cargo-public-api --locked`. | ||
|
||
ref: https://github.com/enselic/cargo-public-api |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Checks the public API of crates, exits with non-zero if there are currently | ||
# changes to the public API not already committed to in the various api/*.txt | ||
# files. | ||
|
||
set -e | ||
|
||
REPO_DIR=$(git rev-parse --show-toplevel) | ||
API_DIR="$REPO_DIR/api" | ||
|
||
CARGO="cargo +nightly public-api --simplified" | ||
# `sort -n -u` doesn't work for some reason. | ||
SORT="sort --numeric-sort" | ||
|
||
main() { | ||
# cargo public-api uses nightly so the toolchain must be available. | ||
if ! cargo +nightly --version > /dev/null; then | ||
echo "script requires a nightly toolchain to be installed (possibly >= nightly-2023-05-24)" >&2 | ||
exit 1 | ||
fi | ||
|
||
generate_api_files | ||
check_for_changes | ||
} | ||
|
||
generate_api_files() { | ||
pushd "$REPO_DIR" > /dev/null | ||
|
||
$CARGO --no-default-features | $SORT | uniq > "$API_DIR/no-features.txt" | ||
$CARGO --no-default-features --features=alloc | $SORT | uniq > "$API_DIR/alloc-only.txt" | ||
$CARGO --all-features | $SORT | uniq > "$API_DIR/all-features.txt" | ||
|
||
popd > /dev/null | ||
} | ||
|
||
# Check if there are changes (dirty git index) to the `api/` directory. | ||
check_for_changes() { | ||
pushd "$REPO_DIR" > /dev/null | ||
|
||
if [[ $(git status --porcelain api) ]]; then | ||
git diff --color=always | ||
|
||
echo | ||
echo "You have introduced changes to the public API, commit the changes to api/ currently in your working directory" >&2 | ||
exit 1 | ||
|
||
else | ||
echo "No changes to the current public API" | ||
fi | ||
|
||
popd > /dev/null | ||
} | ||
|
||
# | ||
# Main script | ||
# | ||
main "$@" | ||
exit 0 |
This file contains 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