Skip to content

Commit 73b4276

Browse files
release: componentize-js v0.18.4-rc.0 (#266)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: vados-cosmonic <[email protected]>
1 parent 08c7e50 commit 73b4276

File tree

4 files changed

+38
-4
lines changed

4 files changed

+38
-4
lines changed

CHANGELOG.md

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

3+
## [0.18.4-rc.0] - 2025-07-21
4+
5+
## Important Updates
6+
7+
This release contains an update to [StarlingMonkey][sm], the engine that powers `componentize-js`.
8+
Important new features and bugfixes from StarlingMonkey relevant to `componentize-js` that are
9+
pulled in by this update are listed below:
10+
11+
- Implement `EventTarget` and `Event` builtin ([#220](https://github.com/bytecodealliance/StarlingMonkey/pull/220))
12+
- Add support for two-argument `has` and `delete` in `URLSearchParams` ([#236](https://github.com/bytecodealliance/StarlingMonkey/pull/236))
13+
14+
[sm]: https://github.com/bytecodealliance/StarlingMonkey
15+
16+
### 🐛 Bug Fixes
17+
18+
* *(ci)* release changelog generation (#263) by @vados-cosmonic in #263
19+
20+
* *(ci)* create rc releases as prerelease (#264) by @vados-cosmonic in #264
21+
22+
23+
### 🚜 Refactor
24+
25+
* *(tests)* refactor expected globals test (#262) by @vados-cosmonic in #262
26+
27+
28+
### ⚙️ Miscellaneous Tasks
29+
30+
* update StarlingMonkey to commit 1f6f81f (#260) by @vados-cosmonic in #260
31+
32+
* *(docs)* add comments to API type in README (#261) by @vados-cosmonic in #261
33+
34+
35+
36+
337
## [0.18.3] - 2025-07-16
438

539
### 🚀 Features

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",
3+
"version": "0.18.4-rc.0",
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')
25+
.version('0.18.4-rc.0')
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)