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

Rollup of 6 pull requests #128529

Merged
merged 12 commits into from
Aug 2, 2024
Merged

Rollup of 6 pull requests #128529

merged 12 commits into from
Aug 2, 2024

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    f97aba2 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    6d312d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f449586 View commit details
    Browse the repository at this point in the history
  3. Do not underline suggestions for code that is already there

    When a suggestion part is for already present code, do not highlight it. If after that there are no highlights left, do not show the suggestion at all.
    
    Fix clippy lint suggestion incorrectly treated as `span_help`.
    estebank committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    8ce8c42 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b72685b View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Dogfood

    c410-f3r committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    b2f7e71 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#126818 - estebank:suggestions-fix, r=wesley…

    …wiser
    
    Better handle suggestions for the already present code and fix some suggestions
    
    When a suggestion part is for code that is already present, skip it. If all the suggestion parts for a suggestion are for code that is already there, do not emit the suggestion.
    
    Fix two suggestions that treat `span_suggestion` as if it were `span_help`.
    matthiaskrgr authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    d1d57bd View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#128436 - GuillaumeGomez:update-sysinfo, r=c…

    …lubby789
    
    Update sysinfo version to 0.31.2
    
    I needed to update `memchr` version (which was pinned in rust-lang@36a1679). So let's see if it triggers the linker issue.
    
    try-job: x86_64-mingw
    matthiaskrgr authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    2dabaa0 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#128453 - RalfJung:raw_eq, r=saethlin

    raw_eq: using it on bytes with provenance is not UB (outside const-eval)
    
    The current behavior of raw_eq violates provenance monotonicity. See rust-lang#124921 for an explanation of provenance monotonicity. It is violated in raw_eq because comparing bytes without provenance is well-defined, but adding provenance makes the operation UB.
    
    So remove the no-provenance requirement from raw_eq. However, the requirement stays in-place for compile-time invocations of raw_eq, that indeed cannot deal with provenance.
    
    Cc `@rust-lang/opsem`
    matthiaskrgr authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    67fcb58 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#128491 - c410-f3r:unlock-rfc-2011, r=workin…

    …gjubilee
    
    [`macro_metavar_expr_concat`] Dogfooding
    
    cc rust-lang#124225
    
    Starts inner usage to test the robustness of the implementation.
    matthiaskrgr authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    55ed05c View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#128494 - RalfJung:mir-lazy-lists, r=compile…

    …r-errors
    
    MIR required_consts, mentioned_items: ensure we do not forget to fill these lists
    
    Bodies initially get created with empty required_consts and mentioned_items, but at some point those should be filled. Make sure we notice when that is forgotten.
    matthiaskrgr authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    66d243f View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#128521 - aDotInTheVoid:opaque-fallout, r=ca…

    …melid
    
    rustdoc: Remove dead opaque_tys rendering logic
    
    rust-lang#127276 removed OpaqueTy from clean, and the code populating AllTypes::opaque_tys, but not this field itself.
    matthiaskrgr authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    1140fd1 View commit details
    Browse the repository at this point in the history