summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-26 16:20:52 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-26 16:20:52 +0200
commit184682d4d3ad66960c4025c92732ac25d3e1f8f9 (patch)
treeb6d37b1ca2e4819a156e3fc955e16f2ce6ce1581 /pkgs
parent164a5ef32a371ba160f9b90e944c1d46af3497fb (diff)
downloadnixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.tar
nixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.tar.gz
nixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.tar.bz2
nixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.tar.lz
nixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.tar.xz
nixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.tar.zst
nixlib-184682d4d3ad66960c4025c92732ac25d3e1f8f9.zip
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
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix4
1 files 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";