Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-04 | content-range is inclusive | 1 | -1/+1 | ||
2022-12-04 | [Bun.serve] Implement `Content-Range` support with `Bun.file()` | 1 | -13/+107 | ||
2022-12-01 | Reduce memory usage in Bun.serve() by up to 3x (#1569) | 1 | -1/+10 | ||
* Update WebKit * Use 5x less memory in Bun.serve() * Update Dockerfile.devcontainer * Update async-overhead.mjs Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-29 | import everything from "bun" where possible | 1 | -34/+34 | ||
2022-11-26 | Make HTTP status text more consistent with other HTTP servers | 1 | -2/+73 | ||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 1 | -4/+11 | ||
* wip * wip * Fix bug with stdin * zig fmt * seems to work! * Update streams.test.js Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-22 | Introduce `Bun.FileSystemRouter` API | 1 | -1/+0 | ||
2022-11-19 | Introduce `BUN_GARBAGE_COLLECTOR_LEVEL` debug environment variable | 1 | -1/+1 | ||
2022-11-18 | bun test matchers and tests (#1526) | 1 | -1/+1 | ||
* ignore webkit for cherry-pick * toContain and toBeTruthy * toBe null, undefined, falsy, toHaveProperty, .not * markBindings * remove toHaveProperty, undo ignore webkit, more tests * undo ignore webkit * remove bad tests * check if length property exists for toHaveLength() * fix call signature * handle argument that is not an integer * getLengthOfArray returns u64 * switch to truncate * toHaveLength() edge cases * add toBooleanSlow() * infinity, nan, negative | |||||
2022-11-16 | Remove incorrect assertion | 1 | -3/+1 | ||
2022-11-15 | Fix another assertion failure | 1 | -1/+1 | ||
2022-11-09 | Implement Server.publish() | 1 | -0/+61 | ||
Fixes https://github.com/oven-sh/bun/issues/1417 | |||||
2022-11-09 | Update server.zig | 1 | -0/+3 | ||
2022-11-09 | Fix crash when an exception occurs in open() | 1 | -6/+15 | ||
2022-11-09 | Fix #1354 | 1 | -2/+4 | ||
2022-11-06 | Fixes https://github.com/oven-sh/bun/issues/1451 | 1 | -1/+7 | ||
2022-10-30 | Updating libuwebsockets C API (#1423) | 1 | -1/+1 | ||
2022-10-26 | Prefer `BUN_PORT` over `PORT`bun-v0.2.2 | 1 | -1/+1 | ||
2022-10-26 | Update server.zig | 1 | -1/+1 | ||
2022-10-26 | Make `"tls"` an explicit object we pass instead of implicit top-level options | 1 | -4/+18 | ||
cc @Electroid @colinhacks | |||||
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 | ||