Skip to content

Commit 205f001

Browse files
committed
feat: bump versions
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent 3fa48df commit 205f001

File tree

13 files changed

+1041
-1217
lines changed

13 files changed

+1041
-1217
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This repository contains a collection of useful c++ libraries compiled to WASM f
88
- [base91](https://base91.sourceforge.net/) - v0.6.0
99
- [duckdb](https://github.com/duckdb/duckdb) - v1.4.0
1010
- [expat](https://libexpat.github.io/) - v2.7.1
11-
- [graphviz](https://www.graphviz.org/) - 14.0.4
11+
- [graphviz](https://www.graphviz.org/) - 14.0.5
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.19
17+
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.21
1818

1919
## Homepage and Documents
2020

package-lock.json

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

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -89,29 +89,29 @@
8989
"@types/emscripten": "1.41.5",
9090
"@types/node": "24.10.1",
9191
"@types/yargs": "17.0.35",
92-
"@typescript-eslint/parser": "8.47.0",
93-
"@vitest/browser": "4.0.13",
94-
"@vitest/browser-playwright": "4.0.13",
95-
"@vitest/coverage-istanbul": "4.0.13",
96-
"@vitest/coverage-v8": "4.0.13",
92+
"@typescript-eslint/parser": "8.48.1",
93+
"@vitest/browser": "4.0.15",
94+
"@vitest/browser-playwright": "4.0.15",
95+
"@vitest/coverage-istanbul": "4.0.15",
96+
"@vitest/coverage-v8": "4.0.15",
9797
"assemblyscript": "0.28.9",
9898
"chokidar-cli": "3.0.0",
9999
"eslint": "9.39.1",
100100
"globals": "16.5.0",
101-
"happy-dom": "20.0.10",
102-
"lerna": "9.0.1",
101+
"happy-dom": "20.0.11",
102+
"lerna": "9.0.3",
103103
"npm-run-all": "4.1.5",
104-
"playwright": "1.56.1",
104+
"playwright": "1.57.0",
105105
"release-please": "17.1.3",
106106
"rimraf": "6.1.2",
107107
"run-script-os": "1.1.6",
108108
"tslib": "2.8.1",
109-
"typedoc": "0.28.14",
109+
"typedoc": "0.28.15",
110110
"typedoc-plugin-markdown": "4.9.0",
111111
"typescript": "5.9.3",
112-
"typescript-eslint": "8.47.0",
112+
"typescript-eslint": "8.48.1",
113113
"vitepress": "1.6.4",
114-
"vitest": "4.0.13"
114+
"vitest": "4.0.15"
115115
},
116116
"c8": {
117117
"exclude-after-remap": []
2.03 KB
Loading

packages/graphviz-cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
"update-major": "npx -y npm-check-updates -u"
3838
},
3939
"dependencies": {
40-
"@hpcc-js/wasm-graphviz": "^1.16.0"
40+
"@hpcc-js/wasm-graphviz": "^1.16.0",
41+
"yargs": "18.0.0"
4142
},
4243
"devDependencies": {},
4344
"keywords": [

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("14.0.4"); // Update README.md with the new version!!!
37+
expect(v).to.equal("14.0.5"); // Update README.md with the new version!!!
3838
console.log("graphviz version: " + v);
3939
Graphviz.unload();
4040

packages/llama/src-cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(llamalib)
22

3-
set(CMAKE_CXX_STANDARD 11)
3+
# set(CMAKE_CXX_STANDARD 17)
44

55
find_package(Llama CONFIG REQUIRED)
66

packages/llama/src/llama.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class Llama {
8383
try {
8484
this._module.embedding(args, embeddingResult);
8585
const cout = embeddingResult.get(0);
86-
retVal = JSON.parse(cout);
86+
retVal = JSON.parse(cout ?? "[]");
8787
} catch (e) {
8888
console.error(e);
8989
} finally {

packages/wasm/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"@hpcc-js/wasm-duckdb": "^1.12.0",
8585
"@hpcc-js/wasm-expat": "^1.9.0",
8686
"@hpcc-js/wasm-graphviz": "^1.16.0",
87+
"@hpcc-js/wasm-graphviz-cli": "^1.7.0",
8788
"@hpcc-js/wasm-zstd": "^1.8.0"
8889
},
8990
"keywords": [

scripts/cpp-install-emsdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# List of current version can be found in https://github.com/emscripten-core/emsdk/tags ---
44
# UPDATE README.md
5-
VERSION=4.0.19
5+
VERSION=4.0.21
66

77
if [ ! -d "./emsdk" ]
88
then

0 commit comments

Comments
 (0)