From 39b52430355edbf4906b200aa143d5052fdebf1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 19:36:34 +0000 Subject: [PATCH 1/2] chore(deps): update testcontainers requirement from ^0.14 to ^0.15 Updates the requirements on [testcontainers](https://github.com/testcontainers/testcontainers-rs) to permit the latest version. - [Release notes](https://github.com/testcontainers/testcontainers-rs/releases) - [Changelog](https://github.com/testcontainers/testcontainers-rs/blob/dev/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-rs/compare/0.14.0...0.15) --- updated-dependencies: - dependency-name: testcontainers dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/xtask/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index 93c297a7..af5ee6da 100644 --- a/crates/xtask/Cargo.toml +++ b/crates/xtask/Cargo.toml @@ -22,7 +22,7 @@ walkdir = "^2" semver = "^1.0.16" ureq = "^2.6.0" regex = "^1.7" -testcontainers = "^0.14" +testcontainers = "^0.15" pathdiff = "^0.2.1" sys-info = "^0.9" From 7612c55a209472b1e16f2ba82c68086fcfb7a1d3 Mon Sep 17 00:00:00 2001 From: Andrey Yantsen Date: Mon, 23 Oct 2023 21:09:14 +0100 Subject: [PATCH 2/2] fix(xtask): make it compatible with the new testcontainers --- crates/xtask/src/modify_data.rs | 2 +- crates/xtask/src/test.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/xtask/src/modify_data.rs b/crates/xtask/src/modify_data.rs index 79849f4b..dad15a1a 100644 --- a/crates/xtask/src/modify_data.rs +++ b/crates/xtask/src/modify_data.rs @@ -4,7 +4,7 @@ use crate::{ utils::copy_tree, }; use std::{fs::remove_dir_all, io::Write}; -use testcontainers::{clients, core::WaitFor, images::generic::GenericImage, RunnableImage}; +use testcontainers::{clients, core::WaitFor, GenericImage, RunnableImage}; use xshell::{cmd, Shell}; impl flags::ModifyData { diff --git a/crates/xtask/src/test.rs b/crates/xtask/src/test.rs index 524dffa9..263b6a59 100644 --- a/crates/xtask/src/test.rs +++ b/crates/xtask/src/test.rs @@ -10,7 +10,7 @@ use plex_api::{ HttpClientBuilder, MyPlex, MyPlexBuilder, Server, }; use std::{io::Write, time::Duration}; -use testcontainers::{clients, core::WaitFor, images::generic::GenericImage, RunnableImage}; +use testcontainers::{clients, core::WaitFor, GenericImage, RunnableImage}; use tokio::{runtime::Runtime, time::sleep}; use xshell::{cmd, Shell};