Skip to content

Rollup of 14 pull requests #130010

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

Closed
wants to merge 31 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1ef4f5d
clarify that addr_of creates read-only pointers
RalfJung Aug 27, 2024
b5bd0fe
addr_of on places derived from raw pointers should preserve permissions
RalfJung Aug 27, 2024
21edc73
bootstrap: Try to track down why `initial_libdir` sometimes fails
Zalathar Aug 30, 2024
39e3add
Make `./x.py <cmd> compiler/<crate>` aware of the crate's features
Veykril Aug 30, 2024
0402394
Add an internal lint that warns when accessing untracked data
Nadrieril Aug 9, 2024
b5d07fd
copy rustc rustlib artifacts from ci-rustc
onur-ozkan Sep 3, 2024
98f74b4
explain why Rvalue::Len still exists
RalfJung Sep 3, 2024
f3efe3d
Add compat note for trait solver change
Mark-Simulacrum Sep 3, 2024
e2484be
docs: add digit separators in `Duration` examples
LiterallyVoid Sep 3, 2024
4df28b8
forward linker option to lint-docs
chenx97 Sep 4, 2024
93b4b2d
Temporarily remove fmease from the review rotation
fmease Sep 4, 2024
f7679d0
propagate `tainted_by_errors` in `MirBorrowckCtxt::emit_errors`
folkertdev Sep 4, 2024
49e3b9a
fix ICE when `asm_const` and `const_refs_to_static` are combined
folkertdev Aug 23, 2024
e8472e8
Check unnormalized signature on pointer cast
compiler-errors Aug 13, 2024
67804c5
Adjust tests
compiler-errors Aug 25, 2024
a551ccc
Remove wasm32-wasip2's tier 2 status from release notes
alexcrichton Sep 5, 2024
f6e8a84
Make `Ty::boxed_ty` return an `Option`
GrigorenkoPV Sep 4, 2024
1acf3ad
Rollup merge of #128919 - Nadrieril:lint-query-leaks, r=cjgillot
workingjubilee Sep 6, 2024
26c61fa
Rollup merge of #129021 - compiler-errors:ptr-cast-outlives, r=lcnr
workingjubilee Sep 6, 2024
d72feff
Rollup merge of #129472 - folkertdev:const-refs-to-static-asm-const, …
workingjubilee Sep 6, 2024
7ef8e13
Rollup merge of #129653 - RalfJung:addr-of-read-only, r=scottmcm
workingjubilee Sep 6, 2024
fc7b063
Rollup merge of #129775 - Zalathar:initial-libdir, r=albertlarsan68
workingjubilee Sep 6, 2024
0c5c4a7
Rollup merge of #129781 - Veykril:lw-x-py-compiler-features, r=albert…
workingjubilee Sep 6, 2024
9764c4e
Rollup merge of #129939 - RalfJung:rvalue-len, r=compiler-errors
workingjubilee Sep 6, 2024
c8106c3
Rollup merge of #129942 - onur-ozkan:building-rustc-tools, r=Kobzol
workingjubilee Sep 6, 2024
4ff170c
Rollup merge of #129944 - Mark-Simulacrum:relnotes-tweak, r=pietroalbini
workingjubilee Sep 6, 2024
3859f67
Rollup merge of #129947 - LiterallyVoid:duration-docs-digit-separator…
workingjubilee Sep 6, 2024
9f67f07
Rollup merge of #129955 - fmease:fmease-break, r=fmease
workingjubilee Sep 6, 2024
a125ac0
Rollup merge of #129957 - chenx97:lint-docs-linker-opt, r=albertlarsan68
workingjubilee Sep 6, 2024
9481bfe
Rollup merge of #129969 - GrigorenkoPV:boxed-ty, r=compiler-errors
workingjubilee Sep 6, 2024
5731877
Rollup merge of #129995 - alexcrichton:remove-wasm32-wasip2-release-n…
workingjubilee Sep 6, 2024
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
1 change: 0 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ Compiler
- [Add Tier 3 `std` Xtensa targets:](https://github.com/rust-lang/rust/pull/126380/) `xtensa-esp32-espidf`, `xtensa-esp32s2-espidf`, `xtensa-esp32s3-espidf`
- [Add Tier 3 i686 Redox OS target:](https://github.com/rust-lang/rust/pull/126192/) `i686-unknown-redox`
- [Promote `arm64ec-pc-windows-msvc` to Tier 2.](https://github.com/rust-lang/rust/pull/126039/)
- [Promote `wasm32-wasip2` to Tier 2.](https://github.com/rust-lang/rust/pull/126967/)
- [Promote `loongarch64-unknown-linux-musl` to Tier 2 with host tools.](https://github.com/rust-lang/rust/pull/126298/)
- [Enable full tools and profiler for LoongArch Linux targets.](https://github.com/rust-lang/rust/pull/127078/)
- [Unconditionally warn on usage of `wasm32-wasi`.](https://github.com/rust-lang/rust/pull/126662/) (see compatibility note below)
Expand Down
Loading