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 10 pull requests #61379

Closed
wants to merge 31 commits into from
Closed

Commits on May 17, 2019

  1. error: remove StringError from Debug output

    Seeing `StringError("something something")` in debug output can cause
     someone to think there was an error dealing with `String`s, not that the
    error type is just a string. So, remove that noise.
    seanmonstar committed May 17, 2019
    Configuration menu
    Copy the full SHA
    d2d89b1 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2019

  1. Speed up Azure CI installing Windows dependencies

    There is known issue where PowerShell is unreasonably slow downloading
    files due to an issue with rendering the progress bar, see:
    
    PowerShell/PowerShell#2138
    
    That issue is fixed in PowerShell Core (available in Azure Pipelines as
    pwsh.exe) but it can also be worked around by setting:
    
        $ProgressPreference = 'SilentlyContinue'
    lzybkr committed May 29, 2019
    Configuration menu
    Copy the full SHA
    642e8d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    07864a6 View commit details
    Browse the repository at this point in the history
  3. no longer assume that there is a default tag: give the machine the ch…

    …ance to tag all allocations
    RalfJung committed May 29, 2019
    Configuration menu
    Copy the full SHA
    a218be9 View commit details
    Browse the repository at this point in the history
  4. fix comments

    RalfJung committed May 29, 2019
    Configuration menu
    Copy the full SHA
    19c4cfd View commit details
    Browse the repository at this point in the history
  5. fix rebase fallout

    RalfJung committed May 29, 2019
    Configuration menu
    Copy the full SHA
    c604350 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    66cc1b7 View commit details
    Browse the repository at this point in the history
  7. fix indentation

    RalfJung committed May 29, 2019
    Configuration menu
    Copy the full SHA
    b073599 View commit details
    Browse the repository at this point in the history
  8. FIXME

    RalfJung committed May 29, 2019
    Configuration menu
    Copy the full SHA
    1a7ce02 View commit details
    Browse the repository at this point in the history
  9. update comments

    RalfJung committed May 29, 2019
    Configuration menu
    Copy the full SHA
    5a8f6db View commit details
    Browse the repository at this point in the history

Commits on May 30, 2019

  1. Configuration menu
    Copy the full SHA
    bf0da6c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e18885e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ffab36 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5f929be View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dacf19c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    436c9be View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0c35c69 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6c534c3 View commit details
    Browse the repository at this point in the history
  9. Add regression test for const generics ICE

    Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
    varkor and Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    0fdd419 View commit details
    Browse the repository at this point in the history
  10. Fixed lifetime misspelling

    vallentin committed May 30, 2019
    Configuration menu
    Copy the full SHA
    66aa18b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4c5eb8e View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#60897 - seanmonstar:patch-4, r=sfackler

    error: remove StringError from Debug output
    
    Seeing `StringError("something something")` in debug output can cause
     someone to think there was an error dealing with `String`s, not that the
    error type is just a string. So, remove that noise.
    
    For example:
    
    ```
    io error: Custom { kind: InvalidData, error: StringError("corrupt data") }
    ```
    
    With this change:
    
    ```
    io error: Custom { kind: InvalidData, error: "corrupt data" }
    ```
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    f6da6b0 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#61278 - RalfJung:miri-tag-allocations, r=ol…

    …i-obk
    
    Miri: give machine the chance to tag all allocations
    
    r? @oli-obk
    
    The Miri side of this is at rust-lang#61278.
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    8996ebb View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#61304 - lzybkr:iwr_progress, r=alexcrichton

    Speed up Azure CI installing Windows dependencies
    
    There is known issue where PowerShell is unreasonably slow downloading
    files due to an issue with rendering the progress bar, see this [issue](PowerShell/PowerShell#2138)
    
    That issue is fixed in PowerShell Core (available in Azure Pipelines as
    pwsh.exe) but it can also be worked around by setting:
    
        $ProgressPreference = 'SilentlyContinue'
    
    I measured downloading LLVM and it took about 220s before, 5s after, so the improvement is significant.
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    cc03f5d View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#61342 - memoryruins:ellipsis_inclusive_rang…

    …e_patterns, r=Centril
    
    Set ellipsis_inclusive_range_patterns lint to warn
    
    Continuing rust-lang#54910, the `ellipsis_inclusive_range_patterns` lint is set to warn.
    
    r? @Centril
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    30b3139 View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#61344 - varkor:const-failed-to-life-ice, r=…

    …Centril
    
    Add regression test for const generics ICE
    
    Closes rust-lang#60879.
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    4643a45 View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#61359 - GuillaumeGomez:fix-deref-doc-links,…

    … r=Manishearth
    
    Fix links in Deref documentation
    
    Fixes rust-lang#61358.
    
    In commonmark, the "link alias" has to be right after the link. Screenshot:
    
    <img width="970" alt="Screenshot 2019-05-30 at 19 01 58" src="https://user-images.githubusercontent.com/3050060/58650155-3b594e00-830e-11e9-956c-4dadefa40ff0.png">
    
    r? @Manishearth
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    457ab24 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#61363 - lzutao:stabilize-iter_nth_back, r=C…

    …entril
    
    Stabilize iter_nth_back feature
    
    FCP done in rust-lang#56995 (comment)
    
    Closes rust-lang#56995
    
    r? @Centril
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    27cb16a View commit details
    Browse the repository at this point in the history
  19. Rollup merge of rust-lang#61369 - Vallentin:patch-1, r=varkor

    Fixed lifetime misspelling
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    79b6cff View commit details
    Browse the repository at this point in the history
  20. Rollup merge of rust-lang#61372 - mati865:books, r=Centril,GuillaumeG…

    …omez
    
    Migrate some books to mdbook version 0.2
    
    There are 3 books still using old version but they need more effort so I hope to do them in subsequent PR if I find the time.
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    e35305c View commit details
    Browse the repository at this point in the history
  21. Rollup merge of rust-lang#61374 - VirrageS:master, r=Centril

    Explicitly suggest 'type_ascription' feature
    
    Closes: rust-lang#61325
    
    r? @estebank
    Centril committed May 30, 2019
    Configuration menu
    Copy the full SHA
    4254c25 View commit details
    Browse the repository at this point in the history