Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Upcoming Release (TBD)
Features
--------
* Show username in password prompt.
* Add a `mysql` and `mysql_unicode` table format.


Bug Fixes
Expand All @@ -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)
Expand Down
12 changes: 7 additions & 5 deletions mycli/myclirc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down