Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rustls/rustls
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v/0.21.10
Choose a base ref
...
head repository: rustls/rustls
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v/0.21.11
Choose a head ref
  • 17 commits
  • 32 files changed
  • 3 contributors

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    3ad7a96 View commit details
    Browse the repository at this point in the history
  2. API tests: ignore warnings in ClientStorage mock

    This is a complete mock for `rustls::client::ClientSessionStore`,
    but we don't have tests that use 100% of its abilities.
    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    8309f4f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    07082c5 View commit details
    Browse the repository at this point in the history
  4. Fix clippy::use_self warnings

    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    2dec5b8 View commit details
    Browse the repository at this point in the history
  5. Address clippy::assigning_clones

    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    221577f View commit details
    Browse the repository at this point in the history
  6. tests: fix implied_bounds_in_impls clippy warn

    ```
    error: this bound is already specified as the supertrait of `DerefMut`
       --> rustls/tests/./common/mod.rs:596:35
        |
    596 |     client: &mut (impl DerefMut + Deref<Target = ConnectionCommon<impl SideData>>),
        |                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls
    help: try removing this bound
        |
    596 -     client: &mut (impl DerefMut + Deref<Target = ConnectionCommon<impl SideData>>),
    596 +     client: &mut (impl DerefMut<Target = ConnectionCommon<impl SideData>>),
    ```
    cpu authored and ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    3f40e18 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e03556f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5e7a06c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d082e83 View commit details
    Browse the repository at this point in the history
  10. Apply clippy suggestions from Rust 1.72

    djc authored and ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    3587d98 View commit details
    Browse the repository at this point in the history
  11. Correct assorted clippy warnings in test code

    Subset of 96a7249 from main.
    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    7e0e8ab View commit details
    Browse the repository at this point in the history
  12. server::handy: fix new nightly clippy lint

    "warning: you are explicitly cloning with `.map()`"
    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    9f86487 View commit details
    Browse the repository at this point in the history
  13. Don't deny warnings from nightly clippy

    Since these can be added at any time.
    djc authored and ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    e163587 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2f2aae1 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    20f35df View commit details
    Browse the repository at this point in the history
  16. complete_io: bail out if progress is impossible

    Have a test that demonstrates another route to reaching this
    state: a fully & cleanly closed connection.
    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    ebcb478 View commit details
    Browse the repository at this point in the history
  17. Prepare 0.21.11

    ctz committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    7b8d1db View commit details
    Browse the repository at this point in the history
Loading