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 8 pull requests #100356

Merged
merged 20 commits into from
Aug 10, 2022
Merged

Rollup of 8 pull requests #100356

merged 20 commits into from
Aug 10, 2022

Commits on Aug 2, 2022

  1. Stabilize backtrace

    tbodt committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    53a870c View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. Rename integer log* methods to ilog*

    This reflects the concensus from the libs team as reported at
    rust-lang#70887 (comment)
    
    Co-authored-by: Yosh Wuyts <[email protected]>
    eholk and yoshuawuyts committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    c18f220 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6d85bb9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fda5144 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e6478a3 View commit details
    Browse the repository at this point in the history
  5. Update rustdoc-json test

    eholk committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    0fd4db3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    457ff7c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    750a04e View commit details
    Browse the repository at this point in the history
  8. docs: remove repetition

    Signed-off-by: Vincenzo Palazzo <[email protected]>
    vincenzopalazzo committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    23bd7cb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2139682 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2022

  1. Configuration menu
    Copy the full SHA
    7a1bfc0 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#99573 - tbodt:stabilize-backtrace, r=yaahc

    Stabilize backtrace
    
    This PR stabilizes the std::backtrace module. As of rust-lang#99431, the std::Error::backtrace item has been removed, and so the rest of the backtrace feature is set to be stabilized.
    
    Previous discussion can be found in rust-lang#72981, rust-lang#3156.
    
    Stabilized API summary:
    ```rust
    pub mod std {
        pub mod backtrace {
            pub struct Backtrace { }
            pub enum BacktraceStatus {
                Unsupported,
                Disabled,
                Captured,
            }
            impl fmt::Debug for Backtrace {}
            impl Backtrace {
                pub fn capture() -> Backtrace;
                pub fn force_capture() -> Backtrace;
                pub const fn disabled() -> Backtrace;
                pub fn status(&self) -> BacktraceStatus;
            }
            impl fmt::Display for Backtrace {}
        }
    }
    ```
    
    `@yaahc`
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    e10f924 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#100069 - dpaoliello:linkordinal, r=michaelw…

    …oerister
    
    Add error if link_ordinal used with unsupported link kind
    
    The `link_ordinal` attribute only has an affect if the `raw-dylib` link kind is used, so add an error if it is used with any other link kind.
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    6b5ec41 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#100086 - JakobDegen:better-tests, r=wesleyw…

    …eiser
    
    Add more `// unit-test`s to MIR opt tests
    
    I only changed things which are hopefully completely uninteresting. I plan to submit more PRs that cover more files, but those cases will need some more complicated (and hence possibly controversial) changes, so I'll try and submit those in reasonably sized batches.
    
    r? rust-lang/wg-mir-opt
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    f9d6cc5 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#100332 - eholk:stabilize-ilog, r=scottmcm

    Rename integer log* methods to ilog*
    
    This reflects the concensus from the libs team as reported at rust-lang#70887 (comment).
    
    Joint work with `@yoshuawuyts.`
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    0cbecda View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#100334 - TaKO8Ki:suggest-missing-semicolon-…

    …before-array, r=fee1-dead
    
    Suggest a missing semicolon before an array
    
    fixes rust-lang#99658
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    354b831 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#100340 - spastorino:fix-100187, r=compiler-…

    …errors
    
    Iterate generics_def_id_map in reverse order to fix P-critical issue
    
    Closes rust-lang#100187
    
    Fixes a `P-critical` beta regression.
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    636f0c7 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#100345 - vincenzopalazzo:macros/is_number_d…

    …oc, r=joshtriplett
    
    docs: remove repetition in `is_numeric` function docs
    
    In rust-lang#99628 we introduce new docs for the `is_numeric` function, and this is a follow-up PR that removes some unnecessary repetition that may be introduced by some rebasing.
    
    `@rustbot` r? `@joshtriplett`
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    3b97de6 View commit details
    Browse the repository at this point in the history
  9. Update cargo

    ehuss committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    0a31aa2 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#100352 - ehuss:update-cargo, r=ehuss

    Update cargo
    
    7 commits in 4fd148c47e733770c537efac5220744945d572ef..ce40690a5e4e315d3dab0aae1eae69d0252c52ac
    2022-08-03 15:03:52 +0000 to 2022-08-09 22:32:17 +0000
    - Make the `rust-version` error recommend `cargo update --precise -p crate@ver` (rust-lang/cargo#10891)
    - resolver docs: link to version requirements syntax full explanation (rust-lang/cargo#10946)
    - Bump os_info to 3.5.0 (rust-lang/cargo#10943)
    - Mark --timings=html unstable in the document (rust-lang/cargo#10941)
    - Mention that aliases are recursive (rust-lang/cargo#10935)
    - Test if reserved filenames are allowed in Windows (rust-lang/cargo#10322)
    - improve error message for `no such subcommand` (rust-lang/cargo#10924)
    matthiaskrgr authored Aug 10, 2022
    Configuration menu
    Copy the full SHA
    f6ce6ab View commit details
    Browse the repository at this point in the history