Skip to content

Commit fdbe5b4

Browse files
Release notes 1.27.1
1 parent 0d2d842 commit fdbe5b4

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

RELEASES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Version 1.27.1 (2018-07-10)
2+
===========================
3+
4+
Security Notes
5+
--------------
6+
7+
- rustdoc would execute plugins in the /tmp/rustdoc/plugins directory
8+
when running, which enabled executing code as some other user on a
9+
given machine. This release fixes that vulnerability; you can read
10+
more about this on the [blog][rustdoc-sec].
11+
12+
Thank you to Red Hat for responsibily disclosing this vulnerability to us.
13+
14+
Compatibility Notes
15+
-------------------
16+
17+
- The borrow checker was fixed to avoid an additional potential unsoundness when using
18+
match ergonomics: [#51415][51415], [#49534][49534].
19+
20+
[51415]: https://github.com/rust-lang/rust/issues/51415
21+
[49534]: https://github.com/rust-lang/rust/issues/49534
22+
[rustdoc-sec]: https://blog.rust-lang.org/2018/07/06/security-advisory-for-rustdoc.html
23+
124
Version 1.27.0 (2018-06-21)
225
==========================
326

src/bootstrap/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use Build;
2424
use config::Config;
2525

2626
// The version number
27-
pub const CFG_RELEASE_NUM: &str = "1.27.0";
27+
pub const CFG_RELEASE_NUM: &str = "1.27.1";
2828

2929
pub struct GitInfo {
3030
inner: Option<Info>,

0 commit comments

Comments
 (0)