Skip to content

Commit

Permalink
Prepare v0.27.1 (#1090)
Browse files Browse the repository at this point in the history
* Prepare v0.27.1 release

* Add keystore-password connections to test workspace
  • Loading branch information
gjsjohnmurray authored Jan 6, 2023
1 parent c83a4b7 commit a7ec73d
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/src/pages/en/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ order: 10

## v0.27

### v0.27.1 - (Jan 6, 2023)

See https://github.com/mtxr/vscode-sqltools/releases/tag/v0.27.1

### v0.27.0 - (Jan 4, 2023)

See https://github.com/mtxr/vscode-sqltools/releases/tag/v0.27.0
Expand Down
4 changes: 4 additions & 0 deletions packages/driver.mssql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev/

## Changelog

### 0.4.1

- Avoid storing redundant properties on connections that use `connectString`. [#1087](https://github.com/mtxr/vscode-sqltools/issues/1087)

### 0.4.0

- Sync with 0.27 release of main extension.
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.mssql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-mssql",
"displayName": "SQLTools Microsoft SQL Server/Azure",
"description": "SQLTools Microsoft SQL Server/Azure",
"version": "0.4.1-SNAPSHOT",
"version": "0.4.1",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/driver.mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev/

## Changelog

### 0.5.1

- Fix unnecessary password prompt on connections that use `connectString`. [#1086](https://github.com/mtxr/vscode-sqltools/pull/1086)
- Avoid storing redundant properties on connections that use `connectString`. [#1087](https://github.com/mtxr/vscode-sqltools/issues/1087)

### 0.5.0

- Add "SQLTools Driver Credentials" password mode, using new authentication provider feature of 0.27 main extension release to store connection password securely. [#1066](https://github.com/mtxr/vscode-sqltools/pull/1066)
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-mysql",
"displayName": "SQLTools MySQL/MariaDB",
"description": "SQLTools MySQL/MariaDB",
"version": "0.5.1-SNAPSHOT",
"version": "0.5.1",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/driver.pg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev/

## Changelog

### 0.5.1

- Use 0.27 extension's new ability to store connection passwords securely. [#1084](https://github.com/mtxr/vscode-sqltools/pull/1084)
- Avoid storing redundant properties on connections that use `connectString`. [#1087](https://github.com/mtxr/vscode-sqltools/issues/1087)

### 0.5.0

- Sync with 0.27 release of main extension.
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.pg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-pg",
"displayName": "SQLTools PostgreSQL/Cockroach Driver",
"description": "SQLTools PostgreSQL/Cockroach Driver",
"version": "0.5.1-SNAPSHOT",
"version": "0.5.1",
"engines": {
"vscode": "^1.72.0"
},
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",
"displayName": "SQLTools",
"description": "Connecting users to many of the most commonly used databases. Welcome to database management done right.",
"version": "0.27.1-SNAPSHOT",
"version": "0.27.1",
"publisher": "mtxr",
"license": "MIT",
"preview": false,
Expand Down
21 changes: 21 additions & 0 deletions test/test-vscode-sqltools.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,27 @@
"driver": "MySQL",
"name": "MySQL ConnectionString schema",
"connectString": "mysql://root:root@localhost:3307/test_db"
},
{
"mysqlOptions": {
"authProtocol": "default"
},
"previewLimit": 50,
"server": "localhost",
"port": 3307,
"driver": "MySQL",
"name": "MySQL keystore password",
"database": "test_db",
"username": "root"
},
{
"previewLimit": 50,
"server": "localhost",
"port": 5433,
"driver": "PostgreSQL",
"name": "PGSQL keystore password",
"database": "test_db",
"username": "root"
}
],
"sqltools.languageServerEnv": {
Expand Down

0 comments on commit a7ec73d

Please sign in to comment.