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: ChorusOne/rvcr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: whamcloud/rvcr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 5 commits
  • 3 files changed
  • 3 contributors

Commits on Apr 21, 2024

  1. chore(#21): Update reqwest middleware dependencies

    lededje committed Apr 21, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    74a2e47 View commit details

Commits on Nov 15, 2024

  1. Bump openssl from 0.10.64 to 0.10.68

    Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.64 to 0.10.68.
    - [Release notes](https://github.com/sfackler/rust-openssl/releases)
    - [Commits](sfackler/rust-openssl@openssl-v0.10.64...openssl-v0.10.68)
    
    ---
    updated-dependencies:
    - dependency-name: openssl
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 15, 2024
    Copy the full SHA
    9c1fec9 View commit details
  2. Merge pull request #2 from lededje/update-reqwest-middleware

    chore(#21): Update reqwest middleware dependencies
    spoutn1k authored Nov 15, 2024
    Copy the full SHA
    0f05778 View commit details
  3. Use reqwest-middleware 0.4

    spoutn1k committed Nov 15, 2024
    Copy the full SHA
    c627bf9 View commit details
  4. Merge pull request #1 from whamcloud/dependabot/cargo/openssl-0.10.68

    Bump openssl from 0.10.64 to 0.10.68
    spoutn1k authored Nov 15, 2024
    Copy the full SHA
    2af5a6b View commit details
Showing with 123 additions and 61 deletions.
  1. +119 −57 Cargo.lock
  2. +3 −3 Cargo.toml
  3. +1 −1 src/lib.rs
176 changes: 119 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -30,10 +30,10 @@ base64 = "0.21.0"
bytes = "1"
zip = { version = "0.6", optional = true }
chrono = { version = "0.4", features = ["serde"] }
http = "0.2"
http = "1.0.0"
lazy_static = "1.4"
reqwest = { version = "0.11" }
reqwest-middleware = "0.2.4"
reqwest = { version = "0.12.4" }
reqwest-middleware = "0.4.0"
serde = "1"
serde_json = "1"
task-local-extensions = "0.1.4"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -396,7 +396,7 @@ impl Middleware for VCRMiddleware {
async fn handle(
&self,
req: reqwest::Request,
extensions: &mut task_local_extensions::Extensions,
extensions: &mut http::Extensions,
next: reqwest_middleware::Next<'_>,
) -> reqwest_middleware::Result<reqwest::Response> {
let vcr_request = self.request_to_vcr(req.try_clone().unwrap());