-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): complete sha2 0.11 upgrade #1694
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
Open
seonghobae
wants to merge
26
commits into
main
Choose a base branch
from
fix/sha2-0.11-compat-1693
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
c0b4427
chore(deps): bump sha2 from 0.10.9 to 0.11.0
dependabot[bot] 1981473
fix(deps): preserve SHA-256 hex encoding on sha2 0.11
seonghobae 0052844
test(deps): capture independent lockfile resolution
seonghobae 65d1748
test(deps): minimize PyO3 lock refresh
seonghobae 78e6d19
test(deps): export generated standalone locks
seonghobae f0c358e
chore(deps): remove temporary lockfile diagnostic
seonghobae 8f47809
test(deps): enforce standalone sha2 lock parity
seonghobae a116f78
test(deps): keep lock parity regression lint-clean
seonghobae 0c5cf37
fix(deps): refresh standalone PyO3 lock for sha2 0.11
seonghobae 5128a2b
fix(deps): refresh fuzz sha2 lock
seonghobae 9f52218
test(release): pin Rust registry boundary
seonghobae 441df12
fix(release): close crates.io publication boundary
seonghobae 361caa7
docs(adr): classify Rust registry boundary
seonghobae 107090d
docs(release): doctor Rust distribution boundary
seonghobae cf1cf06
docs(changelog): record Rust registry boundary
seonghobae 0162185
docs(adr): index Rust registry boundary
seonghobae a8e403b
docs(product): state public package boundary
seonghobae 5f38056
test(release): fail if PyO3 crate is registry-publishable
seonghobae e6335d1
fix(release): keep PyO3 bindings off crates.io
seonghobae 453887e
docs(adr): bind both Rust crates to PyPI product boundary
seonghobae 685dc5c
docs(doctoring): cover both internal Rust crates
seonghobae 4eb95a3
docs(product): keep PyO3 crate inside release boundary
seonghobae debe63f
docs(changelog): record both internal Rust crate guards
seonghobae 8e6c309
fix(changelog): satisfy authoritative fragment format
seonghobae 756cf88
chore(core): reconcile Rust distribution lane with protected main
seonghobae 0e139c8
Merge 756cf889a111717725de806329e8e5a64bbb5bc0 into 493326f2de49ea170…
seonghobae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| name: Lockfile diagnostic | ||
|
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - ".github/workflows/lockfile-diagnostic.yml" | ||
| - "Cargo.lock" | ||
| - "crates/mlsirm-core/Cargo.toml" | ||
| - "crates/fast-mlsirm-py/Cargo.lock" | ||
| - "fuzz/Cargo.lock" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| lockfiles: | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - name: Check out exact PR head | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@4be7066ada62dd38de10e7b70166bc74ed198c30 | ||
| with: | ||
| toolchain: stable | ||
| - name: Resolve independent lockfiles | ||
| run: | | ||
| set -euo pipefail | ||
| cargo update --manifest-path crates/fast-mlsirm-py/Cargo.toml -p sha2 --precise 0.11.0 | ||
|
github-actions[bot] marked this conversation as resolved.
Outdated
|
||
| cargo generate-lockfile --manifest-path fuzz/Cargo.toml | ||
| cargo metadata --locked --format-version 1 --manifest-path crates/fast-mlsirm-py/Cargo.toml >/dev/null | ||
| cargo metadata --locked --format-version 1 --manifest-path fuzz/Cargo.toml >/dev/null | ||
| echo 'PY_LOCK_BASE64_BEGIN' | ||
| base64 -w0 crates/fast-mlsirm-py/Cargo.lock | ||
| echo | ||
| echo 'PY_LOCK_BASE64_END' | ||
| echo 'FUZZ_LOCK_BASE64_BEGIN' | ||
| base64 -w0 fuzz/Cargo.lock | ||
| echo | ||
| echo 'FUZZ_LOCK_BASE64_END' | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.