-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
1.43 beta backports #8007
1.43 beta backports #8007
Conversation
…excrichton Partially revert change to filter debug_assertions. This partially reverts the changes from rust-lang#7943. It caused a regression with the rocket_contrib crate. I knew that was the only crate that had a `cfg(debug_assertions)` dependency, and I saw that it had been fixed, but I did not realize the fix hadn't been published (and will be in a semver incompatible release). This retains the old behavior for `cfg(debug_assertions)` of issuing a warning. I kept the filter for `CARGO_CFG_DEBUG_ASSERTIONS` for build scripts because that was the original intent for the change, and I don't see anyone using that. Closes rust-lang#7966.
…crichton Support old html anchors in manifest chapter. rust-lang#7733 unintentionally broke some old HTML anchors in the manifest chapter. This would cause any links out in the wild to not scroll to the correct position. Unfortunately it is too late for the 1.42 release. However, I'd like to backport this for 1.43.
Bump libgit2 dependencies Brings in rust-lang/git2-rs#527 Closes rust-lang#7466 Closes rust-lang#7988
(rust_highfive has picked a reviewer for you, use r? to override) |
|
I also considered instead of backporting #7996 to revert #7939. I don't feel strongly one way or the other. The latest libgit2 probably hasn't had much testing done, but presumably there were some important fixes in the newer versions. This will require a coordinated update with clippy due to the git2 changes ("links" restriction), which I'll try to handle. |
@bors: r+ I think updating a bit further for git2 is fine |
📌 Commit fb5abcd has been approved by |
☀️ Test successful - checks-azure |
debug_assertions
incfg
expressions.