summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2016-09-02 20:06:37 -0700
committerGitHub <noreply@github.com>2016-09-02 20:06:37 -0700
commit979d07097f3762bedc7259fb1350e89e3c367060 (patch)
treeebc43667e195e04f52d25cc5bc10c0e59be7e6f3
parentf9b73bfa25f2a2351fbd7355a7ffcf7945ca6ac8 (diff)
parentcea051922dc0ffcbe0a9d38bc722b46ffd666350 (diff)
Merge pull request #574 from dbcli/amjith/release-1.2.0
Update changelog for version 1.2.0 release.
-rw-r--r--changelog.rst41
1 files changed, 40 insertions, 1 deletions
diff --git a/changelog.rst b/changelog.rst
index ef728c14..c30afcff 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,3 +1,36 @@
+1.2.0
+=====
+
+Features:
+---------
+
+* Add more specifiers to pgcli prompt. (Thanks: `Julien Rouhaud`_).
+ ``\p`` for port info ``\#`` for super user and ``\i`` for pid.
+* Add `\watch` command to periodically execute a command. (Thanks: `Stuart Quin`_).
+ ``> SELECT * FROM django_migrations; \watch 1 /* Runs the command every second */``
+* Add command-line option --single-connection to prevent pgcli from using multiple connections. (Thanks: `Joakim Koljonen`_).
+* Add priority to the suggestions to sort based on relevance. (Thanks: `Joakim Koljonen`_).
+* Configurable null format via the config file. (Thanks: `Adrian Dries`_).
+* Add support for CTE aware auto-completion. (Thanks: `Darik Gamble`_).
+* Add host and user information to default pgcli prompt. (Thanks: `Lim H`_).
+* Better scoping for tables in insert statements to improve suggestions. (Thanks: `Joakim Koljonen`_).
+
+Bug Fixes:
+----------
+
+* Do not install setproctitle on cygwin. (Thanks: `Janus Troelsen`_).
+* Work around sqlparse crashing after AS keyword. (Thanks: `Joakim Koljonen`_).
+* Fix a crashing bug with named queries. (Thanks: `Joakim Koljonen`_).
+* Replace timestampz alias since AWS Redshift does not support it. (Thanks: `Tahir Butt`_).
+* Prevent pgcli from hanging indefinitely when Postgres instance is not running. (Thanks: `Darik Gamble`_)
+
+Internal Changes:
+-----------------
+
+* Upgrade to sqlparse-0.2.0. (Thanks: `Tiziano Müller`_).
+* Upgrade to pgspecial 1.6.0. (Thanks: `Stuart Quin`_).
+
+
1.1.0
=====
@@ -505,10 +538,16 @@ Improvements:
.. _`James Munson`: https://github.com/jmunson
.. _`Jonathan Slenders`: https://github.com/jonathanslenders
.. _`Fernando Mora`: https://github.com/fernandomora
-.. _`Stuart Quin`: https://github.com/stuartquin
.. _`Timothy Cleaver`: Timothy Cleaver
.. _`gtxx`: gtxx
.. _`Joakim Koljonen`: https://github.com/koljonen
.. _`Anže Pečar`: https://github.com/Smotko
.. _`Catherine Devlin`: https://github.com/catherinedevlin
.. _`Eric Wald`: https://github.com/eswald
+.. _`avdd`: https://github.com/avdd
+.. _`Adrian Dries`: Adrian Dries
+.. _`Julien Rouhaud`: https://github.com/rjuju
+.. _`Lim H`: Lim H
+.. _`Tahir Butt`: Tahir Butt
+.. _`Tiziano Müller`: https://github.com/dev-zero
+.. _`Janus Troelsen`: https://github.com/ysangkok