Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
2022-08-27 | Update WebKit (#1165) | 1 | -128/+144 | ||
* 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-22 | Remove response pool | 1 | -9/+8 | ||
2022-08-22 | reduce usage of protect | 1 | -1/+11 | ||
2022-08-22 | Improve error message when port is already in use | 1 | -2/+12 | ||
2022-08-22 | Update server.zig | 1 | -2/+2 | ||
2022-08-22 | faster way to read content-type | 1 | -1/+1 | ||
2022-08-19 | Make React SSR up to 3x faster | 1 | -238/+247 | ||
2022-08-19 | 2x faster `Bun.serve` with async function handlers | 1 | -4/+13 | ||
2022-08-18 | Fix `bun:wrap` not loading | 1 | -1/+1 | ||
2022-08-17 | New Zig <> C++ bindings generator. +20% faster HTTP server | 1 | -24/+53 | ||
2022-08-13 | [Bun.serve] Fix crash on `req.headers` async | 1 | -0/+5 | ||
2022-08-12 | [Bun.serve] Fix crash on invalid certificate file path for SSL | 1 | -3/+5 | ||
2022-07-04 | [server] Clean up some of the logic for freeing ReadableStream | 1 | -3/+30 | ||
2022-07-02 | [bun http] Attempt to fix a crash | 1 | -35/+55 | ||
2022-07-01 | [Bun.serve] Clean up lifetimes & error handling somewhat | 1 | -87/+162 | ||
2022-07-01 | [Bun.serve] Don't run `error` recursively | 1 | -1/+1 | ||
2022-06-29 | [http server] Fix a segfault when aborting | 1 | -58/+67 | ||
2022-06-27 | begin adding react-ssr tests | 1 | -0/+1 | ||
2022-06-27 | Cork streams when possible | 1 | -13/+16 | ||
2022-06-26 | wip ReadableStream for HTTP(s) Server | 1 | -21/+254 | ||