Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-24 | Maybe fix a crash | 1 | -1/+1 | ||
2022-10-23 | Add `fd` to `SystemError` and fix 2 cases with invalid tagged union | 1 | -9/+3 | ||
cc @sno2 | |||||
2022-10-23 | fix(web): stop segfault on invalid fd error (#1386) | 1 | -1/+5 | ||
2022-10-21 | Codegen | 1 | -8/+10 | ||
2022-10-20 | Fix Bun.serve error handler error param (#1359) | 1 | -0/+9 | ||
2022-10-19 | Fix calling `ws.publish` inside `close` when other clients are connected | 1 | -23/+37 | ||
This fixes https://github.com/oven-sh/bun/issues/1357 | |||||
2022-10-19 | Allow returning a Response object when upgrading | 1 | -6/+21 | ||
2022-10-17 | Fix error handler | 1 | -3/+8 | ||
2022-10-17 | Workaround crash | 1 | -2/+18 | ||
2022-10-17 | Implement `sendText`, `sendBinary`, `publishText`, `publishBinary` | 1 | -5/+366 | ||
2022-10-17 | Clean up some code | 1 | -34/+28 | ||
2022-10-17 | Fix headers + add test | 1 | -0/+8 | ||
2022-10-17 | Implement `error` and `binaryType` | 1 | -19/+141 | ||
2022-10-17 | Redo WebSocket api | 1 | -373/+415 | ||
2022-10-16 | Disable InlineBlob optimization | 1 | -27/+35 | ||
2022-10-15 | Dumber code is better code | 1 | -1/+3 | ||
2022-10-15 | Errors must return 0 instead of undefined | 1 | -1/+2 | ||
2022-10-15 | Add a helper for InlineBlob from two arrays | 1 | -4/+1 | ||
2022-10-15 | More logging | 1 | -5/+5 | ||
2022-10-15 | More lenient for response_value data | 1 | -1/+1 | ||
2022-10-15 | Rename `pendingSockets` to `pendingWebSockets` | 1 | -3/+3 | ||
2022-10-15 | Fix memory leak in HTTP server | 1 | -0/+2 | ||
2022-10-15 | Remove unnecessary GC protect() call | 1 | -1/+31 | ||
2022-10-15 | Fix crash in WebSocketServer close | 1 | -3/+4 | ||
2022-10-15 | WebSocket Server support | 1 | -104/+1157 | ||
2022-10-11 | Update server.zig | 1 | -1/+1 | ||
2022-10-06 | Fix unused arg | 1 | -1/+1 | ||
2022-10-06 | Add `protocol` getter to Bun.serve() | 1 | -0/+11 | ||
2022-10-06 | Add simple Hot Module Reloading to bun's runtime | 1 | -2/+2 | ||
2022-10-06 | Implement Server.reload() | 1 | -6/+42 | ||
2022-10-02 | Fix test failures | 1 | -44/+17 | ||
2022-09-30 | Eagerly receive incoming request bodies | 1 | -77/+71 | ||
2022-09-30 | Request->url == string, not ZigString now | 1 | -19/+23 | ||
2022-09-30 | Remove extraneous calls to `.ref()` | 1 | -13/+13 | ||
2022-09-29 | Fixup | 1 | -3/+5 | ||
2022-09-29 | don't need to mark | 1 | -1/+0 | ||
2022-09-29 | Lazy URL, more explicit close() | 1 | -30/+67 | ||
2022-09-29 | Fix Bun.serve not keeping process alive | 1 | -13/+13 | ||
2022-09-28 | Inline blobs in the HTTP server | 1 | -31/+41 | ||
2022-09-26 | [Web Streams] Add `body` to `Response` and `Request` (#1255) | 1 | -24/+269 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-22 | Faster `Blob` + begin to implement `FileSink` | 1 | -1/+1 | ||
2022-09-22 | 1 event loop per thread. Instead of 3. | 1 | -6/+0 | ||
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-20 | Fix incorrect `hostname` logic | 1 | -13/+13 | ||
Fixes https://github.com/oven-sh/bun/issues/1261 | |||||
2022-09-18 | Improve the perf of reading HTTP request body | 1 | -28/+15 | ||
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 | 1 | -0/+120 | ||
2022-09-16 | Fix issue with server not starting before exiting | 1 | -0/+2 | ||
2022-09-16 | Make new HTTP client more stable | 1 | -17/+33 | ||