Skip to content
Open
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
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ Contributors:
* Tommi Kyntölä (kynde)
* Diego
* Chris (ChrisJr404)
* Pieter Ouwerkerk (pouwerkerk)

Creator:
--------
Expand Down
4 changes: 4 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Bug fixes:
* Fix ``TypeError: cannot use a string pattern on a bytes-like object`` when
completion metadata comes back as bytes (e.g. ``SQL_ASCII`` client encoding).
* Suggest columns, not datatypes, after a column literally named ``type`` in a ``SELECT`` list.
* Allow ``sqlparse`` 0.6.x. sqlparse 0.6.0 fixes several denial-of-service
issues (CVE-2026-59893, CVE-2026-54284, CVE-2026-71491) and a string-escaping
bug (CVE-2026-59894); the previous ``<0.6`` cap prevented users from
installing the fixed release.

Features:
---------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
"prompt_toolkit>=2.0.6,<4.0.0",
"psycopg >= 3.0.14; sys_platform != 'win32'",
"psycopg-binary >= 3.0.14; sys_platform == 'win32'",
"sqlparse >=0.3.0,<0.6",
"sqlparse >=0.3.0,<0.7",
"configobj >= 5.0.6",
"cli_helpers[styles] >= 2.4.0",
# setproctitle is used to mask the password when running `ps` in command line.
Expand Down