Skip to content

Latest commit

 

History

History
170 lines (128 loc) · 5.09 KB

CHANGELOG.md

File metadata and controls

170 lines (128 loc) · 5.09 KB

Change Log

All notable changes to the "vscode-postgres" extension will be documented in this file.

[Unreleased]

[1.1.11] - 2019-08-10

Fixed

  • Sidebar icon has been updated and should now size correctly for vscode 1.37.0.

[1.1.10] - 2019-04-12

Fixed

  • Add DB connection process now handles more issues with connecting to a possibly secured postgres database (issue #97).

[1.1.9] - 2019-03-17

Changed

  • Add DB connection process has been altered to be more user friendly. Also fixes ssl cert issues (issue #66).

[1.1.8] - 2019-03-08

Fixed

  • PG 11 Version issues for language server (issue #92).

[1.1.7] - 2019-03-05

Fixed

  • Delete results now properly show RETURNING data (issue #91).

[1.1.6] - 2018-11-26

Fixed

  • Syntax highlighting when first character of query is a space (issue #79) by @votagus.

[1.1.5] - 2018-11-26

Added

  • Capability to better separate main queries by pg version
  • Support for default connections using settings which can be overridden at the project level (issue #69)
    • To better support default connections, the extension now activates on start vs. when a view/language/command is accessed for the first time.

Fixed

  • Support of PG 11 in function explorer (issue #72)

[1.1.4] - 2018-10-29

Added

  • Functions virtual folder (must enable in configuration) by @lafriks
  • Added schemas to autocompletion by @lafriks

Fixed

  • Better hiding of pg_temp and pg_toast tables by @lafriks

[1.1.3] - 2018-10-06

Added

  • Better support for blank passwords - doesn't touch Keytar (thanks to @SWW13)

Fixed

  • Performance opening table to show columns degraded when the column query when support was added for v9.3. Version detection was put in to allow a better performing query to work on 9.4+.

[1.1.2] - 2018-09-24

Added

  • Support for PostgreSQL 9.3

[1.1.1] - 2018-09-10

Fixed

  • prettyPrintJSONfields setting should work again

[1.1.0] - 2018-09-03

Updated

  • Transitioned result pane from using TextDocumentContentProvider to using Webviews.

Fixed

  • Serialize results to JSON and XML should work properly again (broke with fix in 1.0.15).

Added

  • Support for circle and point geometric types.
  • All query results now use the result pane.

[1.0.16] - 2018-08-18

Fixed

  • Explain statements should now work again (broke with fix in 1.0.15)

Added

  • Icon for foreign keys in the database explorer.
  • Display formatted type names in results grid headers by @lnicola

[1.0.15] - 2018-08-16

Fixed

  • Display of results when running queries with multiple columns of the same name.

[1.0.14] - 2018-08-10

Fixed

  • Display of interval data formats
  • Changed using namespace name to oid for issue #33

[1.0.13] - 2018-07-18

Added

  • Support for optionally providing a database when creating a connection (ends up with a single-database connection in the db explorer).
  • Added configuration setting to control the sort order of table columns: database order, alphabetical, and reverse alpha.

[1.0.12] - 2018-07-14

Fixed

  • Quoted schemas/tables in priviledge queries.

Added

  • Support for editing connection details.

[1.0.11] - 2018-07-06

Fixed

  • Preserve query focus code was spawning a new query editor.

[1.0.10] - 2018-07-06

Fixed

  • Windows bug causing "cannot read property of null" errors - solved simultaneously with @Yarith

[1.0.9] - 2018-05-30

Fixed

  • Info/Error node - if an error occurred when expanding a node in the database explorer there wasn't an indication of what went wrong

Added

  • Support for PostgreSQL user permissions. Databases, schemas, tables, views should all be filtered based on the user used when setting up the connection.
  • Support for quoted identifiers

[1.0.8] - 2018-05-23

Added

  • Option to disable changing active connection when navigating the explorer by @mterring

[1.0.7] - 2018-05-16

Added

  • Schema support to table nodes and capitalized table names by @jgoday

[1.0.6] - 2018-05-12

Fixed

  • Code Completion: grouped fields of the same data type together and show all the tables/views they belong to in a list

[1.0.5] - 2018-05-11

Fixed

  • Status bar text when connection is not labelled

[1.0.4] - 2018-05-11

Added

  • Display label for postgres connections by @peterbam
  • Rename command for display label

[1.0.3] - 2018-05-10

Added

  • Show "Run Query" command errors using notifications

[1.0.2] - 2018-05-09

Added

  • Support for DB Views in the database explorer and code completion

[1.0.1] - 2018-05-07

Added

  • Support for custom activity bar

[1.0.0] - 2018-05-05

Fixed

  • Connection button, now properly asks for the connection instead of the database.

Added

  • Syntax highlighting
  • Connection aware code completion (keywords, functions, tables, and fields)
  • In-line error detection powered by EXPLAIN (one error per query in editor)
  • Basic function signature support (connection aware)

[0.0.6] - 2018-04-30

Fixed

  • Repository link
  • Output Console Name for Language Service

Added

  • Ability to save results to JSON, XML, or CSV.

[0.0.5] - 2018-04-30

  • Initial release