Skip to content

Rollup of 7 pull requests #129428

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 35 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0b87af9
Add `-Z embed-source=yes` to embed source code in DWARF debug info
Mrmaxmeier Apr 27, 2024
608901b
Add run-make test for -Zembed-source=yes
Mrmaxmeier Jul 16, 2024
e65a48e
Document WebAssembly target feature expectations
alexcrichton Aug 1, 2024
dea3846
Review comments
alexcrichton Aug 1, 2024
927633c
Add a note about libraries and `#[target_feature]`
alexcrichton Aug 1, 2024
cfe3ea6
Add new page to SUMMARY.md
alexcrichton Aug 1, 2024
ce7f1b7
Ignore two new doc blocks in testing
alexcrichton Aug 1, 2024
b6f65a4
Document on-by-default features
alexcrichton Aug 1, 2024
a5082ef
Appease tidy
alexcrichton Aug 1, 2024
06197ef
Review comments
alexcrichton Aug 2, 2024
6899f5a
-Zembed-source: Don't try to warn about incompatible codegen backends
Mrmaxmeier Aug 6, 2024
7d2595f
Review comments
alexcrichton Aug 9, 2024
6a8ec81
Add a missing compatibility note in the 1.80.0 release notes
apiraino Aug 19, 2024
cd7cc3f
Update RELEASES.md
apiraino Aug 19, 2024
7613eee
Update RELEASES.md
apiraino Aug 19, 2024
063bd74
compiletest: implement `needs-lvm-zstd` directive
lqd Aug 10, 2024
37a56f8
mark `rust-lld-compress-debug-sections` test as needing zstd
lqd Aug 10, 2024
d7e56cf
make `compressed-debuginfo` test about zlib only
lqd Aug 10, 2024
0cb8a81
prepare test for expanding scope
lqd Aug 10, 2024
c439f68
expand zstd debuginfo compression test
lqd Aug 10, 2024
9acf344
move and rename zstd script
lqd Aug 10, 2024
4ad2e1b
strip whitespace for ignored tests reason comments
lqd Aug 11, 2024
8513a35
enable `llvm.libzstd` on test x64 linux builder
lqd Aug 11, 2024
1649e71
allow `llvm.libzstd` with `download-ci-llvm = true`
lqd Aug 20, 2024
c51f2d2
Use a LocalDefId in ResolvedArg.
cjgillot Aug 22, 2024
87e4b67
Update RELEASES.md
apiraino Aug 22, 2024
6a878a9
Fix handling of macro arguments within the `dropping_copy_types lint
Urgau Aug 22, 2024
8eb1558
Don't trigger refinement lint if predicates reference errors
compiler-errors Aug 22, 2024
51e5cf7
Rollup merge of #126985 - Mrmaxmeier:dwarf-embed-source, r=davidtwco
matthiaskrgr Aug 22, 2024
4553e97
Rollup merge of #128511 - alexcrichton:doc-wasm-features, r=jieyouxu
matthiaskrgr Aug 22, 2024
a34b4cc
Rollup merge of #128935 - lqd:needs-zstd, r=Kobzol
matthiaskrgr Aug 22, 2024
a29bc06
Rollup merge of #129263 - apiraino:add-missing-compat-note, r=cuviper
matthiaskrgr Aug 22, 2024
6b0dd24
Rollup merge of #129386 - cjgillot:local-resolved-arg, r=compiler-errors
matthiaskrgr Aug 22, 2024
279a3e4
Rollup merge of #129408 - Urgau:macro-arg-drop_copy, r=compiler-errors
matthiaskrgr Aug 22, 2024
bdc2db8
Rollup merge of #129417 - compiler-errors:refine-err, r=lqd
matthiaskrgr Aug 22, 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
Prev Previous commit
Next Next commit
Update RELEASES.md
Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com>
  • Loading branch information
apiraino and workingjubilee authored Aug 19, 2024
commit 7613eee55ea9fc0bdaff6bb482cc0650a5bf3e9a
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Compatibility Notes
- [Detect unused structs even when implementing private traits](https://github.com/rust-lang/rust/pull/122382/)
- [`std::sync::ReentrantLockGuard<T>` is no longer `Sync` if `T: !Sync`](https://github.com/rust-lang/rust/pull/125527) which means [`std::io::StdoutLock` and `std::io::StderrLock` are no longer Sync](https://github.com/rust-lang/rust/issues/127340)
- [Type inference will fail in some cases due to a new impl of FromIterator for Box<str>](https://github.com/rust-lang/rust/pull/99969/)
Notably this breaks versions of the `time` crate before 0.3.55, due to no longer inferring the right impl.
Notably this breaks versions of the `time` crate before 0.3.36, due to no longer inferring the right impl.

<a id="1.80-Internal-Changes"></a>

Expand Down
Loading