Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## [0.18.4] - 2025-07-23

### 🚀 Features

* update weval to v0.3.4 (#267) by @vados-cosmonic in #267


### 🐛 Bug Fixes

* logic for stubbing outgoing http and fetch-event (#268) by @vados-cosmonic in #268

* reuse feature list for CLI, add 'fetch-event' (#269) by @vados-cosmonic in #269

* remove log during realloc (#273) by @vados-cosmonic in #273

* *(tests)* responseOutparam usage (#271) by @vados-cosmonic in #271

* *(ci)* release changelog generation (#263) by @vados-cosmonic in #263

* *(ci)* create rc releases as prerelease (#264) by @vados-cosmonic in #264


### 🚜 Refactor

* 'features' -> 'feature' in WIT & Rust component (#270) by @vados-cosmonic in #270

* *(tests)* refactor expected globals test (#262) by @vados-cosmonic in #262


### ⚙️ Miscellaneous Tasks

* update StarlingMonkey to commit 1f6f81f (#260) by @vados-cosmonic in #260

* *(docs)* add comments to API type in README (#261) by @vados-cosmonic in #261




## [0.18.4-rc.1] - 2025-07-22

### 🚀 Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytecodealliance/componentize-js",
"version": "0.18.4-rc.1",
"version": "0.18.4",
"homepage": "https://github.com/bytecodealliance/componentize-js#readme",
"description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function componentizeCmd(jsSource, opts) {
}

program
.version('0.18.4-rc.1')
.version('0.18.4')
.description('Create a component from a JavaScript module')
.usage('<js-source> --wit wit-world.wit -o <component-path>')
.argument('<js-source>', 'JS source file to build')
Expand Down
Loading