Skip to content

Commit b86776d

Browse files
authored
feat: update graphviz version to 14.1.0 and bump related dependencies (#343)
Signed-off-by: Gordon Smith <[email protected]>
1 parent 57116a4 commit b86776d

File tree

6 files changed

+74
-82
lines changed

6 files changed

+74
-82
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.4.0
1010
- [expat](https://libexpat.github.io/) - v2.7.1
11-
- [graphviz](https://www.graphviz.org/) - 14.0.5
11+
- [graphviz](https://www.graphviz.org/) - 14.1.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...

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@
8787
"devDependencies": {
8888
"@eslint/js": "9.39.1",
8989
"@types/emscripten": "1.41.5",
90-
"@types/node": "24.10.1",
90+
"@types/node": "24.10.2",
9191
"@types/yargs": "17.0.35",
92-
"@typescript-eslint/parser": "8.48.1",
92+
"@typescript-eslint/parser": "8.49.0",
9393
"@vitest/browser": "4.0.15",
9494
"@vitest/browser-playwright": "4.0.15",
9595
"@vitest/coverage-istanbul": "4.0.15",
@@ -109,7 +109,7 @@
109109
"typedoc": "0.28.15",
110110
"typedoc-plugin-markdown": "4.9.0",
111111
"typescript": "5.9.3",
112-
"typescript-eslint": "8.48.1",
112+
"typescript-eslint": "8.49.0",
113113
"vitepress": "1.6.4",
114114
"vitest": "4.0.15"
115115
},

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

vcpkg-overlays/graphviz/portfile.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vcpkg_from_gitlab(
33
OUT_SOURCE_PATH SOURCE_PATH
44
REPO graphviz/graphviz
55
REF "${VERSION}"
6-
SHA512 dc94c8f5745fc008d74457b846eec7161268a03c817a476bf21acea81ea884ce070180b182fee47739bde44a54ae0bc775905d950f18ce91b9042e97455b3d81
6+
SHA512 ead122c7526319a36050a241f8ccb564b2daba37510de69d7b1ae25fd95c859a47a428b11ef25788b8d92f134e8d2f32d854b30e2f502daf3ce02b6dd27990da
77
HEAD_REF main
88
)
99

vcpkg-overlays/graphviz/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphviz",
3-
"version-semver": "14.0.5",
3+
"version-semver": "14.1.0",
44
"port-version": 0,
55
"homepage": "https://graphviz.org/",
66
"description": "Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.",

0 commit comments

Comments
 (0)