From 184682d4d3ad66960c4025c92732ac25d3e1f8f9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 May 2015 16:20:52 +0200 Subject: [PATCH] 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 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e1658c58f81c..3fa7895cfe1f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";