Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-26 | Make `Bun.spawn`, FileSink and FileBlobLoader a little more reliable | 12 | -207/+420 | ||
2022-09-26 | [Web Streams] Add `body` to `Response` and `Request` (#1255) | 11 | -150/+914 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-26 | Make getting the body for `fetch` a little more reusable | 1 | -42/+63 | ||
2022-09-26 | Fix crash when insufficient arguments | 1 | -1/+1 | ||
2022-09-25 | Fix `console.log` not printing an empty line | 2 | -2/+5 | ||
Depends on https://github.com/oven-sh/WebKit/actions/runs/3123884691/jobs/5066828848 Fixes https://github.com/oven-sh/bun/issues/1276 | |||||
2022-09-25 | Implement `isatty` in `node:tty` | 5 | -0/+84 | ||
2022-09-25 | :sleepy: | 5 | -15/+157 | ||
2022-09-25 | Make Linux implementation work | 2 | -5/+30 | ||
2022-09-25 | Linux implementation | 5 | -23/+123 | ||
2022-09-25 | wip | 20 | -19/+1788 | ||
2022-09-23 | Update bindings.zig | 1 | -0/+9 | ||
2022-09-23 | Implement `Bun.which` | 1 | -0/+79 | ||
2022-09-23 | Use JSC heap for .arrayBuffer() | 1 | -4/+1 | ||
2022-09-22 | Update streams.zig | 1 | -7/+2 | ||
2022-09-22 | Faster `Blob` + begin to implement `FileSink` | 28 | -274/+2161 | ||
2022-09-22 | Fix linux build | 1 | -0/+2 | ||
2022-09-22 | Add epoll to list of syscalls that can fail | 1 | -0/+1 | ||
2022-09-22 | Remove a mutex when enqueuing concurrent tasks | 1 | -3/+3 | ||
2022-09-22 | 1 event loop per thread. Instead of 3. | 3 | -134/+129 | ||
uWebSockets and uSockets will need to be upgraded to match the changes. Previously: - Bun had a separate kqueue/eventfd just for async wakeups. - Bun had a separate kqueue/epoll just for reading files non-blocking in the same thread This commit unifies it into one event loop per thread | |||||
2022-09-22 | [breaking] Bun.serve().hostname should return the hostname instead of the ↵ | 1 | -1/+1 | ||
baseURI Previously Bun.serve().hostname was returning the baseURI, effectively the `origin` That was incorrect. Instead, it should be returning the hostname | |||||
2022-09-21 | Fix crash when creating an empty array | 1 | -1/+1 | ||
2022-09-20 | Update types.zig | 1 | -1/+3 | ||
2022-09-20 | fixup | 1 | -3/+4 | ||
2022-09-20 | Update WebKit | 1 | -0/+0 | ||
2022-09-20 | Be more careful with process.argv | 1 | -8/+12 | ||
2022-09-20 | meant to include this in the previous commit | 1 | -0/+4 | ||
2022-09-20 | Add `navigator.userAgent` , `navigator.hardwareConcurrency` | 2 | -0/+50 | ||
2022-09-20 | Fix incorrect `hostname` logic | 2 | -13/+28 | ||
Fixes https://github.com/oven-sh/bun/issues/1261 | |||||
2022-09-19 | Update `process.argv` to more closely match node | 1 | -17/+12 | ||
2022-09-19 | Fix broken destructors | 1 | -5/+2 | ||
2022-09-18 | Improve the perf of reading HTTP request body | 1 | -28/+15 | ||
2022-09-18 | Fix occasional crash with .json() | 1 | -1/+7 | ||
2022-09-18 | Add a way to disable timeout and keepalive | 1 | -30/+52 | ||
2022-09-17 | Fix napi module registration | 3 | -6/+17 | ||
Fixes https://github.com/oven-sh/bun/issues/1240 | |||||
2022-09-17 | Update WebKit | 1 | -0/+0 | ||
2022-09-17 | Explicitly enable ShadowRealm | 1 | -0/+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 | Fix missing `reason` and `code` in `CloseEvent` | 4 | -41/+42 | ||
cc @paperdave hardcoded right now but at least tells you why it closed | |||||
2022-09-16 | Make `fetch` throw a `SystemError` on reject | 1 | -9/+7 | ||
2022-09-16 | Fix issue with server not starting before exiting | 3 | -2/+10 | ||
2022-09-16 | Fix `origin` missing `protocol` in `URL` | 1 | -1/+15 | ||
Fixes https://github.com/oven-sh/bun/issues/1244 | |||||
2022-09-16 | Fix process not exiting | 2 | -11/+7 | ||
2022-09-16 | Make new HTTP client more stable | 9 | -367/+470 | ||
2022-09-14 | Use entropy cache for websocket mask | 1 | -10/+9 | ||
2022-09-14 | 5x faster crypto.randomValues() | 3 | -22/+114 | ||
2022-09-14 | Make `crypto.getRandomValues()` faster + fix > 1 byte/element typed arrays | 9 | -51/+188 | ||
Fix crypto.getRandomValues() with > 1 byte element typed arrays Fixes https://github.com/oven-sh/bun/issues/1237 | |||||
2022-09-11 | Fix bug with `Buffer.from([123], "utf8")` | 2 | -3/+9 | ||
cc @worm-emoji | |||||
2022-09-11 | New HTTP client (#1231) | 2 | -12/+20 | ||
* 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> |