-
Notifications
You must be signed in to change notification settings - Fork 86
Add support for certificate revocation lists #214
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
Conversation
As this patch changes the API of LinkedCertificate, it also bump the version number Note: updated during cherry-picking for new Certificate interface
mbedtls/Cargo.toml
Outdated
| [package] | ||
| name = "mbedtls" | ||
| version = "0.8.2" | ||
| version = "0.8.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You changed the interface, so these versions are not compatible with one another.
When you only update the patch version, and dependencies are defined as mbedtls = 0.8, Cargo may automatically pick up the new version. Unfortunately that will lead to compile issues.
https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html
| } | ||
|
|
||
| #[test] | ||
| fn empty_crl_test() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick: Can you squash the three commits related to tests?
Fix Crl test Move Crl tests into certificate.rs
bfc5748 to
07e2cf1
Compare
|
bors r+ |
|
Build succeeded: |
214: Add support for certificate revocation lists r=raoulstrackx a=monokles Originally introduced by PR #112 but never made it into master. I cherry-picked the original commits onto a fresh branch and fixed the resulting code. Since it changes the API, the version number is bumped. Co-authored-by: Raoul Strackx <[email protected]> Co-authored-by: koentange <[email protected]>
214: Add support for certificate revocation lists r=raoulstrackx a=monokles Originally introduced by PR #112 but never made it into master. I cherry-picked the original commits onto a fresh branch and fixed the resulting code. Since it changes the API, the version number is bumped. Co-authored-by: Raoul Strackx <[email protected]> Co-authored-by: koentange <[email protected]>
255: Prepare for publishing `0.8.2` r=mzohreva a=Taowyoo Back-port several PR's to fix problems that obstruct the publish - #180 - #206 - #214 only commit [441d571](441d571) - #229 Co-authored-by: bors[bot] <26634292+bors[bot]@users.noreply.github.com> Co-authored-by: Tobias Naumann <[email protected]>
Originally introduced by PR #112 but never made it into master.
I cherry-picked the original commits onto a fresh branch and fixed the resulting code.
Since it changes the API, the version number is bumped.