From 25b8d622f8012ce7c10a4a924ba5baa5c8b110d7 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 24 Jan 2026 14:24:23 -0500 Subject: [PATCH] simplify binary value rendering by upgrading cli_helpers to v2.8.1. The previous version of cli_helpers attempted to UTF-8 decode binary values, leading to treating some values differently than others. --- changelog.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index b961d394..85140e3b 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,11 @@ Features * Right-align numeric columns, and make the behavior configurable. +Bug Fixes +-------- +* Render binary values more consistently as hex literals. + + 1.47.0 (2026/01/24) ============== diff --git a/pyproject.toml b/pyproject.toml index 8beb9cd1..d48f5a89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "sqlparse>=0.3.0,<0.6.0", "sqlglot[rs] == 27.*", "configobj >= 5.0.5", - "cli_helpers[styles] >= 2.8.0", + "cli_helpers[styles] >= 2.8.1", "pyperclip >= 1.8.1", "pycryptodomex", "pyfzf >= 0.3.1",