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
8 changes: 7 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ Upcoming (TBD)
Features
---------
* Update `cli_helpers` to v2.15.0 for `mysql_heavy` table format.

* Add `sqlglot` and `pygments` to `--checkup` output.

Bug Fixes
---------
* Respect `history_file` setting in the `[main]` section of `~/.myclirc`.
* Adapt test suite to pygments v2.20.0.


Documentation
---------
* Add support for other MySQL wire-compatible databases to `README.md`.


Internal
---------
* Factor `app_state.py`, `cli_args.py`, and `output.py` out of `main.py`.
Expand Down
3 changes: 3 additions & 0 deletions mycli/main_modes/checkup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ def _dependencies_checkup() -> None:
'cli_helpers',
'click',
'prompt_toolkit',
'pygments',
'pymysql',
'sqlglot',
'sqlglotc',
'tabulate',
]:
try:
Expand Down
3 changes: 3 additions & 0 deletions test/pytests/test_checkup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ def test_dependencies_checkup(monkeypatch, capsys) -> None:
'click': '2.0.0',
'prompt_toolkit': '3.0.0',
'pymysql': '4.0.0',
'pygments': '2.19.2',
'sqlglot': '30.7.0',
'sqlglotc': '30.7.0',
}

def fake_version(name: str) -> str:
Expand Down