Skip to content

Commit 2b2f904

Browse files
committed
fix: bump versions
- duckdb v1.3.2 - graphviz 14.0.0 Signed-off-by: Gordon Smith <[email protected]>
1 parent ef3e029 commit 2b2f904

File tree

20 files changed

+658
-523
lines changed

20 files changed

+658
-523
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
88
- [base91](https://base91.sourceforge.net/) - v0.6.0
9-
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
9+
- [duckdb](https://github.com/duckdb/duckdb) - v1.3.2
1010
- [expat](https://libexpat.github.io/) - v2.7.1
11-
- [graphviz](https://www.graphviz.org/) - v13.1.2
11+
- [graphviz](https://www.graphviz.org/) - 14.0.0
1212
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
1313
- [zstd](https://github.com/facebook/zstd) - v1.5.7
1414
- ...more to follow...
1515

1616
Built with:
17-
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.12
17+
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.15
1818

1919
## Homepage and Documents
2020

package-lock.json

Lines changed: 459 additions & 438 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,31 +85,30 @@
8585
"update-major": "npm run update-major-root && lerna run update-major"
8686
},
8787
"devDependencies": {
88-
"@eslint/js": "9.33.0",
89-
"@types/emscripten": "1.40.1",
90-
"@types/node": "24.2.1",
88+
"@eslint/js": "9.36.0",
89+
"@types/emscripten": "1.41.2",
90+
"@types/node": "24.5.2",
9191
"@types/yargs": "17.0.33",
92-
"@typescript-eslint/eslint-plugin": "8.39.0",
93-
"@typescript-eslint/parser": "8.39.0",
92+
"@typescript-eslint/parser": "8.44.0",
9493
"@vitest/browser": "3.2.4",
9594
"@vitest/coverage-istanbul": "3.2.4",
9695
"@vitest/coverage-v8": "3.2.4",
97-
"assemblyscript": "0.28.4",
96+
"assemblyscript": "0.28.8",
9897
"chokidar-cli": "3.0.0",
99-
"eslint": "9.33.0",
100-
"globals": "16.3.0",
98+
"eslint": "9.36.0",
99+
"globals": "16.4.0",
101100
"happy-dom": "18.0.1",
102101
"lerna": "8.2.4",
103102
"npm-run-all": "4.1.5",
104-
"playwright": "1.54.2",
105-
"release-please": "17.1.1",
103+
"playwright": "1.55.0",
104+
"release-please": "17.1.2",
106105
"rimraf": "6.0.1",
107106
"run-script-os": "1.1.6",
108107
"tslib": "2.8.1",
109-
"typedoc": "0.28.9",
110-
"typedoc-plugin-markdown": "4.8.0",
108+
"typedoc": "0.28.13",
109+
"typedoc-plugin-markdown": "4.9.0",
111110
"typescript": "5.9.2",
112-
"typescript-eslint": "8.39.0",
111+
"typescript-eslint": "8.44.0",
113112
"vitepress": "1.6.4",
114113
"vitest": "3.2.4"
115114
},

packages/base91/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"dependencies": {},
3939
"devDependencies": {
40-
"@hpcc-js/esbuild-plugins": "1.4.9"
40+
"@hpcc-js/esbuild-plugins": "1.5.1"
4141
},
4242
"keywords": [
4343
"base64",

packages/duckdb/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
},
4141
"dependencies": {},
4242
"devDependencies": {
43-
"@duckdb/duckdb-wasm": "1.29.0",
44-
"@hpcc-js/esbuild-plugins": "1.4.9",
43+
"@duckdb/duckdb-wasm": "1.30.0",
44+
"@hpcc-js/esbuild-plugins": "1.5.1",
4545
"mkdirp": "3.0.1"
4646
},
4747
"keywords": [

packages/duckdb/tests/duckdb.browser.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe("duckdb", function () {
77
const duckdb = await DuckDB.load();
88
const v = duckdb.version();
99
expect(v).to.be.a.string;
10-
expect(v).to.equal("v1.1.1"); // Update README.md if this changes
10+
expect(v).to.equal("v1.3.2"); // Update README.md if this changes
1111
console.log("duckdb version: " + v);
1212
});
1313

packages/expat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"dependencies": {},
3939
"devDependencies": {
40-
"@hpcc-js/esbuild-plugins": "1.4.9"
40+
"@hpcc-js/esbuild-plugins": "1.5.1"
4141
},
4242
"keywords": [
4343
"graphviz",

packages/graphviz/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"dependencies": {},
3939
"devDependencies": {
40-
"@hpcc-js/esbuild-plugins": "1.4.9"
40+
"@hpcc-js/esbuild-plugins": "1.5.1"
4141
},
4242
"keywords": [
4343
"graphviz",

packages/graphviz/tests/graphviz.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe("graphviz", function () {
3434
let graphviz = await Graphviz.load();
3535
let v = graphviz.version();
3636
expect(v).to.be.a.string;
37-
expect(v).to.equal("13.1.2"); // Update README.md with the new version!!!
37+
expect(v).to.equal("14.0.0"); // Update README.md with the new version!!!
3838
console.log("graphviz version: " + v);
3939
Graphviz.unload();
4040

packages/llama/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"dependencies": {},
4141
"devDependencies": {
42-
"@hpcc-js/esbuild-plugins": "1.4.9"
42+
"@hpcc-js/esbuild-plugins": "1.5.1"
4343
},
4444
"keywords": [
4545
"graphviz",

0 commit comments

Comments
 (0)