Skip to content

Commit

Permalink
master: bum version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mtxr committed Nov 6, 2019
1 parent 49e8896 commit 81cc18a
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .todo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TODO:
GENERATORS:
QUERY BUILDER:
- Insert queries should consider columns ordinal position
EXPLORER:
- Allow to add to auto connect using explorer
Expand All @@ -10,4 +10,6 @@ TODO:
VNEXT:
DOCS:
- add version selector
- write docs about settings
- write docs about settings
DEP MANAGER:
- Allow to use VSCode terminal api
17 changes: 16 additions & 1 deletion docs/src/pages/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,27 @@ route: /changelog

## v0.21

### v0.21.2 - (November 06, 2019)

* **Enhancements**
* MSSQL: Supporting MSSQL 2000 (v8.x). Thanks to [@glha](https://github.com/glha). [#440](https://github.com/mtxr/vscode-sqltools/pull/440)
* PostgreSQL: Show full error including "at character". [#437](https://github.com/mtxr/vscode-sqltools/issues/437)
* PostgreSQL: Add support for raising notices. [#417](https://github.com/mtxr/vscode-sqltools/issues/417)
* Add an option `sqltools.dependencyManager['autoAccept']` for preventing install dependency notifications. [Read the docs](https://vscode-sqltools.mteixeira.dev/settings/dependency-manager#sqltools.dependencymanager-options). [#434](https://github.com/mtxr/vscode-sqltools/issues/434)
* Allow to select multiple table columns from connections tree and copy them into text editor. [#406](https://github.com/mtxr/vscode-sqltools/issues/406)
* Displaying query messages for DML queries. [#404](https://github.com/mtxr/vscode-sqltools/issues/404)

* **Fixes**
* SQLite: Relative paths now based on VSCode variable `${workspaceFolder}`. [#430](https://github.com/mtxr/vscode-sqltools/issues/430)
* Fixes query not holding execution til complete attaching to connection. [#405](https://github.com/mtxr/vscode-sqltools/issues/405)


### v0.21.1 - (October 25, 2019)

* **Enhancements**
* Improve Cassandra visualization. Issue [#420](https://github.com/mtxr/vscode-sqltools/pull/420)
* SQLite paths for remote development. Issue [#421](https://github.com/mtxr/vscode-sqltools/issues/421)
* Support for Azure Active Directory login. Issue [#421](https://github.com/mtxr/vscode-sqltools/issues/375)
* Support for Azure Active Directory login. Issue [#375](https://github.com/mtxr/vscode-sqltools/issues/375)

* **Fixes**
* SQLite asking for passwords. Issue [#396](https://github.com/mtxr/vscode-sqltools/issues/396)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools",
"displayName": "SQLTools - Database tools",
"description": "Database management done right. Connection explorer, query runner, intellisense, bookmarks, query history. Feel like a database hero!",
"version": "0.21.1",
"version": "0.21.2",
"publisher": "mtxr",
"license": "MIT",
"main": "../dist/extension.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqltools/core",
"version": "0.21.1",
"version": "0.21.2",
"description": "SQLTools Core Files",
"main": "index.ts",
"author": "Matheus Teixeira <me@mteixeira.me>",
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@sqltools/extension",
"displayName": "SQLTools - Database tools",
"description": "Database management done right. Connection explorer, query runner, intellisense, bookmarks, query history. Feel like a database hero!",
"version": "0.21.1",
"version": "0.21.2",
"publisher": "mtxr",
"license": "MIT",
"preview": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqltools/language-server",
"version": "0.21.1",
"version": "0.21.2",
"description": "SQLTools Language Server",
"main": "index.ts",
"author": "Matheus Teixeira <me@mteixeira.me>",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqltools/plugins",
"version": "0.21.1",
"version": "0.21.2",
"description": "SQLTools Plugins",
"author": "Matheus Teixeira <me@mteixeira.me>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqltools/ui",
"version": "0.21.1",
"version": "0.21.2",
"description": "UI components for SQLTools",
"main": "noop.ts",
"author": "Matheus Teixeira <me@mteixeira.me>",
Expand Down

0 comments on commit 81cc18a

Please sign in to comment.