diff options
author | 2021-10-30 01:19:15 -0700 | |
---|---|---|
committer | 2021-10-30 01:19:15 -0700 | |
commit | dde2b80e1df11c73cf63855190548c0c0eafc7da (patch) | |
tree | db2e69ffa8240ea5041d53a8a633cfff9576f92b | |
parent | 49b954462d2e027e03f44938181d33f78d6416e6 (diff) | |
download | bun-dde2b80e1df11c73cf63855190548c0c0eafc7da.tar.gz bun-dde2b80e1df11c73cf63855190548c0c0eafc7da.tar.zst bun-dde2b80e1df11c73cf63855190548c0c0eafc7da.zip |
Update CHANGELOG.md
-rw-r--r-- | src/CHANGELOG.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 08c70ac83..414155fba 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,7 @@ # Upcoming release +- [bun run] `bun run ./file.js` now supports running JavaScript, TS, TSX, and JSX files. Before, it would just say `"error: Missing script". If there is no `#!` shebang in the file, You can still use Node & Deno with `bun run`, that works the same as before. +- [Bun.js] Top-level await +- [Bun.js] `performance.now()` is implemented +- [Bun.js] `fetch()` is fixed - [.env loader] Pass through process environment variable values verbatim instead of treating them similarly to .env files. `.env` needs special parsing because quotes are optional, values are potentially nested, and it's whitespace sensitive. This probably also improves the performance of loading process environment variables, but that was already pretty quick so it probably doesn't matter. |