Skip to content

Commit 1338215

Browse files
committed
[*] Duckdb updated: 0.9.1 -> 0.10.0.
1 parent 6827c9a commit 1338215

7 files changed

+906
-574
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 0.0.6
4+
- v0.10.0 DuckDB support
5+
36
## 0.0.5
47
- v0.9.1 DuckDB support
58

@@ -15,4 +18,4 @@
1518
- Connect to DuckDB instance
1619
- Run queries against DuckDB instance
1720
- Explore tables and columns in the sidebar
18-
- Autocomplete for common keywords, and database tables (N.B. column autocomplete is not yet supported)
21+
- Autocomplete for common keywords, and database tables (N.B. column autocomplete is not yet supported)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
# <img src="https://github.com/evidence-dev/sqltools-duckdb-driver/blob/master/icons/default.png?raw=true" style="height:1em;"/> SQLTools for DuckDB
44

55
Query and explore [DuckDB](https://duckdb.org/) databases in VSCode.
6-
## Latest DuckDB Support: v0.9.1
6+
## Latest DuckDB Support: v0.10.0
77

88
A VSCode extension that extends [SQLTools](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools), with a driver for DuckDB.
99

1010
This driver is maintained by [Evidence](https://evidence.dev): Publish BI reports with just SQL and Markdown.
1111

1212
## Features
1313

14-
- Latest DuckDB support (currently 0.9.1)
14+
- Latest DuckDB support (currently 0.10.0)
1515
- **Connect** to a local, in-memory or MotherDuck (via service token) DuckDB instance
1616
- **Run queries** against a DuckDB instance
1717
- **Explore DB** tables and columns in the sidebar

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "sqltools-duckdb-driver",
33
"displayName": "DuckDB Driver for SQLTools",
44
"description": "Latest DuckDB support: Run queries and explore your DuckDB Database in VSCode",
5-
"version": "0.0.5",
5+
"version": "0.0.6",
66
"engines": {
7-
"vscode": "^1.42.0"
7+
"vscode": "^1.87.0"
88
},
99
"publisher": "Evidence",
1010
"license": "MIT",
@@ -20,7 +20,6 @@
2020
"package": "vsce package --allow-star-activation",
2121
"compile": "tsup src/extension.ts src/ls/plugin.ts -d out --external=vscode",
2222
"publish": "vsce publish"
23-
2423
},
2524
"keywords": [
2625
"sqltools-driver",
@@ -44,17 +43,18 @@
4443
],
4544
"main": "./out/extension.js",
4645
"dependencies": {
47-
"duckdb-async": "0.9.1"
46+
"duckdb-async": "0.10.0"
4847
},
4948
"devDependencies": {
50-
"@babel/preset-env": "^7.5.5",
49+
"@babel/preset-env": "^7.24.0",
5150
"@mapbox/node-pre-gyp": "^1.0.11",
5251
"@sqltools/base-driver": "latest",
5352
"@sqltools/types": "latest",
54-
"@types/node": "^14.0.9",
55-
"@types/vscode": "^1.42.0",
56-
"tsup": "^7.2.0",
57-
"typescript": "^5.0.0",
58-
"uuid": "^7.0.2"
53+
"@types/node": "^20.11.23",
54+
"@types/vscode": "^1.87.0",
55+
"esbuild": "^0.20.1",
56+
"tsup": "^8.0.2",
57+
"typescript": "^5.3.3",
58+
"uuid": "^9.0.1"
5959
}
60-
}
60+
}

sqltools-duckdb-driver-0.0.5.vsix

-142 KB
Binary file not shown.

sqltools-duckdb-driver-0.0.6.vsix

143 KB
Binary file not shown.

src/ls/driver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default class DuckDBDriver extends AbstractDriver<DriverLib, DriverOption
1919
public readonly deps: typeof AbstractDriver.prototype['deps'] = [{
2020
type: AbstractDriver.CONSTANTS.DEPENDENCY_PACKAGE,
2121
name: 'duckdb-async',
22-
version: '0.9.1',
22+
version: '0.10.0',
2323
}];
2424

2525
queries = queries;

yarn.lock

+888-559
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)