summaryrefslogtreecommitdiffstats
path: root/pgcli
AgeCommit message (Collapse)Author
2019-04-05Releasing version 2.1.0v2.1.0Irina Truong
2019-03-22Ask for password in case of incorrect password.Irina Truong
2019-03-18Fix for https://github.com/dbcli/pgcli/issues/1014.Irina Truong
2019-03-16Merge branch 'master' into system-errorAmjith Ramanujam
2019-03-16Remove the expand_tab option from pgclirc.Amjith Ramanujam
2019-03-16Merge branch 'master' into tab-on-line-startAmjith Ramanujam
2019-03-16Remove the unnecessary try/except.Amjith Ramanujam
2019-03-16Access only the required element from the tuple.Amjith Ramanujam
2019-03-15Catch and ignore the system interrupt.Amjith Ramanujam
2019-03-04Fix crash when using --single-connection.Irina Truong
2019-02-23Add reconnect automatically enhancement (#1009)Scott Brenstuhl
* Adding reconnect automatically enhancement * files for pr checklist * changelog fixes * setting auto-reconnect to be the default * fix issue of getting logged queries instead of most recent * travisci pep8 check issue
2019-02-12keybinding for dismissing autocompletelist (#1007)ಠ_ಠ
* +added esc key to dismiss the autocomple list * +added esc key to dismiss the autocomple list
2019-01-21Determine hstore OID from the system view (#992)Marcin Cieślak
Avoid error message on the server side if hstore extension is not installed in the current database. Issue: https://github.com/dbcli/pgcli/issues/991
2019-01-03Support multihost connection string (#978)Mikhail Elovskikh
* Switch to psycopg2 parse_dsn instead of urlparse * Added wronglink to contributors and updated changelog * Fix test codestyle * Support for PGPORT customization in tests * Support for PGPORT customization in tests * Refactored PGExecute init and moved short_host generation to object property * Fix test util codestyle * Fix local tests run * Store PGExecute initial params in _conn_params and added PGExecute.copy method * Fix codestyle * Added docstring to PGExecute.copy() method
2019-01-02Releasing version 2.0.2v2.0.2Irina Truong
2019-01-02Remove some functions completions (#982)Irina Truong
Remove extension and private functions from completer.
2018-12-27pep8.Irina Truong
2018-12-27Wrap pgcli completer into ThreadedCompleter.Irina Truong
2018-12-03pep8.Irina Truong
2018-12-01Time execution separately.Irina Truong
2018-11-30allow passing -u flag (lowercase) to specify username (#975)igncampa
* added -u flag
2018-11-18Releasing version 2.0.1v2.0.1Irina Truong
2018-11-18Fix the StopIteration issue in Python 3.7 (#971)Amjith Ramanujam
* Fix the StopIteration issue in Python 3.7
2018-11-17Enable suspend using C-Z. (#970)Amjith Ramanujam
* Enable suspend using C-Z. * Update changelog.
2018-11-17Merge branch 'master' into tab-on-line-startAmjith Ramanujam
2018-11-17Merge branch 'master' into bugfix/named-queries-from-configAmjith Ramanujam
2018-11-17Merge pull request #961 from DanEEStar/feature/dbname-username-optionsAmjith Ramanujam
Refactor dbname and username options/arguments to match `psql`-behaviour
2018-11-11Require prompt_toolkit>=2.0.6.Dick Marinus
2018-10-31Bugfix for #938: load named queries from provided config fileDaniel Egger
2018-10-30Refactor dbname and username options/arguments to match `psql`-behaviourDaniel Egger
2018-10-30Set default port in `get_prompt` when none is given, fixes #958 (#959)DanEEStar
2018-10-02Fix for pgcli --list. (#952)Irina Truong
Fix for pgcli --list
2018-10-01Merge branch 'master' into tab-on-line-startArtur Balabanov
2018-09-29Releasing version 2.0.0v2.0.0Irina Truong
2018-09-28Cherry-picked prompt-toolkit 2.0 changes. (#930)Irina Truong
* Cherry-picked prompt-toolkit 2.0 changes. * Increase help timeout. * Missed one. * Fixes editor command. * Expect exact to fix named query error. * Unicode is non-optional with ptk 2.0. * Unicode literals all the things (almost). * PEP8. * Change how we swap completers. * By default, bottom toolbar styles are reversed. We don't want that. * Adapt styles to 2.0. * The future is now. Switch to ptk 2.0 style names. * PEP8. * Flag for enable_open_in_editor. * add class:prompt to prompt * Removed workaround for #668. Some renaming. * use pgcli.completer instead of app.current_buffer.completer * enable_system_prompt=True like old prompt toolkit * keep search_ignore_case enabled (was ignore_case) * fix closing parenthese * keep marking class:continuation token for continuation * capture KeyboardInterrupt manually AbortAction has been removed in Prompt_toolkit 2.0 * replace C-J with enter, add more comments * reversed ([...]) to [(...)] (oops) * pep8 fixes * Does Vi mode have to be applied to session every time? * (workaround) also enable vi_mode after edit command * Fixed test errors after rebasing on master.
2018-09-24Releasing version 1.11.0v1.11.0Irina Truong
2018-09-23Respect \pset pager on expected behaviorMax Rothman
"\pset pager" has three possible values: "always", "on", and "off". pgcli previously treated all non-"off" values as "always". This change implements the expected behavior, which is to use the pager when the output is larger than the terminal height (See \pset pager in https://www.postgresql.org/docs/9.2/static/app-psql.html). Pgcli adds to this by also using the pager when the output is wider than the terminal width. Fixes #813
2018-07-29On the first line only autocomplete is always triggered, regardless of ↵Artur Balabanov
whether it's empty or not
2018-07-29Access the current line directly from the Document instance instead of ↵Artur Balabanov
calculating it manually
2018-07-27Releasing version 1.10.3v1.10.3Irina Truong
2018-07-27PEP8 warnings fixedArtur Balabanov
2018-07-27Add a config option -- expand_tab. If set, \t character will be replaced by ↵Artur Balabanov
4 spaces when a <Tab> key is pressed on an empty line
2018-07-27Docstring updated for the Tab key binding methodArtur Balabanov
2018-07-27Tab press on an empty line is interrupted as a \t character insertArtur Balabanov
2018-07-26Fixes keyring = False not honored.Irina Truong
2018-07-25Adapt the query used to get functions metadata to PG11Lele Gaifax
This fixes #919.
2018-07-24Change server version query.Irina Truong
2018-07-23Releasing version 1.10.2v1.10.2Irina Truong
2018-07-22make keyring optionalDick Marinus
2018-07-20Print server version as part of welcome message.Irina Truong