From 8bfcc87e83e0d763a1625b1d78d33c2b71cf7a8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 06:46:26 +0000 Subject: [PATCH 1/2] Update ui_test requirement from 0.29.1 to 0.30.1 Updates the requirements on [ui_test](https://github.com/oli-obk/ui_test) to permit the latest version. - [Release notes](https://github.com/oli-obk/ui_test/releases) - [Changelog](https://github.com/oli-obk/ui_test/blob/main/CHANGELOG.md) - [Commits](https://github.com/oli-obk/ui_test/compare/0.29.1...0.30.1) --- updated-dependencies: - dependency-name: ui_test dependency-version: 0.30.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tools/compile_fail_utils/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/compile_fail_utils/Cargo.toml b/tools/compile_fail_utils/Cargo.toml index 453b7ea7ad9f1..8668fdaa9e94f 100644 --- a/tools/compile_fail_utils/Cargo.toml +++ b/tools/compile_fail_utils/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" publish = false [dependencies] -ui_test = "0.29.1" +ui_test = "0.30.1" [[test]] name = "example" From d7b6264df71d754973b470ae0b2f953066e0b3f6 Mon Sep 17 00:00:00 2001 From: mnmaita <47983254+mnmaita@users.noreply.github.com> Date: Tue, 24 Jun 2025 10:58:04 +0200 Subject: [PATCH 2/2] Fixes breaking change --- tools/compile_fail_utils/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/compile_fail_utils/src/lib.rs b/tools/compile_fail_utils/src/lib.rs index ecd4f34c687d7..28157400a7cdb 100644 --- a/tools/compile_fail_utils/src/lib.rs +++ b/tools/compile_fail_utils/src/lib.rs @@ -123,7 +123,8 @@ pub fn test_with_multiple_configs( let emitter: Box = if env::var_os("CI").is_some() { Box::new(( Text::verbose(), - Gha:: { + Gha { + group: true, name: test_name.into(), }, ))