Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-25 | :sleepy:jarred/subprocess | 1 | -1/+29 | ||
2022-09-24 | wip | 1 | -10/+22 | ||
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` | 3 | -185/+632 | ||
2022-09-22 | 1 event loop per thread. Instead of 3. | 1 | -6/+15 | ||
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-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 | Partially implement `server.fetch()` on Bun.serve | 1 | -5/+7 | ||
2022-09-16 | Make `fetch` throw a `SystemError` on reject | 1 | -9/+7 | ||
2022-09-16 | Make new HTTP client more stable | 2 | -155/+128 | ||
2022-09-11 | New HTTP client (#1231) | 1 | -11/+19 | ||
* 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-07 | Fix crash with file descriptor | 1 | -10/+6 | ||
2022-09-07 | Helper for seeing if a File Blob is seekable | 1 | -0/+12 | ||
2022-09-07 | [Bun.write] clean up some error handling | 1 | -14/+32 | ||
2022-09-07 | Bun.write - only truncate if its a path string | 1 | -2/+2 | ||
2022-09-07 | Fast path for `Bun.write` with short-ish strings & typed arrays | 1 | -11/+225 | ||
Helps with https://github.com/oven-sh/bun/issues/646 but does not fully fix | |||||
2022-09-06 | workaround test failure | 1 | -5/+5 | ||
2022-09-03 | Fixes https://github.com/oven-sh/bun/issues/677 | 1 | -7/+9 | ||
2022-09-01 | Fix failing Buffer tests (#1197) | 1 | -6/+6 | ||
2022-09-01 | Add native StringDecoder (#1188) | 1 | -9/+6 | ||
* Add native StringDecoder * fix upon reviews * add Constructor and use LazyClassStructure | |||||
2022-08-29 | chore: Clean buffer C API (#1174) | 1 | -178/+93 | ||
2022-08-27 | Update WebKit (#1165) | 1 | -2/+2 | ||
* Update WebKit * Fix `DataView` and non-8 bit sized typed arrays with TextDecoder * New WebKit Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-08-25 | Faster way to lookup mimetype | 1 | -7/+8 | ||
2022-08-22 | Remove response pool | 1 | -37/+0 | ||
2022-08-22 | [node:http] speed up assigning headers | 1 | -1/+2 | ||
2022-08-21 | Remove usage of `fnctl64` so we can avoid the libc symbol | 1 | -62/+73 | ||
2022-08-18 | Faster TextDecoder | 2 | -120/+100 | ||
2022-08-18 | Fix Next.js regression | 1 | -12/+45 | ||
2022-08-18 | Fix missing `prototype` property on generated classes | 1 | -8/+0 | ||
2022-08-17 | Move around some things | 2 | -3/+118 | ||
2022-08-17 | New Zig <> C++ bindings generator. +20% faster HTTP server | 2 | -487/+365 | ||
2022-08-17 | Slightly improve header init perf | 1 | -47/+34 | ||
2022-08-13 | Improve event loop reliability on Linux | 2 | -2/+3 | ||
2022-08-12 | [bun.js] up to 60% faster TextEncoder.encodeInto and ~3% faster ↵ | 1 | -61/+83 | ||
TextEncoder.encode | |||||
2022-08-04 | allow setting status code in Response.redirect (#985) | 1 | -1/+1 | ||
2022-07-27 | #609 Don't truncate ascii buffers to 7-bit (#775) | 1 | -10/+9 | ||
2022-07-24 | Improve `console.log(new Blob([123]))` output | 1 | -7/+95 | ||
2022-07-17 | [js] Fix invalid unicode codepoint in error | 1 | -1/+1 | ||
2022-07-15 | [bun.js] Fix non-ascii latin1 string handling in console.log | 1 | -1/+1 | ||
Closes https://github.com/oven-sh/bun/issues/738 Closes https://github.com/oven-sh/bun/issues/737 | |||||
2022-07-12 | [bun.js] Fix GC bug with `fetch` | 1 | -68/+29 | ||
2022-07-11 | Fixes https://github.com/oven-sh/bun/issues/195 | 1 | -2/+58 | ||
2022-07-04 | [itnernal] Cleanup some of the streams code | 1 | -1/+0 | ||
2022-07-02 | [streams] Rename `drain()` -> `flush()` | 1 | -36/+98 | ||
2022-07-01 | Fix failing tests for ReadableStream -> {text, arrayBuffer, blob} | 2 | -2/+11 | ||
2022-06-30 | [TextEncoder] Use JSC heap for small buffers | 1 | -16/+64 | ||
2022-06-30 | Fix promise memory leak | 2 | -19/+73 | ||
2022-06-29 | Correctly handle latin1 rope strings with non-ascii characters | 1 | -36/+27 | ||
2022-06-29 | Make HTTP web streams faster | 1 | -34/+97 | ||
2022-06-27 | Cork streams when possible | 1 | -135/+83 | ||