From b2bdfb9d864b34f759c5fc68898976f3db66286d Mon Sep 17 00:00:00 2001 From: vados-cosmonic <123968127+vados-cosmonic@users.noreply.github.com> Date: Mon, 13 Apr 2026 16:56:45 +0000 Subject: [PATCH] release: componentize-js v0.20.0-rc.0 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 17 +++++++++++++++++ package-lock.json | 25 ++----------------------- package.json | 2 +- src/cli.js | 2 +- 4 files changed, 21 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a794002d..ec2e8f5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.20.0-rc.0] - 2026-04-13 + +### 🐛 Bug Fixes + +* use-after-free in cabi_realloc free_list on repeated export calls (#319) by @chaynabors in #319 + + +### Other Changes + +* *(other changes)* Update StarlingMonkey (#325) by @andreiltd in #325 + + + +## New Contributors +* @chaynabors made their first contribution in [#319](https://github.com/bytecodealliance/ComponentizeJS/pull/319) + + ## [0.19.4-rc.1] - 2026-03-10 ### 🚀 Features diff --git a/package-lock.json b/package-lock.json index 5d073906..5e4f8cd0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.19.4-rc.0", + "version": "0.19.4-rc.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@bytecodealliance/componentize-js", - "version": "0.19.4-rc.0", + "version": "0.19.4-rc.1", "workspaces": [ "." ], @@ -869,9 +869,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -888,9 +885,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -907,9 +901,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -926,9 +917,6 @@ "cpu": [ "riscv64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -945,9 +933,6 @@ "cpu": [ "s390x" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -964,9 +949,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -983,9 +965,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ diff --git a/package.json b/package.json index e6b09273..02e1084d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.19.4-rc.1", + "version": "0.20.0-rc.0", "homepage": "https://github.com/bytecodealliance/componentize-js#readme", "description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding", "type": "module", diff --git a/src/cli.js b/src/cli.js index 2af02e9e..ff8000ae 100755 --- a/src/cli.js +++ b/src/cli.js @@ -27,7 +27,7 @@ export async function componentizeCmd(jsSource, opts) { } program - .version('0.19.4-rc.1') + .version('0.20.0-rc.0') .description('Create a component from a JavaScript module') .usage(' --wit wit-world.wit -o ') .argument('', 'JS source file to build')