From a68071dd28855666195690e53292909de78e0e9a Mon Sep 17 00:00:00 2001 From: Nicolas Vanelslande Date: Mon, 28 Oct 2024 11:49:36 +0000 Subject: [PATCH] Bump bb8 from 0.8.1 to 0.8.6 (#709) * Update bb8 to 0.8.6 To get https://github.com/djc/bb8/pull/186 and https://github.com/djc/bb8/pull/189 which fix potential deadlocks (https://github.com/djc/bb8/issues/154). Also, this (https://github.com/djc/bb8/pull/225) was needed to prevent a connection leak which was conveniently spotted in our integration tests. * Ignore ./.bundle (created by dev console) --------- Co-authored-by: Jose Fernandez (magec) --- .gitignore | 1 + Cargo.lock | 5 ++--- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ae134814..02d8751d 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ dev/cache !dev/cache/.keepme .venv **/__pycache__ +.bundle \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index e2f89853..fb58c7b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -192,12 +192,11 @@ checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" [[package]] name = "bb8" -version = "0.8.1" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98b4b0f25f18bcdc3ac72bdb486ed0acf7e185221fd4dc985bc15db5800b0ba2" +checksum = "d89aabfae550a5c44b43ab941844ffcd2e993cb6900b342debf59e9ea74acdb8" dependencies = [ "async-trait", - "futures-channel", "futures-util", "parking_lot", "tokio", diff --git a/Cargo.toml b/Cargo.toml index f75e9185..21cfb0c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" tokio = { version = "1", features = ["full"] } bytes = "1" md-5 = "0.10" -bb8 = "0.8.1" +bb8 = "=0.8.6" async-trait = "0.1" rand = "0.8" chrono = "0.4"