Skip to content

Commit 65711b3

Browse files
committed
release notes for #3674
1 parent 63eb814 commit 65711b3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
3333
The ECMAScript 2024 specification was just approved, so it has been added to esbuild as a possible compilation target. You can read more about the features that it adds here: [https://2ality.com/2024/06/ecmascript-2024.html](https://2ality.com/2024/06/ecmascript-2024.html). The only addition that's relevant for esbuild is the regular expression `/v` flag. With `--target=es2024`, regular expressions that use the `/v` flag will now be passed through untransformed instead of being transformed into a call to `new RegExp`.
3434
35+
* Publish binaries for OpenBSD on 64-bit ARM ([#3674](https://github.com/evanw/esbuild/pull/3674))
36+
37+
With this release, you should now be able to install the `esbuild` npm package in OpenBSD on 64-bit ARM, such as on an Apple device with an M1 chip.
38+
39+
This was contributed by [@ikmckenz](https://github.com/ikmckenz).
40+
3541
* Publish binaries for WASI (WebAssembly System Interface) preview 1 ([#3300](https://github.com/evanw/esbuild/issues/3300), [#3779](https://github.com/evanw/esbuild/pull/3779))
3642
3743
The upcoming WASI (WebAssembly System Interface) standard is going to be a way to run WebAssembly outside of a JavaScript host environment. In this scenario you only need a `.wasm` file without any supporting JavaScript code. Instead of JavaScript providing the APIs for the host environment, the WASI standard specifies a "system interface" that WebAssembly code can access directly (e.g. for file system access).

npm/@esbuild/openbsd-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "MIT",
1010
"preferUnplugged": true,
1111
"engines": {
12-
"node": ">=12"
12+
"node": ">=18"
1313
},
1414
"os": [
1515
"openbsd"

0 commit comments

Comments
 (0)