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

feat!: update testcontainers to 0.23.0 #216

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ kwok = []
[dependencies]
# TODO: update parse-display after MSRV>=1.80.0 bump of `testcontainer-rs` and `testcontainers-modules`
parse-display = { version = "0.9.1", optional = true, default-features = false, features = [] }
testcontainers = { version = "0.22.0" }
testcontainers = { version = "0.23.0" }


[dev-dependencies]
Expand Down Expand Up @@ -92,7 +92,7 @@ serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
surrealdb = { version = "1.2.0" }
tar = "0.4.40"
testcontainers = { version = "0.22.0", features = ["blocking"] }
testcontainers = { version = "0.23.0", features = ["blocking"] }
# To use Tiberius on macOS, rustls is needed instead of native-tls
# https://github.com/prisma/tiberius/tree/v0.12.2#encryption-tlsssl
tiberius = { version = "0.12.2", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/clickhouse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ mod tests {

// testing http endpoint
// curl http://localhost:8123/ping and check if the response is "Ok."
let response = Client::new().get(&format!("{}/ping", url)).send().await?;
let response = Client::new().get(format!("{}/ping", url)).send().await?;
assert_eq!(response.status(), 200);

// create table
Expand Down
2 changes: 1 addition & 1 deletion src/openldap/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ impl Image for OpenLDAP {
#[cfg(test)]
mod tests {
use ldap3::{Ldap, LdapConnAsync, LdapError, Scope, SearchEntry};
use testcontainers::{runners::AsyncRunner, ImageExt};
use testcontainers::runners::AsyncRunner;

use super::*;

Expand Down
2 changes: 1 addition & 1 deletion src/surrealdb/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ mod tests {
opt::auth::Root,
Surreal,
};
use testcontainers::{runners::AsyncRunner, ImageExt};
use testcontainers::runners::AsyncRunner;

use super::*;

Expand Down
Loading