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
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# Changelog

## [0.18.3] - 2025-07-16

### 🚀 Features

* *(ci)* add release automation (#226) by @vados-cosmonic in #226

### 🐛 Bug Fixes

* allow for use of both manual & fetchEvent based HTTP (#247) by @vados-cosmonic in #247

* makefile dep for splicer component (#251) by @vados-cosmonic in #251

* add repository.url to package.json (#243) by @vados-cosmonic in #243

* (ci) npm release artifact (#241) by @vados-cosmonic in #241

* (ci) NPM public access release (#239) by @vados-cosmonic in #239

* (ci) remove packages prefix (#232) by @vados-cosmonic in #232

* (ci) remove if for JS projects (#231) by @vados-cosmonic in #231

* (ops) add CHANGELOG.md (#229) by @vados-cosmonic in #229

* do not skip wasi:http export processing (#218) by @vados-cosmonic in #218

* (ci) use a local test server for fetch test (#207) by @vados-cosmonic in #207

### 🚜 Refactor

* splicer WIT and generated bindings (#252) by @vados-cosmonic in #252

* componentize code (#203) by @vados-cosmonic in #203

* (splicer) add explicit error for invalid WIT source (#219) by @vados-cosmonic in #219

### ⚙️ Miscellaneous Tasks

* *(ci)* add clippy (#248) by @vados-cosmonic in #248

* add CHANGELOG.md (#227) by @vados-cosmonic in #227

* (deps) update upstream wasm deps to *.227.1 (#204) by @vados-cosmonic in #204


## [0.18.3-rc.6] - 2025-07-14

### 🐛 Bug Fixes
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.3-rc.6",
"version": "0.18.3",
"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.3-rc.6')
.version('0.18.3')
.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