Skip to content

Is there a way to get a more recent version of DuckDB? #2014

Answered by datadavev
gordonjb asked this question in Q&A
Discussion options

You must be logged in to vote

A hack, but manually editing node_modules/@observablehq/framework/dist/duckdb.js and setting:

const DUCKDB_WASM_VERSION = "1.29.1-dev269.0";
const DUCKDB_VERSION = "1.3.2";

works for my use case. Of course, the change is temporary and running yarn upgrade will blow it away and revert back to the framework distribution.

Patch:

6,7c6,7
< const DUCKDB_WASM_VERSION = "1.29.0";
< const DUCKDB_VERSION = "1.1.1";
---
> const DUCKDB_WASM_VERSION = "1.29.1-dev269.0";
> const DUCKDB_VERSION = "1.3.2";

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@gordonjb
Comment options

Answer selected by gordonjb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants