fix: update bindgen for LLVM 22 compatibility - #808
Merged
Conversation
knecasov
force-pushed
the
update-deps-bindgen-llvm22-compat
branch
3 times, most recently
from
June 29, 2026 10:02
2063425 to
4e08fe1
Compare
knecasov
marked this pull request as draft
June 29, 2026 14:42
Contributor
|
This needs to be split into multiple commits. There's pieces that change library revs, changes around IP handling, ssh, and even dropping of a bunch of code around pgSQL. All of those should be individual commits explaining what each one does. |
knecasov
force-pushed
the
update-deps-bindgen-llvm22-compat
branch
from
July 1, 2026 08:13
4e08fe1 to
3da78fe
Compare
Contributor
Author
Thank you very much for the recommendation. I split the commit into individual commits - I cherry-picked commits from PR #807 and added one more. Please take a look if it is correctly separated now. |
knecasov
marked this pull request as ready for review
July 8, 2026 07:36
https://rustsec.org/advisories/RUSTSEC-2024-0421.html Signed-off-by: Antonio Murdaca <antoniomurdaca@gmail.com>
Fixes compiling errors as per parallaxsecond/rust-tss-esapi#634 Signed-off-by: Antonio Murdaca <antoniomurdaca@gmail.com>
Signed-off-by: Antonio Murdaca <antoniomurdaca@gmail.com>
Signed-off-by: Antonio Murdaca <antoniomurdaca@gmail.com>
Signed-off-by: Antonio Murdaca <antoniomurdaca@gmail.com>
Signed-off-by: Antonio Murdaca <antoniomurdaca@gmail.com>
Bump libcryptsetup-rs to 0.16.1 and devicemapper to 0.34.7. Update CryptParamsReencrypt to wrap luks2 field in Some() per new API. Signed-off-by: Klara Necasova <knecasov@redhat.com> Assisted-by: Claude (claude-opus-4-6)
fdo-client-linuxapp requires libpq.so.5 which is not present in the runtime container. Signed-off-by: Klara Necasova <knecasov@redhat.com> Assisted-by: Claude (claude-opus-4-6)
mmartinv
force-pushed
the
update-deps-bindgen-llvm22-compat
branch
from
July 29, 2026 11:50
240dddb to
58e1118
Compare
mmartinv
previously approved these changes
Jul 29, 2026
Add epel-9 and epel-10 targets to copr_build and test jobs to work around packit/packit#2700. Simplify the test targets from dict format with explicit distros to a plain list. Signed-off-by: Miguel Martín <mmartinv@redhat.com>
Replace `for (_, cert)` with `for cert in self.certs.values()` to follow idiomatic Rust and satisfy clippy. Signed-off-by: Miguel Martín <mmartinv@redhat.com>
- remove unnecessary & before key.to_string() in format! macros in pg.rs and sqlite.rs Signed-off-by: Klara Necasova <knecasov@redhat.com>
Remove unnecessary `&` references in format! macro arguments across multiple crates, and simplify a match expression in device_credential_locations.rs to use the `?` operator. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Miguel Martín <mmartinv@redhat.com>
mmartinv
approved these changes
Jul 30, 2026
runcom
approved these changes
Jul 30, 2026
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.
What
Update dependencies to ensure compatibility with LLVM 22 and fix FTBFS caused by
bindgen< 0.72.1.Incorporates changes from #807.
Why
LLVM has been rebased to version 22. Clang 22 introduces a breaking change affecting
bindgen.Assisted-by: Claude (claude-opus-4-6)