Skip to content

Commit 9e83548

Browse files
authored
Merge pull request #290 from GordonSmith/BUMP_VERSIONS
feat: Bump versions
2 parents 773e7ef + 2ae7438 commit 9e83548

File tree

10 files changed

+1221
-942
lines changed

10 files changed

+1221
-942
lines changed

README.md

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

88
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
99
- [base91](https://base91.sourceforge.net/) - v0.6.0
10-
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.3
10+
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
1111
- [expat](https://libexpat.github.io/) - v2.6.2
12-
- [graphviz](https://www.graphviz.org/) - v12.2.0
12+
- [graphviz](https://www.graphviz.org/) - v12.2.1
1313
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
1414
- [zstd](https://github.com/facebook/zstd) - v1.5.6
1515
- ...more to follow...
1616

1717
Built with:
18-
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.71
18+
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.73
1919

2020
## Homepage and Documents
2121

package-lock.json

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

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -75,34 +75,34 @@
7575
"update-major": "npm run update-major-root && lerna run update-major"
7676
},
7777
"devDependencies": {
78-
"@eslint/js": "9.14.0",
78+
"@eslint/js": "9.16.0",
7979
"@hpcc-js/esbuild-plugins": "1.2.0",
8080
"@types/emscripten": "1.39.13",
81-
"@types/node": "22.9.0",
81+
"@types/node": "22.10.1",
8282
"@types/yargs": "17.0.33",
83-
"@typescript-eslint/eslint-plugin": "8.13.0",
84-
"@typescript-eslint/parser": "8.13.0",
85-
"@vitest/browser": "2.1.4",
86-
"@vitest/coverage-istanbul": "2.1.4",
87-
"@vitest/coverage-v8": "2.1.4",
88-
"assemblyscript": "0.27.30",
83+
"@typescript-eslint/eslint-plugin": "8.18.0",
84+
"@typescript-eslint/parser": "8.18.0",
85+
"@vitest/browser": "2.1.8",
86+
"@vitest/coverage-istanbul": "2.1.8",
87+
"@vitest/coverage-v8": "2.1.8",
88+
"assemblyscript": "0.27.31",
8989
"chokidar-cli": "3.0.0",
90-
"eslint": "9.14.0",
91-
"globals": "15.12.0",
92-
"happy-dom": "^15.9.0",
90+
"eslint": "9.16.0",
91+
"globals": "15.13.0",
92+
"happy-dom": "^15.11.7",
9393
"lerna": "8.1.9",
9494
"npm-run-all": "4.1.5",
95-
"playwright": "1.48.2",
96-
"release-please": "16.14.3",
95+
"playwright": "1.49.1",
96+
"release-please": "16.15.0",
9797
"rimraf": "6.0.1",
9898
"run-script-os": "1.1.6",
9999
"tslib": "2.8.1",
100-
"typedoc": "0.26.11",
101-
"typedoc-plugin-markdown": "4.2.10",
102-
"typescript": "5.6.3",
103-
"typescript-eslint": "8.13.0",
100+
"typedoc": "0.27.4",
101+
"typedoc-plugin-markdown": "4.3.2",
102+
"typescript": "5.7.2",
103+
"typescript-eslint": "8.18.0",
104104
"vitepress": "1.5.0",
105-
"vitest": "2.1.4"
105+
"vitest": "2.1.8"
106106
},
107107
"c8": {
108108
"exclude-after-remap": []

packages/duckdb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"dependencies": {},
4242
"devDependencies": {
43-
"@duckdb/duckdb-wasm": "next",
43+
"@duckdb/duckdb-wasm": "1.29.0",
4444
"mkdirp": "3.0.1"
4545
},
4646
"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.3"); // Update README.md if this changes
10+
expect(v).to.equal("v1.1.1"); // Update README.md if this changes
1111
console.log("duckdb version: " + v);
1212
});
1313

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

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 vertsion can be found in https://github.com/emscripten-core/emsdk/tags ---
44
# UPDATE README.md
5-
VERSION=3.1.71
5+
VERSION=3.1.73
66

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

scripts/cpp-install-vcpkg.sh

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

33
# List of current vertsion can be found in https://github.com/microsoft/vcpkg/releases ---
44
# UPDATE README.md
5-
VCPKG_BUILD_TOOLS_VERSION=2024.10.21
5+
VCPKG_BUILD_TOOLS_VERSION=2024.11.16
66

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

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 34706c23416fdd8bedcadf5ae501e66892016034baa6603e69665ca1582db0eddf7731d5aae347ae985e12cc0f96f4c2887d474231f71755813520f0c6e5a5f2
6+
SHA512 fb30d96878e5ea124d26c8823003473a5024f80e418919ff23653086a20ecd6c0cf9c1bbb01e711f22c851a90ae28e711bba3f3e7b0146bb84b4974f6580a600
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": "12.2.0",
3+
"version-semver": "12.2.1",
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)