python-packages: pgcli 0.16.3 -> 0.17.0

New features:
- Add support for auto-completing view names
- Add support for building RPM and DEB packages
- Add subsequence matching for completion
- Completion for built-in tables and temporary tables are suggested after
  entering a prefix of pg_
- Add place holder doc strings for special commands that are planned for
  implementation
- Updated version of prompt_toolkit, now matching braces are highlighted
- Added support of \\e command. Queries can be edited in an external editor
- Add special command \dT to show datatypes
- Add auto-completion support for datatypes in CREATE, SELECT etc
- Improve the auto-completion in WHERE clause with logical operators

Bug Fixes:
- Fix the table formatting while printing multi-byte characters
- Fix a crash when pg_catalog was present in search path
- Fixed a bug that broke \e when prompt_tookit was updated
- Fix the display of triggers as shown in the \d output
- Fix broken auto-completion for INNER JOIN, LEFT JOIN etc
- Fix incorrect super() calls in pgbuffer, pgtoolbar and pgcompleter
- Add missing schema completion for CREATE and DROP statements
- Minor fixes around cursor cleanup
This commit is contained in:
Tobias Geerinckx-Rice 2015-05-26 16:20:52 +02:00
parent 164a5ef32a
commit 184682d4d3

@ -8417,10 +8417,10 @@ let
pgcli = buildPythonPackage rec {
name = "pgcli-${version}";
version = "0.16.3";
version = "0.17.0";
src = pkgs.fetchFromGitHub {
sha256 = "12zizpj3fqbf90kj43zylpaqi3hhlihfg9xpzqa0aysiqri0ydx2";
sha256 = "0fnzhsir1m7a2rlh3iqinrz5i38ssfg9p7s60bkyy55614l146yg";
rev = "v${version}";
repo = "pgcli";
owner = "amjith";