Skip to content

Commit 29daec3

Browse files
release: componentize-js v0.18.3 (#257)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: vados-cosmonic <[email protected]>
1 parent 8af9d73 commit 29daec3

File tree

4 files changed

+49
-4
lines changed

4 files changed

+49
-4
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# Changelog
22

3+
## [0.18.3] - 2025-07-16
4+
5+
### 🚀 Features
6+
7+
* *(ci)* add release automation (#226) by @vados-cosmonic in #226
8+
9+
### 🐛 Bug Fixes
10+
11+
* allow for use of both manual & fetchEvent based HTTP (#247) by @vados-cosmonic in #247
12+
13+
* makefile dep for splicer component (#251) by @vados-cosmonic in #251
14+
15+
* add repository.url to package.json (#243) by @vados-cosmonic in #243
16+
17+
* (ci) npm release artifact (#241) by @vados-cosmonic in #241
18+
19+
* (ci) NPM public access release (#239) by @vados-cosmonic in #239
20+
21+
* (ci) remove packages prefix (#232) by @vados-cosmonic in #232
22+
23+
* (ci) remove if for JS projects (#231) by @vados-cosmonic in #231
24+
25+
* (ops) add CHANGELOG.md (#229) by @vados-cosmonic in #229
26+
27+
* do not skip wasi:http export processing (#218) by @vados-cosmonic in #218
28+
29+
* (ci) use a local test server for fetch test (#207) by @vados-cosmonic in #207
30+
31+
### 🚜 Refactor
32+
33+
* splicer WIT and generated bindings (#252) by @vados-cosmonic in #252
34+
35+
* componentize code (#203) by @vados-cosmonic in #203
36+
37+
* (splicer) add explicit error for invalid WIT source (#219) by @vados-cosmonic in #219
38+
39+
### ⚙️ Miscellaneous Tasks
40+
41+
* *(ci)* add clippy (#248) by @vados-cosmonic in #248
42+
43+
* add CHANGELOG.md (#227) by @vados-cosmonic in #227
44+
45+
* (deps) update upstream wasm deps to *.227.1 (#204) by @vados-cosmonic in #204
46+
47+
348
## [0.18.3-rc.6] - 2025-07-14
449

550
### 🐛 Bug Fixes

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bytecodealliance/componentize-js",
3-
"version": "0.18.3-rc.6",
3+
"version": "0.18.3",
44
"homepage": "https://github.com/bytecodealliance/componentize-js#readme",
55
"description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding",
66
"type": "module",

src/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function componentizeCmd (jsSource, opts) {
2222
}
2323

2424
program
25-
.version('0.18.3-rc.6')
25+
.version('0.18.3')
2626
.description('Create a component from a JavaScript module')
2727
.usage('<js-source> --wit wit-world.wit -o <component-path>')
2828
.argument('<js-source>', 'JS source file to build')

0 commit comments

Comments
 (0)