diff --git a/changelog.md b/changelog.md index 1a204069..75c39c29 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,7 @@ Upcoming Release (TBD) Features -------- * Show username in password prompt. +* Add a `mysql` and `mysql_unicode` table format. Bug Fixes @@ -21,6 +22,7 @@ Internal * CI: turn off fail-fast matrix strategy. * Remove unused Python 2 compatibility code. * Also run CI tests without installing SSH extra dependencies. +* Update `cli_helpers` dependency, and list of table formats. 1.36.0 (2025/07/19) diff --git a/mycli/myclirc b/mycli/myclirc index 17e55cd0..1a9d728f 100644 --- a/mycli/myclirc +++ b/mycli/myclirc @@ -33,11 +33,13 @@ timing = True # Beep after long-running queries are completed; 0 to disable. beep_after_seconds = 0 -# Table format. Possible values: ascii, double, github, -# psql, plain, simple, grid, fancy_grid, pipe, orgtbl, rst, mediawiki, html, -# latex, latex_booktabs, textile, moinmoin, jira, vertical, tsv, tsv_noheader, -# csv, csv-noheader, jsonl, jsonl_unescaped. -# Recommended: ascii +# Table format. Possible values: ascii, ascii_escaped, csv, csv-noheader, +# csv-tab, csv-tab-noheader, double, fancy_grid, github, grid, html, jira, +# jsonl, jsonl_escaped, latex, latex_booktabs, mediawiki, minimal, moinmoin, +# mysql, mysql_unicode, orgtbl, pipe, plain, psql, psql_unicode, rst, simple, +# sql-insert, sql-update, sql-update-1, sql-update-2, textile, tsv, +# tsv_noheader, vertical. +# Recommended: ascii. table_format = ascii # Redirected otuput format diff --git a/pyproject.toml b/pyproject.toml index 6a1076b4..7b98db9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "sqlparse>=0.3.0,<0.6.0", "sqlglot[rs] == 26.*", "configobj >= 5.0.5", - "cli_helpers[styles] >= 2.6.0", + "cli_helpers[styles] >= 2.7.0", "pyperclip >= 1.8.1", "pyaes >= 1.6.1", "pyfzf >= 0.3.1",