fix(output): standardize table styles and add Cloud ACL formatters#764
Merged
joshrotenberg merged 2 commits intomainfrom Mar 3, 2026
Merged
fix(output): standardize table styles and add Cloud ACL formatters#764joshrotenberg merged 2 commits intomainfrom
joshrotenberg merged 2 commits intomainfrom
Conversation
…761) Add #[derive(Tabled)] row structs to all Enterprise list and get commands, replacing the generic print_as_table() which dumped all JSON fields uncurated. This matches the Cloud command patterns established in PR #760. Row structs added: DatabaseRow, NodeRow, UserRow, RoleRow, AclRow, ModuleRow, ShardRow, ProxyRow. Get commands use DetailRow for vertical key-value display. Cluster get also uses DetailRow. Output branching uses resolve_auto() (now public) to render curated tables on TTY and pass through JSON/YAML for piped output. JMESPath queries are applied before table rendering.
Polishes output formatting consistency across the codebase: - Replace all Style::rounded()/Style::modern() with Style::blank() - Add curated table formatters for Cloud ACL commands (rules, roles, users) - Use output_with_pager where println! was used for table output - Re-export resolve_auto from cloud utils for format branching
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Style::blank()across Cloud commands (replacingStyle::rounded()andStyle::modern())output_with_pagerfor task list table output (was usingprintln!)resolve_autofrom cloud utils for consistent format branchingCloses #762
Test plan
cargo fmt --all -- --checkcargo clippy --all-targets --all-features -- -D warningscargo test --lib --all-features(72 tests pass)cargo test --test '*' --all-features(all integration tests pass)cargo doc --no-deps --all-features