Skip to content

Commit cf4a6dd

Browse files
Prepare v0.28.5 (#1514)
* Prepare 0.28.5 release * Update extension recommendation for use when testing * Tweak testing doc
1 parent c2db1bd commit cf4a6dd

File tree

12 files changed

+29
-8
lines changed

12 files changed

+29
-8
lines changed

docs/src/pages/en/changelog.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ order: 10
77

88
## v0.28
99

10+
### v0.28.5 - (Aug 27, 2025)
11+
12+
See https://github.com/mtxr/vscode-sqltools/releases/tag/v0.28.5
13+
1014
### v0.28.4 - (Feb 17, 2025)
1115

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

docs/src/pages/en/contributing/testing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ This page describes how to test changes you make to the project in a local branc
1616
## Testing
1717

1818
1. Open the testing workspace (`test/test-vscode-sqltools.code-workspace`) in VS Code. This gives you a multi-root workspace. The first folder, `root`, shows the `test/*` subtree of the repository. Additional top-level folders giving easy access to the corresponding folders of the `test/docker/` subtree.
19-
2. Accept extension recommendations. The SQLTools extension and the driver extensions for the testing targets will need to be installed. The `ms-azuretools.vscode-docker` extension is optional but these instructions assume you install it.
19+
2. Accept extension recommendations. The SQLTools extension and the driver extensions for the testing targets will need to be installed. The `ms-azuretools.vscode-containers` extension is optional but these instructions assume you install it.
2020
3. Go to the NPM Scripts view (e.g. run command `Explorer: Focus on NPM Scripts View`). Its tree will show one root folder, `package.json`. In this the `up` script launches containerized services that the bundled drivers can connect to. The `up:*` scripts each launch an individual service in a container, and are useful if you only want to test one driver.
2121
4. Run the `up` script. Example of output is shown below.
22-
5. Select Docker in VS Code activity bar. In the Containers section you should see five running containers.
22+
5. Select Containers in VS Code activity bar. In the Containers section you should see five running containers.
2323
6. Select SQLTools in activity bar. In the Connections section there are entries for each of the testable targets. Most connect to the port exposed by the corresponding running container. SQLite is an exception because it accesses a local .db file directly.
2424
7. Connect and run queries.
2525

packages/driver.mssql/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev/
44

55
## Changelog
66

7+
### 0.4.7
8+
9+
- Support connections over SSH. [#1470](https://github.com/mtxr/vscode-sqltools/pull/1470) - thanks [@d-mato](https://github.com/d-mato)
10+
- Change icon to resolve copyright issues.
11+
712
### 0.4.4
813

914
- Improvements and fixes by [@fzhem](https://github.com/fzhem) - [#1396](https://github.com/mtxr/vscode-sqltools/pull/1396) and [#1399](https://github.com/mtxr/vscode-sqltools/pull/1399)

packages/driver.mssql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqltools-driver-mssql",
33
"displayName": "SQLTools Microsoft SQL Server/Azure",
44
"description": "SQLTools Microsoft SQL Server/Azure",
5-
"version": "0.4.7-SNAPSHOT",
5+
"version": "0.4.7",
66
"engines": {
77
"vscode": "^1.78.0"
88
},

packages/driver.mysql/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev/
44

55
## Changelog
66

7+
### 0.6.5
8+
9+
- Support connections over SSH. [#1470](https://github.com/mtxr/vscode-sqltools/pull/1470) - thanks [@d-mato](https://github.com/d-mato)
10+
711
### 0.6.4
812

913
- Use NodeJS 20.

packages/driver.mysql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqltools-driver-mysql",
33
"displayName": "SQLTools MySQL/MariaDB/TiDB",
44
"description": "SQLTools MySQL/MariaDB/TiDB",
5-
"version": "0.6.5-SNAPSHOT",
5+
"version": "0.6.5",
66
"engines": {
77
"vscode": "^1.78.0"
88
},

packages/driver.pg/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev/
44

55
## Changelog
66

7+
### 0.5.6
8+
9+
- Support connections over SSH. [#1470](https://github.com/mtxr/vscode-sqltools/pull/1470) - thanks [@d-mato](https://github.com/d-mato)
10+
711
### 0.5.5
812

913
- Use NodeJS 20.

packages/driver.pg/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqltools-driver-pg",
33
"displayName": "SQLTools PostgreSQL/Cockroach Driver",
44
"description": "SQLTools PostgreSQL/Cockroach Driver",
5-
"version": "0.5.6-SNAPSHOT",
5+
"version": "0.5.6",
66
"engines": {
77
"vscode": "^1.78.0"
88
},

packages/driver.sqlite/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ See [SQLite Start Guide](https://vscode-sqltools.mteixeira.dev/en/drivers/sq-lit
66

77
## Changelog
88

9+
### 0.5.3
10+
11+
- Update `base-driver` package.
12+
913
### 0.5.2
1014

1115

packages/driver.sqlite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqltools-driver-sqlite",
33
"displayName": "SQLTools SQLite",
44
"description": "SQLTools SQLite",
5-
"version": "0.5.3-SNAPSHOT",
5+
"version": "0.5.3",
66
"engines": {
77
"vscode": "^1.78.0"
88
},

0 commit comments

Comments
 (0)