summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2015-08-03 08:49:53 -0700
committerAmjith Ramanujam <amjith.r@gmail.com>2015-08-03 08:49:53 -0700
commit863987dcba99e63c1b652fbbbb051d0353f28609 (patch)
tree42dd1b308fd9cc02a381d55768fe06b2a22fab1d
parent68aba40b2dfc9ae68657bcd2139a1897f3ab7f84 (diff)
parent0bd63653eceaa467e49e38290a38775bc390a47b (diff)
Merge pull request #314 from dbcli/amjith/changelog-0.19.0
Amjith/changelog 0.19.0
-rw-r--r--AUTHORS70
-rw-r--r--changelog.rst43
2 files changed, 81 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:
--------
diff --git a/changelog.rst b/changelog.rst
index ba42307e..8d2a36ea 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 engine 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