Skip to content

Commit 0388aee

Browse files
committed
feat: Bump Versions
Bump versions of all packages to latest Signed-off-by: Gordon Smith <[email protected]>
1 parent c900d6a commit 0388aee

File tree

7 files changed

+3052
-1555
lines changed

7 files changed

+3052
-1555
lines changed

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"cmake.cmakePath": "${workspaceFolder}/scripts/cmake.sh"
2+
"cmake.cmakePath": "${workspaceFolder}/scripts/cmake.sh",
3+
"ecl.launchConfiguration": "not found",
4+
"ecl.targetCluster": {}
35
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
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
1010
- [expat](https://libexpat.github.io/) - v2.5.0
11-
- [graphviz](https://www.graphviz.org/) - v7.1.0
11+
- [graphviz](https://www.graphviz.org/) - v8.0.1
1212
- [zstd](https://github.com/facebook/zstd) - v1.5.2
1313
- ...more to follow...
1414

1515
Built with:
16-
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.31
16+
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.34
1717

1818
## Homepage and Documents
1919

package-lock.json

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

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"test-bundle": "npx -y esbuild --format=esm --bundle ./dist/base91.js --outdir=tmp",
105105
"test-bundle-umd": "npx -y esbuild --platform=node --bundle ./dist/base91.umd.js --outdir=tmp",
106106
"test-bundle-node": "npx -y esbuild --platform=node --bundle ./dist/base91.js --outdir=tmp",
107-
"test-chrome": "karma start --single-run --browsers ChromeHeadless karma.conf.cjs",
107+
"test-chrome": "karma start --single-run --browsers ChromiumHeadless karma.conf.cjs",
108108
"test-firefox": "karma start --single-run --browsers Firefox karma.conf.cjs",
109109
"test-node": "node ./bin/dot-wasm.js -v && mocha ./dist-test/index.node.cjs --reporter spec && mocha ./dist-test/index.node.js --reporter spec",
110110
"test": "run-s test-bundle test-bundle-node test-bundle-umd test-chrome test-node",
@@ -116,7 +116,7 @@
116116
"update": "npx npm-check-updates -u -t minor"
117117
},
118118
"dependencies": {
119-
"yargs": "17.6.2"
119+
"yargs": "17.7.1"
120120
},
121121
"devDependencies": {
122122
"@istanbuljs/nyc-config-typescript": "1.0.2",
@@ -126,35 +126,35 @@
126126
"@types/chai": "4.3.4",
127127
"@types/emscripten": "1.39.6",
128128
"@types/mocha": "10.0.1",
129-
"@types/node": "18.11.18",
130-
"@types/yargs": "17.0.20",
131-
"@typescript-eslint/eslint-plugin": "5.49.0",
132-
"@typescript-eslint/parser": "5.49.0",
133-
"assemblyscript": "0.26.7",
129+
"@types/node": "18.15.11",
130+
"@types/yargs": "17.0.24",
131+
"@typescript-eslint/eslint-plugin": "5.57.0",
132+
"@typescript-eslint/parser": "5.57.0",
133+
"assemblyscript": "0.27.1",
134134
"chai": "4.3.7",
135135
"coveralls": "3.1.1",
136-
"eslint": "8.33.0",
136+
"eslint": "8.37.0",
137137
"fzstd": "0.1.0",
138138
"karma": "6.4.1",
139139
"karma-chai": "0.1.0",
140140
"karma-chrome-launcher": "3.1.1",
141141
"karma-firefox-launcher": "2.1.2",
142142
"karma-mocha": "2.0.1",
143143
"karma-spec-reporter": "0.0.36",
144-
"local-web-server": "5.2.1",
144+
"local-web-server": "5.3.0",
145145
"mocha": "10.2.0",
146146
"npm-run-all": "4.1.5",
147147
"nyc": "15.1.0",
148-
"rimraf": "4.1.2",
149-
"rollup": "3.12.0",
148+
"rimraf": "4.4.1",
149+
"rollup": "3.20.2",
150150
"rollup-plugin-sourcemaps": "0.6.3",
151151
"run-script-os": "1.1.6",
152152
"standard-version": "9.5.0",
153153
"tslib": "2.5.0",
154-
"typedoc": "0.23.24",
154+
"typedoc": "0.23.28",
155155
"typedoc-plugin-markdown": "3.14.0",
156-
"typescript": "4.9.4",
157-
"vitepress": "1.0.0-alpha.43"
156+
"typescript": "5.0.2",
157+
"vitepress": "1.0.0-alpha.63"
158158
},
159159
"repository": {
160160
"type": "git",

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.31
5+
VERSION=3.1.34
66

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

vcpkg-overlays/graphviz/portfile.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
set(VERSION 7.1.0)
1+
set(VERSION 8.0.1)
22

33
vcpkg_from_gitlab(
44
GITLAB_URL https://gitlab.com
55
OUT_SOURCE_PATH SOURCE_PATH
66
REPO graphviz/graphviz
7-
REF e650d3ba65f6d672a1fe09505bb576d4fed320bc
8-
SHA512 b705166bec267219808048f1f92dc5be965230349a381351d87c78a92e3db0ae10f83c1d175d6a30a3aa7eda0fb3b8077949e9cca062bbdd315a8c8804971e2c
7+
REF 8cd5300e2e31c80dbbfcdd65aad697187e5ac0b0
8+
SHA512 fec9c3238bc95a6755d3c036ce9877752f61b8166428319d1ea354de7dfc50cbe9b05ae799b9ac903a6371d310ba1eddb838fda5ed1bb33982600906beaae980
99
HEAD_REF main
1010
)
1111

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": "7.0.6",
3+
"version-semver": "8.0.1",
44
"port-version": 1,
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)