Skip to content
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

HTTPS all the things #6614

Merged
merged 7 commits into from
Feb 27, 2019
Merged

HTTPS all the things #6614

merged 7 commits into from
Feb 27, 2019

Conversation

claudijd
Copy link

Noticed that we still have a bunch of HTTP links, which could present mild MiTM risks that we can totally remove.

One short coming of this was:

cargo/src/etc/_cargo:13 "http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions" of which does not have an HTTPS equivalent yet.

@rust-highfive
Copy link

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @nrc (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see the contribution instructions for more information.

@pietroalbini
Copy link
Member

r? @alexcrichton

@rust-highfive rust-highfive assigned alexcrichton and unassigned nrc Jan 30, 2019
@alexcrichton
Copy link
Member

@bors: r+

@bors
Copy link
Collaborator

bors commented Jan 30, 2019

📌 Commit 1584bb4 has been approved by alexcrichton

@bors
Copy link
Collaborator

bors commented Jan 30, 2019

⌛ Testing commit 1584bb4 with merge b98b7c00472ac5b1ce272dd1c3a009592c234d07...

Copy link
Member

@dwijnand dwijnand left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some fixups 🙂

src/cargo/ops/cargo_package.rs Outdated Show resolved Hide resolved
src/cargo/ops/registry.rs Outdated Show resolved Hide resolved
src/bin/cargo/commands/pkgid.rs Outdated Show resolved Hide resolved
@dwijnand
Copy link
Member

I can follow-up.

@claudijd
Copy link
Author

@dwijnand fixed

@dwijnand
Copy link
Member

@claudijd thanks!

@bors r=alexcrichton 6d9f3a6

@bors
Copy link
Collaborator

bors commented Jan 30, 2019

⌛ Testing commit 6d9f3a6 with merge a2b6c20981274d3507a520b2535bb4f866833d60...

@bors
Copy link
Collaborator

bors commented Jan 30, 2019

💔 Test failed - checks-travis

@alexcrichton
Copy link
Member

@bors: r+

@bors
Copy link
Collaborator

bors commented Jan 31, 2019

📌 Commit ee20f73 has been approved by alexcrichton

@bors
Copy link
Collaborator

bors commented Jan 31, 2019

⌛ Testing commit ee20f73 with merge 55c3bd3fb4a2b7490df7d9f93e2d3202ffb61341...

@dwijnand
Copy link
Member

dwijnand commented Feb 6, 2019

@bors retry

@dwijnand
Copy link
Member

dwijnand commented Feb 6, 2019

@bors r+

@bors
Copy link
Collaborator

bors commented Feb 6, 2019

📌 Commit a9480ed has been approved by dwijnand

@bors
Copy link
Collaborator

bors commented Feb 6, 2019

⌛ Testing commit a9480ed with merge 770dd2f...

bors added a commit that referenced this pull request Feb 6, 2019
HTTPS all the things

Noticed that we still have a bunch of HTTP links, which could present mild MiTM risks that we can totally remove.

One short coming of this was:

cargo/src/etc/_cargo:13 "http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions" of which does not have an HTTPS equivalent yet.
@bors
Copy link
Collaborator

bors commented Feb 6, 2019

💔 Test failed - checks-travis

@bors
Copy link
Collaborator

bors commented Feb 12, 2019

☔ The latest upstream changes (presumably #6654) made this pull request unmergeable. Please resolve the merge conflicts.

Copy link
Contributor

@ehuss ehuss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@claudijd do you think you'd be able to rebase and fix the broken tests?

@@ -126,11 +126,11 @@ fn http_auth_offered() {
.with_status(101)
.with_stderr_contains(&format!(
"\
[UPDATING] git repository `http://{addr}/foo/bar`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this test should be changed.

@@ -171,7 +171,7 @@ fn https_something_happens() {
authors = []

[dependencies.bar]
git = "https://127.0.0.1:{}/foo/bar"
git = "http://127.0.0.1:{}/foo/bar"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test shouldn't be modified, either.

@ehuss
Copy link
Contributor

ehuss commented Feb 27, 2019

Thanks!

@bors r+

@bors
Copy link
Collaborator

bors commented Feb 27, 2019

📌 Commit 7185e98 has been approved by ehuss

@bors
Copy link
Collaborator

bors commented Feb 27, 2019

⌛ Testing commit 7185e98 with merge 131823a...

bors added a commit that referenced this pull request Feb 27, 2019
HTTPS all the things

Noticed that we still have a bunch of HTTP links, which could present mild MiTM risks that we can totally remove.

One short coming of this was:

cargo/src/etc/_cargo:13 "http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions" of which does not have an HTTPS equivalent yet.
@bors
Copy link
Collaborator

bors commented Feb 27, 2019

☀️ Test successful - checks-travis, status-appveyor
Approved by: ehuss
Pushing 131823a to master...

@bors bors merged commit 7185e98 into rust-lang:master Feb 27, 2019
bors added a commit to rust-lang/rust that referenced this pull request Mar 4, 2019
Update cargo, rls

## cargo

6 commits in 5c6aa46e6f28661270979696e7b4c2f0dff8628f..716b02cb4c7b75ce435eb06defa25bc2d725909c
2019-02-22 19:32:35 +0000 to 2019-03-02 14:23:51 +0000
- Some test/bench-related tweaks (rust-lang/cargo#6707)
- Fix links to the permanent home of the edition guide. (rust-lang/cargo#6703)
- HTTPS all the things (rust-lang/cargo#6614)
- Cargo test quicker by not building untested examples when filtered (rust-lang/cargo#6683)
- Link from ARCHITECTURE.md to docs.rs and github (rust-lang/cargo#6695)
- Update how to install rustfmt (rust-lang/cargo#6696)

## rls

9 commits in 0d6f53e1a4adbaf7d83cdc0cb54720203fcb522e..6a1b5a9cfda2ae19372e0613e76ebefba36edcf5
2019-02-14 07:52:15 +0000 to 2019-03-04 20:24:45 +0000
- Update cargo and clippy. (rust-lang/rls#1388)
- catch up rust-lang/rust PR#58321 (rust-lang/rls#1384)
- Apply Clippy fixes (rust-lang/rls#1327)
- Various cosmetic improvements (rust-lang/rls#1326)
- Make test `RlsHandle` transport-agnostic (rust-lang/rls#1317)
- Translate remaining tests (rust-lang/rls#1320)
- Remove unnecessary #![feature]s (rust-lang/rls#1323)
- Update Clippy (rust-lang/rls#1319)
- Update Clippy (rust-lang/rls#1315)

cc @Xanewok
bors added a commit to rust-lang/rust that referenced this pull request Mar 9, 2019
Update cargo, rls, books

## cargo

10 commits in 5c6aa46e6f28661270979696e7b4c2f0dff8628f..95b45eca19ac785263fed98ecefe540bb47337ac
2019-02-22 19:32:35 +0000 to 2019-03-06 19:24:30 +0000
- Relax some rustdoc tests. (rust-lang/cargo#6721)
- Include build script execution in the fingerprint. (rust-lang/cargo#6720)
- part of the infrastructure for public & private dependencies in the resolver (rust-lang/cargo#6653)
- Bump to 0.36.0 (rust-lang/cargo#6718)
- Some test/bench-related tweaks (rust-lang/cargo#6707)
- Fix links to the permanent home of the edition guide. (rust-lang/cargo#6703)
- HTTPS all the things (rust-lang/cargo#6614)
- Cargo test quicker by not building untested examples when filtered (rust-lang/cargo#6683)
- Link from ARCHITECTURE.md to docs.rs and github (rust-lang/cargo#6695)
- Update how to install rustfmt (rust-lang/cargo#6696)

## rls

9 commits in 0d6f53e1a4adbaf7d83cdc0cb54720203fcb522e..6a1b5a9cfda2ae19372e0613e76ebefba36edcf5
2019-02-14 07:52:15 +0000 to 2019-03-04 20:24:45 +0000
- Update cargo and clippy. (rust-lang/rls#1388)
- catch up rust-lang/rust PR#58321 (rust-lang/rls#1384)
- Apply Clippy fixes (rust-lang/rls#1327)
- Various cosmetic improvements (rust-lang/rls#1326)
- Make test `RlsHandle` transport-agnostic (rust-lang/rls#1317)
- Translate remaining tests (rust-lang/rls#1320)
- Remove unnecessary #![feature]s (rust-lang/rls#1323)
- Update Clippy (rust-lang/rls#1319)
- Update Clippy (rust-lang/rls#1315)

cc @Xanewok

## Books
See #58936 for details.
@ehuss ehuss added this to the 1.35.0 milestone Feb 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants