Skip to content

Commit

Permalink
Prepare v0.27.0 (mtxr#1078)
Browse files Browse the repository at this point in the history
* Prepare v0.27.0 release

* Fix a test script for SQLite driver

* Improve MySQL README

* Update README for @sqltools/[email protected]
  • Loading branch information
gjsjohnmurray authored Jan 4, 2023
1 parent a43b5a1 commit 0146836
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 6 deletions.
6 changes: 6 additions & 0 deletions docs/src/pages/en/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ layout: ../../layouts/MainLayout.astro
order: 10
---

## v0.27

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

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

## v0.26

### v0.26.0 - (Nov 10, 2022)
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.0

- Sync with 0.27 release of main extension.

### 0.3.0

- Sync with 0.24 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.3.0",
"version": "0.4.0",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/driver.mysql/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.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)

### 0.4.1

- Fix table and column searching. [#1015](https://github.com/mtxr/vscode-sqltools/pull/1015)
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.0-SNAPSHOT",
"version": "0.5.0",
"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.0

- Sync with 0.27 release of main extension.

### 0.4.0

- No longer promote as an official driver for Redshift. [#991](https://github.com/mtxr/vscode-sqltools/pull/991)
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.4.0",
"version": "0.5.0",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/driver.sqlite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ See [SQLite Start Guide](https://vscode-sqltools.mteixeira.dev/en/drivers/sq-lit

## Changelog

### 0.5.0

- Sync with 0.27 release of main extension.

### 0.4.1

- Link from README to Start Guide (see above).
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-sqlite",
"displayName": "SQLTools SQLite",
"description": "SQLTools SQLite",
"version": "0.4.1",
"version": "0.5.0",
"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.0-SNAPSHOT",
"version": "0.27.0",
"publisher": "mtxr",
"license": "MIT",
"preview": false,
Expand Down
8 changes: 8 additions & 0 deletions packages/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev?

# Changelog

### v0.1.7

- New 0.27.0 features:
- `variables` property of connections. [#1064](https://github.com/mtxr/vscode-sqltools/pull/1064)
- `disableNodeDetectNotifications` setting. [#1060](https://github.com/mtxr/vscode-sqltools/pull/1060)
- IDriverExtensionApi.resolveConnection(). [#1066](https://github.com/mtxr/vscode-sqltools/pull/1066)
- Connection's runtime `isPasswordResolved` property. [#1066](https://github.com/mtxr/vscode-sqltools/pull/1066)

### v0.1.6

- IBaseQueries.fetchDatabases() can optionally pass an MConnectionExplorer.IChildItem in versions after 0.23.0.
Expand Down
2 changes: 1 addition & 1 deletion test/docker/sqlite/1.create-some-stuff.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- @conn SQLite
DROP TABLE IF EXISTS contacts;
DROP TABLE IF EXISTS contacts_metadata;
DROP VIEW IF EXISTS contacts_view;
DROP VIEW IF EXISTS contacts_view_$[env];

CREATE TABLE contacts (
first_name TEXT NOT NULL,
Expand Down

0 comments on commit 0146836

Please sign in to comment.