Skip to content

Add blog post on Rust 1.68.2 #1091

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

Merged
merged 1 commit into from
Mar 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions posts/2023-03-28-Rust-1.68.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
layout: post
title: "Announcing Rust 1.68.2"
author: The Rust Release Team
release: true
---

The Rust team has published a new point release of Rust, 1.68.2. Rust is a
programming language that is empowering everyone to build reliable and
efficient software.

If you have a previous version of Rust installed via rustup, you can get 1.68.2 with:

```
rustup update stable
```

If you don't have it already, you can [get `rustup`][install]
from the appropriate page on our website, and check out the
[detailed release notes for 1.68.2][notes] on GitHub.

[install]: https://www.rust-lang.org/install.html
[notes]: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1682-2023-03-28

## What's in 1.68.2 stable

Rust 1.68.2 addresses [GitHub's recent rotation of their RSA SSH host
key](https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/), which
happened on March 24th 2023 after their previous key accidentally leaked:

* [GitHub's RSA key bundled in Cargo has been
updated](https://github.com/rust-lang/cargo/pull/11883), to ensure systems
that haven't interacted with GitHub yet won't connect trusting the leaked
key.

* [The leaked key has been hardcoded as revoked in
Cargo](https://github.com/rust-lang/cargo/pull/11889), to ensure the key
won't be used by Cargo even on systems that still trust the key.

[Support for `@revoked` entries in
`.ssh/known_hosts`](https://github.com/rust-lang/cargo/pull/11635) (along with
a better error message when the unsupported `@cert-authority` entries are used)
is also included in Rust 1.68.2, as that change was a pre-requisite for
backporting the hardcoded revocation.

If you cannot upgrade to Rust 1.68.2, we recommend [following GitHub's
instructions](https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/#what-you-can-do)
on updating the trusted keys in your system. Note that the keys bundled in
Cargo are only used if no trusted key for `github.com` is found on the system.

### Contributors to 1.68.2

Many people came together to create Rust 1.68.2. We couldn't have done it
without all of you. [Thanks!](https://thanks.rust-lang.org/rust/1.68.2/)