Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.28.1 release (incl mssql 0.4.2, pg 0.5.2) #1244

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.28

### v0.28.1 - (Nov 13, 2023)

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

### v0.28.0 - (Jun 22, 2023)

See https://github.com/mtxr/vscode-sqltools/releases/tag/v0.28.0
Expand Down
5 changes: 5 additions & 0 deletions packages/driver.mssql/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.4.2

- Support password storage using SQLTools Driver Credentials service. [#1175](https://github.com/mtxr/vscode-sqltools/pull/1175) - thanks [@raulcesar](https://github.com/raulcesar)
- List schemas in alphabetical order. [#1176](https://github.com/mtxr/vscode-sqltools/issues/1176) - thanks [@bombillazo](https://github.com/bombillazo)

### 0.4.1

- Avoid storing redundant properties on connections that use `connectString`. [#1087](https://github.com/mtxr/vscode-sqltools/issues/1087)
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",
"version": "0.4.2",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/driver.pg/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.5.2

- List schemas in alphabetical order. [#1176](https://github.com/mtxr/vscode-sqltools/issues/1176) - thanks [@bombillazo](https://github.com/bombillazo)

### 0.5.1

- Use 0.27 extension's new ability to store connection passwords securely. [#1084](https://github.com/mtxr/vscode-sqltools/pull/1084)
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",
"version": "0.5.2",
"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.28.1-SNAPSHOT",
"version": "0.28.1",
"publisher": "mtxr",
"license": "MIT",
"preview": false,
Expand Down
Loading