Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-18 | Fix occasional crash with .json() | 1 | -1/+7 | ||
2022-09-18 | Update build-idbun-v0.1.13 | 1 | -1/+1 | ||
2022-09-18 | Fix broken sending http body | 1 | -1/+3 | ||
2022-09-18 | Update http_client_async.zig | 1 | -6/+12 | ||
2022-09-18 | Add a way to disable timeout and keepalive | 2 | -37/+69 | ||
2022-09-17 | extremely minor perf nitbun-v0.1.12 | 1 | -1/+1 | ||
2022-09-17 | feat: env loader nested values with curly braces (#1246) | 1 | -1/+46 | ||
* [env loader] Add support for nested value with curly braces does not support default values for nested values, e.g., ${undefined:default}, ${undefined:-default}, or ${undefined-default} * fix: minor fix and add more test * [env loader] Improve nested value parsing performance remove unnecessary branching Co-authored-by: Like <like@ekil.sh> | |||||
2022-09-17 | Fix napi module registration | 3 | -6/+17 | ||
Fixes https://github.com/oven-sh/bun/issues/1240 | |||||
2022-09-17 | Handle missing 0\r\n chunk in HTTP client | 1 | -1/+17 | ||
2022-09-17 | Update & configure SSL a little | 6 | -39/+67 | ||
2022-09-17 | Update WebKit | 6 | -28/+28 | ||
2022-09-17 | Explicitly enable ShadowRealm | 1 | -0/+1 | ||
2022-09-17 | Update macOS contributing instructions (#1247) | 3 | -4/+6 | ||
2022-09-17 | Avoid undefined memory | 1 | -1/+1 | ||
2022-09-17 | Smaller stack | 1 | -1/+1 | ||
2022-09-17 | Prevent returning resolved promises | 1 | -1/+3 | ||
2022-09-17 | Fix default hostname | 1 | -1/+1 | ||
2022-09-17 | Partially implement `server.fetch()` on Bun.serve | 2 | -5/+127 | ||
2022-09-17 | chore: add napi label (#1245) | 1 | -0/+2 | ||
2022-09-17 | [bun install] Add a package index via symlinks to ~/.bun/install/cache | 1 | -0/+14 | ||
2022-09-17 | Fix missing `reason` and `code` in `CloseEvent` | 5 | -41/+45 | ||
cc @paperdave hardcoded right now but at least tells you why it closed | |||||
2022-09-17 | Fix crash when specifying same package name twice in `bun add` | 1 | -2/+7 | ||
Fixes https://github.com/oven-sh/bun/issues/1202 | |||||
2022-09-16 | Update build-id | 1 | -1/+1 | ||
2022-09-16 | Make `fetch` throw a `SystemError` on reject | 2 | -9/+8 | ||
2022-09-16 | Fix issue with chunked transfer encoding | 1 | -32/+8 | ||
2022-09-16 | Fix issue with server not starting before exiting | 3 | -2/+10 | ||
2022-09-16 | [bun install] Remove spinloop | 1 | -26/+11 | ||
2022-09-16 | Fix `origin` missing `protocol` in `URL` | 2 | -1/+24 | ||
Fixes https://github.com/oven-sh/bun/issues/1244 | |||||
2022-09-16 | Fix process not exiting | 2 | -11/+7 | ||
2022-09-16 | Fix crash when parsing empty JSON file | 1 | -5/+11 | ||
2022-09-16 | Make new HTTP client more stable | 32 | -677/+1008 | ||
2022-09-14 | Use entropy cache for websocket mask | 2 | -60/+17 | ||
2022-09-14 | Fix issue with websockets callback not registering in canary | 1 | -15/+15 | ||
2022-09-14 | woops that was wrong | 1 | -2/+1 | ||
2022-09-14 | typo | 1 | -1/+1 | ||
2022-09-14 | Update crypto.mjs | 1 | -3/+3 | ||
2022-09-14 | Add missing `getRandomValues` to crypto polyfill | 2 | -6/+12 | ||
2022-09-14 | Update crypto benchmark | 1 | -5/+12 | ||
2022-09-14 | 5x faster crypto.randomValues() | 7 | -30/+158 | ||
2022-09-14 | Make `crypto.getRandomValues()` faster + fix > 1 byte/element typed arrays | 11 | -52/+243 | ||
Fix crypto.getRandomValues() with > 1 byte element typed arrays Fixes https://github.com/oven-sh/bun/issues/1237 | |||||
2022-09-13 | Fix Linux 200ms http client delay | 1 | -1/+1 | ||
https://man7.org/linux/man-pages/man2/send.2.html See the section on MSG_MORE | |||||
2022-09-11 | Add test | 1 | -0/+8 | ||
2022-09-11 | Fix bug with `Buffer.from([123], "utf8")` | 2 | -3/+9 | ||
cc @worm-emoji | |||||
2022-09-11 | Resolve rope strings in dynamic import paths | 2 | -2/+2 | ||
Fixes https://github.com/oven-sh/bun/issues/1230 | |||||
2022-09-11 | Fix build issue on Linux? | 1 | -1/+1 | ||
2022-09-11 | Hardcode localhost on macOS | 2 | -1/+13 | ||
2022-09-11 | typo | 1 | -1/+1 | ||
2022-09-11 | New HTTP client (#1231) | 17 | -747/+1563 | ||
* wip * It mostly works! * Support `bun install` * Support `bun create` * Support chunked transfer encoding * Handle Keep Alive when redirecting to a different domain Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-09 | Fix segfault due to GC and some more helper functions (#1221) | 8 | -193/+292 | ||
* Fix segfault due to GC and some more helper functions * fix upon reviews * add visitChildren | |||||
2022-09-09 | Update README.md | 1 | -4/+19 | ||