Skip to content

Commit 56597d4

Browse files
authored
Merge pull request #303 from GordonSmith/BUMP_VERSIONS
feat: Bump Graphviz to 13.0.0
2 parents f1bda0c + af2ff8c commit 56597d4

File tree

15 files changed

+1482
-1326
lines changed

15 files changed

+1482
-1326
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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.1.1
1010
- [expat](https://libexpat.github.io/) - v2.6.2
11-
- [graphviz](https://www.graphviz.org/) - v12.2.1
11+
- [graphviz](https://www.graphviz.org/) - v13.0.0
1212
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
1313
- [zstd](https://github.com/facebook/zstd) - v1.5.6
1414
- ...more to follow...

package-lock.json

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

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -76,34 +76,34 @@
7676
"update-major": "npm run update-major-root && lerna run update-major"
7777
},
7878
"devDependencies": {
79-
"@eslint/js": "9.22.0",
79+
"@eslint/js": "9.28.0",
8080
"@hpcc-js/esbuild-plugins": "1.2.0",
81-
"@types/emscripten": "1.40.0",
82-
"@types/node": "22.13.10",
81+
"@types/emscripten": "1.40.1",
82+
"@types/node": "22.15.30",
8383
"@types/yargs": "17.0.33",
84-
"@typescript-eslint/eslint-plugin": "8.26.1",
85-
"@typescript-eslint/parser": "8.26.1",
86-
"@vitest/browser": "3.0.8",
87-
"@vitest/coverage-istanbul": "3.0.8",
88-
"@vitest/coverage-v8": "3.0.8",
89-
"assemblyscript": "0.27.35",
84+
"@typescript-eslint/eslint-plugin": "8.33.1",
85+
"@typescript-eslint/parser": "8.33.1",
86+
"@vitest/browser": "3.2.2",
87+
"@vitest/coverage-istanbul": "3.2.2",
88+
"@vitest/coverage-v8": "3.2.2",
89+
"assemblyscript": "0.28.2",
9090
"chokidar-cli": "3.0.0",
91-
"eslint": "9.22.0",
92-
"globals": "16.0.0",
93-
"happy-dom": "17.4.4",
94-
"lerna": "8.2.1",
91+
"eslint": "9.28.0",
92+
"globals": "16.2.0",
93+
"happy-dom": "17.6.3",
94+
"lerna": "8.2.2",
9595
"npm-run-all": "4.1.5",
96-
"playwright": "1.51.0",
97-
"release-please": "17.0.0",
96+
"playwright": "1.52.0",
97+
"release-please": "17.1.0",
9898
"rimraf": "6.0.1",
9999
"run-script-os": "1.1.6",
100100
"tslib": "2.8.1",
101-
"typedoc": "0.27.9",
102-
"typedoc-plugin-markdown": "4.4.2",
103-
"typescript": "5.8.2",
104-
"typescript-eslint": "8.26.1",
101+
"typedoc": "0.28.5",
102+
"typedoc-plugin-markdown": "4.6.4",
103+
"typescript": "5.8.3",
104+
"typescript-eslint": "8.33.1",
105105
"vitepress": "1.6.3",
106-
"vitest": "3.0.8"
106+
"vitest": "3.2.2"
107107
},
108108
"c8": {
109109
"exclude-after-remap": []

packages/graphviz-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"dependencies": {
3939
"@hpcc-js/wasm-graphviz": "^1.7.0",
40-
"yargs": "17.7.2"
40+
"yargs": "18.0.0"
4141
},
4242
"devDependencies": {},
4343
"keywords": [

packages/graphviz/src-cpp/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Graphviz::Graphviz(int yInvert, int nop)
6565
lastErrorStr = "";
6666
agseterr(AGERR);
6767
agseterrf(vizErrorf);
68-
agreadline(1);
68+
// agreadline(1);
6969
}
7070

7171
Graphviz::~Graphviz()
@@ -95,7 +95,7 @@ const char *Graphviz::layout(const char *src, const char *format, const char *en
9595
if (graph)
9696
{
9797
char *data = NULL;
98-
unsigned int length;
98+
size_t length;
9999

100100
gvLayout(gvc, graph, engine);
101101
gvRenderData(gvc, graph, format, &data, &length);

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

packages/javac/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target/
2+
javac.*

packages/llama/tests/llama.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ describe("llama", () => {
6161
expect(embeddings3[0]).to.be.a.instanceOf(Array);
6262
expect(embeddings3[0].length).to.be.greaterThan(0);
6363
expect(embeddings3[0][0]).to.be.a("number");
64-
6564
expect(embeddings).to.deep.equal(embeddings3);
6665
});
67-
}, 20000);
66+
}, 60000);

packages/wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"update-major": "npx -y npm-check-updates -u"
7676
},
7777
"dependencies": {
78-
"yargs": "17.7.2"
78+
"yargs": "18.0.0"
7979
},
8080
"devDependencies": {
8181
"@hpcc-js/wasm-base91": "1.3.1",

scripts/cpp-build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ if [ ! -d "./build" ]
55
then
66
cmake -S . -B ./build --preset vcpkg-emscripten-MinSizeRel
77
fi
8+
cmake -S . -B ./build --preset vcpkg-emscripten-Debug
89

910
cmake --build ./build --parallel

0 commit comments

Comments
 (0)