Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-13 | Make node streams faster (#1502) | 3 | -29/+11 | ||
* Make node streams faster * Fix for macOS, improve performance, handle ref and unref Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-12 | Redo how we poll pipes (#1496) | 2 | -66/+146 | ||
* Fix pipe * Handle unregistered * Fix failing test | |||||
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 | Clone all the strings | 1 | -7/+7 | ||
2022-11-09 | Clone the text | 1 | -1/+1 | ||
2022-11-09 | Fix #1354 | 1 | -2/+4 | ||
2022-11-08 | Guard against closing the same pid twice | 1 | -3/+10 | ||
2022-11-08 | Only perform this check on macOS | 1 | -8/+14 | ||
2022-11-08 | Fixes #1320 | 1 | -1/+2 | ||
Tests pass now on linux | |||||
2022-11-08 | Fix error message | 1 | -1/+1 | ||
2022-11-08 | Stack allocate arguments to make it actually threadsafe | 2 | -2/+2 | ||
2022-11-07 | Maybe fix bug with onExit callback? | 1 | -6/+18 | ||
2022-11-07 | [bun:test] Implement `done` callback with support for async functions | 1 | -3/+3 | ||
2022-11-06 | Fixes https://github.com/oven-sh/bun/issues/1451 | 1 | -1/+7 | ||
2022-11-06 | Add way to explicitly coercion object to int32 | 3 | -7/+7 | ||
2022-11-06 | Fix symbol error with `make headers` | 1 | -0/+3 | ||
cc @lawrencecchen | |||||
2022-11-06 | Fix bug when passing ABI Types as integers | 1 | -3/+5 | ||
2022-11-06 | Fixes https://github.com/oven-sh/bun/issues/1462 | 1 | -1/+3 | ||
2022-11-06 | fix(subprocess): fix typo in spawnSync (#1464) | 1 | -2/+2 | ||
2022-11-03 | Fix crash in setTimeout/setInterval | 1 | -0/+5 | ||
2022-11-03 | Fix incorrect exit code | 1 | -9/+15 | ||
2022-11-03 | Fix `cmd not found in $PATH` printing raw struct | 1 | -1/+1 | ||
2022-11-02 | Fix memory leak | 1 | -2/+2 | ||
2022-11-02 | [bun:ffi] Add `threadsafe` option to callbacks | 1 | -2/+19 | ||
2022-11-02 | Update ffi.zig (#1449) | 1 | -1/+1 | ||
2022-11-02 | [bun:ffi] Implement `JSCallback` so C can call into JS | 3 | -78/+167 | ||
2022-11-02 | Improve async function handling code in setTimeout and setInterval | 1 | -19/+70 | ||
Should fix | |||||
2022-10-30 | Updating libuwebsockets C API (#1423) | 1 | -1/+1 | ||
2022-10-27 | feat(core): optimize zig slice (#1408) | 2 | -5/+5 | ||
* feat(core): optimize zig slice * address concerns | |||||
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 | 2 | -9/+25 | ||
cc @Electroid @colinhacks | |||||
2022-10-25 | Fix crash in TCP server | 1 | -18/+25 | ||
2022-10-25 | TCP & TLS Socket API (#1374) | 3 | -0/+1576 | ||
* TCP Socket API * Wip * Add snippet for StringDecoder * Rename `close` to `stop`, replace `close` with `end` * Add a tcp echo server test * Some docs * Update README.md * Fix build * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
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-22 | Fix spawn exitcode (#1371) | 1 | -1/+8 | ||
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` | 2 | -5/+400 | ||
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` | 2 | -19/+145 | ||