1
0
Fork 0
pgcli/changelog.rst

106 lines
3.4 KiB
ReStructuredText
Raw Normal View History

2015-02-01 00:38:47 +00:00
Current
=======
2015-02-05 02:32:50 +00:00
Features:
---------
* Add syntax color styles to config.
* Add auto-completion for COPY statements.
2015-02-01 00:38:47 +00:00
Bug Fixes:
----------
* Treat boolean values as strings instead of ints.
2015-02-03 03:00:00 +00:00
* Make \di, \dv and \dt to be schema aware. (Thanks: darikg_)
2015-02-05 06:03:51 +00:00
* Make column name display unicode compatible.
2015-02-01 00:38:47 +00:00
2015-01-31 23:26:33 +00:00
0.14.0
======
2015-01-22 05:45:38 +00:00
Features:
---------
* Add alias completion support to ON keyword. (Thanks: `Iryna Cherniavska`_)
* Add LIMIT keyword to completion.
2015-01-27 07:26:07 +00:00
* Auto-completion for Postgres schemas. (Thanks: darikg_)
* Better unicode handling for datatypes, dbname and roles.
2015-01-31 23:41:11 +00:00
* Add \timing command to time the sql commands.
This can be set via config file (~/.pgclirc) using `timing = True`.
* Add different table styles for displaying output.
This can be changed via config file (~/.pgclirc) using `table_format = fancy_grid`.
* Add confirmation before printing results that have more than 1000 rows.
2015-01-22 05:45:38 +00:00
Bug Fixes:
----------
* Performance improvements to expanded view display (\x).
* Cast bytea files to text while displaying. (Thanks: `Daniel Rocco`_)
* Added a list of reserved words that should be auto-escaped.
2015-01-30 06:23:09 +00:00
* Auto-completion is now case-insensitive.
* Fix the broken completion for multiple sql statements. (Thanks: darikg_)
2015-01-22 05:45:38 +00:00
2015-01-15 01:12:02 +00:00
0.13.0
======
2015-01-14 06:16:41 +00:00
Features:
---------
* Add -d/--dbname option to the commandline.
eg: pgcli -d database
* Add the username as an argument after the database.
eg: pgcli dbname user
Bug Fixes:
----------
* Fix the crash when \c fails.
* Fix the error thrown by \d when triggers are present.
2015-01-15 01:07:29 +00:00
* Fix broken behavior on \?. (Thanks: darikg_)
2015-01-14 06:16:41 +00:00
0.12.0
======
2015-01-10 08:51:45 +00:00
Features:
---------
* Upgrade to prompt_toolkit version 0.26 (Thanks: https://github.com/macobo)
* Adds Ctrl-left/right to move the cursor one word left/right respectively.
* Internal API changes.
* IPython integration through `ipython-sql`_ (Thanks: https://github.com/darikg)
* Add an ipython magic extension to embed pgcli inside ipython.
* Results from a pgcli query are sent back to ipython.
* Multiple sql statments in the same line separated by semi-colon. (Thanks: https://github.com/macobo)
2015-01-10 08:51:45 +00:00
.. _`ipython-sql`: https://github.com/catherinedevlin/ipython-sql
Bug Fixes:
----------
* Fix 'message' attribute not found exception in Python 3. (Thanks: https://github.com/GMLudo)
* Use the database username as the database name instead of defaulting to OS username. (Thanks: https://github.com/fpietka)
2015-01-12 08:40:10 +00:00
* Auto-completion for auto-escaped column/table names.
2015-01-13 07:55:46 +00:00
* Fix i-reverse-search to work in prompt_toolkit version 0.26.
2015-01-10 05:17:16 +00:00
0.11.0
2015-01-10 01:32:32 +00:00
======
Features:
---------
* Add \dn command. (Thanks: https://github.com/CyberDem0n)
* Add \x command. (Thanks: https://github.com/stuartquin)
* Auto-escape special column/table names. (Thanks: https://github.com/qwesda)
* Cancel a command using Ctrl+C. (Thanks: https://github.com/macobo)
* Faster startup by reading all columns and tables in a single query. (Thanks: https://github.com/macobo)
* Improved psql compliance with env vars and password prompting. (Thanks: https://github.com/darikg)
Bug Fixes:
----------
* Fix the broken behavior of \d+. (Thanks: https://github.com/macobo)
* Fix a crash during auto-completion. (Thanks: https://github.com/Erethon)
Improvements:
-------------
* Faster test runs on TravisCI. (Thanks: https://github.com/macobo)
* Integration tests with Postgres!! (Thanks: https://github.com/macobo)
2015-01-15 01:07:29 +00:00
.. _darikg: https://github.com/darikg
2015-01-22 05:45:38 +00:00
.. _`Iryna Cherniavska`: https://github.com/j-bennet
.. _`Daniel Rocco`: https://github.com/drocco007