From 1f8f57c8fce2e4d79057dd71808e2602a5e431f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 17:21:25 +0000 Subject: [PATCH] chore(deps): bump comfy-table from 7.2.2 to 8.0.0 (#11242) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Douwe Osinga Co-authored-by: Douwe Osinga --- Cargo.lock | 4 ++-- crates/goose-cli/Cargo.toml | 2 +- crates/goose-cli/src/session/mod.rs | 2 +- crates/goose-cli/src/session/output.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 052bf498c..363019dec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2477,9 +2477,9 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.2.2" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" +checksum = "136c8c4c3823846e8ba6d4bda011b4e5d5827b8bb0ac26c31f9ab31abe9f54f2" dependencies = [ "unicode-segmentation", "unicode-width 0.2.2", diff --git a/crates/goose-cli/Cargo.toml b/crates/goose-cli/Cargo.toml index ed0ad5918..b24d781ce 100644 --- a/crates/goose-cli/Cargo.toml +++ b/crates/goose-cli/Cargo.toml @@ -61,7 +61,7 @@ open = { version = "5", default-features = false } url = { workspace = true } urlencoding = { workspace = true } clap_complete = { version = "4", default-features = false } -comfy-table = { version = "7", default-features = false } +comfy-table = { version = "8", default-features = false } sha2 = { workspace = true } sigstore-verify = { version = "0.11", default-features = false, optional = true } axum.workspace = true diff --git a/crates/goose-cli/src/session/mod.rs b/crates/goose-cli/src/session/mod.rs index b4fec8ca7..5f8d1e76b 100644 --- a/crates/goose-cli/src/session/mod.rs +++ b/crates/goose-cli/src/session/mod.rs @@ -1311,7 +1311,7 @@ impl CliSession { let mut table = Table::new(); table.set_content_arrangement(ContentArrangement::Dynamic); - table.load_preset(presets::ASCII_FULL); + table.load_style(presets::ASCII_FULL); table.set_header(vec!["Skill", "Location", "Description"]); let mut sorted_skills = skills; diff --git a/crates/goose-cli/src/session/output.rs b/crates/goose-cli/src/session/output.rs index 6c289531b..33588a171 100644 --- a/crates/goose-cli/src/session/output.rs +++ b/crates/goose-cli/src/session/output.rs @@ -1146,7 +1146,7 @@ fn print_table(table_lines: &[&str], theme: Theme) { let mut table = Table::new(); table.set_content_arrangement(ContentArrangement::Dynamic); - table.load_preset(presets::ASCII_MARKDOWN); + table.load_style(presets::ASCII_MARKDOWN); let mut rows: Vec> = Vec::new(); let mut alignments: Vec = Vec::new();