From 57e436ace10069ccc973020086dc193f72979573 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Sun, 2 Aug 2015 17:09:17 -0700 Subject: Update changelog. --- changelog.rst | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/changelog.rst b/changelog.rst index ba42307e..86b04582 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,3 +1,43 @@ +0.19.0 +====== + +Features: +--------- + +* Wider completion menus can be enabled via the config file. (Thanks: `Jonathan Slenders`_) + + Open the config file (~/.pgclirc) and check if you have + ``wider_completion_menu`` option available. If not add it in and set it to + ``True``. + +* Completion menu now has metadata information such as schema, table, column, view, etc., next to the suggestions. (Thanks: `Darik Gamble`_) +* Customizable history file location via config file. (Thanks: `Çağatay Yüksel`_) + + Add this line to your config file (~/.pgclirc) to customize where to store the history file. + +:: + + history_file = /path/to/history/file + +* Add support for running queries from a file using ``\i`` special command. (Thanks: `Michael Kaminsky`_) + +BugFixes: +--------- + +* Always use utf-8 for database encoding regardless of the default encoding used by the database. +* Fix for None dereference on ``\d schemaname.`` with sequence. (Thanks: `Nathan Jhaveri`_) +* Fix a crashing bug in the autocompletion enginer for some ``JOIN`` queries. +* Handle KeyboardInterrupt in pager and not quit pgcli as a consequence. + +Internal Changes: +----------------- + +* Added more behaviorial tests (Thanks: `Iryna Cherniavska`_) +* Added code coverage to the tests. (Thanks: `Iryna Cherniavska`_) +* Run behaviorial tests as part of TravisCI (Thanks: `Iryna Cherniavska`_) +* Upgraded prompt_toolkit version to 0.45 (Thanks: `Jonathan Slenders`_) +* Update the minumum required version of click to 4.1. + 0.18.0 ====== @@ -280,3 +320,6 @@ Improvements: .. _`François Pietka`: https://github.com/fpietka .. _`Ali Kargın`: https://github.com/sancopanco .. _`Brett Atoms`: https://github.com/brettatoms +.. _`Nathan Jhaveri`: https://github.com/nathanjhaveri +.. _`Çağatay Yüksel`: https://github.com/cagatay +.. _`Michael Kaminsky`: https://github.com/mikekaminsky -- cgit v1.2.3 From 064e670eaad711abceda0e08af72a81e8d0bb45b Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Sun, 2 Aug 2015 17:11:40 -0700 Subject: Update AUTHORS file. --- AUTHORS | 70 +++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 38 insertions(+), 32 deletions(-) diff --git a/AUTHORS b/AUTHORS index a3956b41..7377618d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,39 +1,45 @@ Many thanks to the following contributors. +Core Devs: +---------- + * Darik Gamble + * Iryna Cherniavska + * Daniel Rocco + * Karl-Aksel Puulmann + Contributors: ------------- -Darik Gamble -Iryna Cherniavska -Karl-Aksel Puulmann -Daniel Rocco -Daniel Schwarz -Brett -Stuart Quin -xalley -Alexander Kukushkin -François Pietka -Jonathan Slenders -Jay Zeng -Ludovic Gasc (GMLudo) -Marc Abramowitz -Nick Hahner -Jacob Magnusson -Dhaivat Pandit -David Celis -Sven-Hendrik Haase -Tiago Ribeiro -Vignesh Anand -Charlie Arnold -dwalmsley -rrampage -while0pass -xa -Eric Workman -Dionysis Grigoropoulos -Ali Kargın -Guewen Baconnier -Hans Roman -Dimitar Roustchev + * Brett + * Daniel Schwarz + * Stuart Quin + * xalley + * Jonathan Slenders + * Michael Kaminsky + * Alexander Kukushkin + * François Pietka + * Jay Zeng + * Ludovic Gasc (GMLudo) + * Marc Abramowitz + * Nick Hahner + * Jacob Magnusson + * Dionysis Grigoropoulos + * Dimitar Roustchev + * xa + * Ali Kargın + * Dhaivat Pandit + * Nathan Jhaveri + * Çağatay Yüksel + * David Celis + * Sven-Hendrik Haase + * Tiago Ribeiro + * Vignesh Anand + * Charlie Arnold + * dwalmsley + * rrampage + * while0pass + * Hans Roman + * Guewen Baconnier + * Eric Workman Creator: -------- -- cgit v1.2.3 From 0bd63653eceaa467e49e38290a38775bc390a47b Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Mon, 3 Aug 2015 08:49:26 -0700 Subject: Fix a typo in changelog. --- changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.rst b/changelog.rst index 86b04582..8d2a36ea 100644 --- a/changelog.rst +++ b/changelog.rst @@ -26,7 +26,7 @@ BugFixes: * Always use utf-8 for database encoding regardless of the default encoding used by the database. * Fix for None dereference on ``\d schemaname.`` with sequence. (Thanks: `Nathan Jhaveri`_) -* Fix a crashing bug in the autocompletion enginer for some ``JOIN`` queries. +* Fix a crashing bug in the autocompletion engine for some ``JOIN`` queries. * Handle KeyboardInterrupt in pager and not quit pgcli as a consequence. Internal Changes: -- cgit v1.2.3