Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-01 | Fix timers keeping process alive unnecessarily | 1 | -0/+9 | ||
2022-11-29 | import everything from "bun" where possible | 5 | -12/+13 | ||
2022-11-26 | Update mimalloc | 1 | -0/+0 | ||
2022-11-25 | Update zlib | 1 | -0/+0 | ||
2022-11-20 | [fetch] Add optimization for chunked encoding | 1 | -1/+5 | ||
2022-11-19 | Update to Mimalloc v2.0.7 | 1 | -0/+0 | ||
2022-11-11 | Remove with `git rm` | 1 | -0/+0 | ||
2022-11-11 | Reactivate | 1 | -0/+0 | ||
2022-11-11 | Delete .keep | 1 | -0/+0 | ||
2022-11-11 | Create .keep | 1 | -0/+0 | ||
2022-11-11 | Delete libbacktrace | 1 | -0/+0 | ||
2022-11-11 | Replace `libbacktrace` with `WTFGetBacktrace` | 1 | -148/+0 | ||
2022-11-09 | Fix #1354 | 1 | -0/+2 | ||
2022-10-30 | Updating libuwebsockets C API (#1423) | 3 | -1007/+1435 | ||
2022-10-25 | TCP & TLS Socket API (#1374) | 1 | -26/+120 | ||
* 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-19 | Fix calling `ws.publish` inside `close` when other clients are connected | 1 | -5/+11 | ||
This fixes https://github.com/oven-sh/bun/issues/1357 | |||||
2022-10-18 | Fix typo in datetime.zig (#1310) | 1 | -1/+1 | ||
containg -> contain | |||||
2022-10-18 | Update uws | 1 | -0/+0 | ||
2022-10-18 | Update uws | 1 | -0/+0 | ||
2022-10-18 | Update uws | 1 | -0/+0 | ||
2022-10-18 | build faiilures | 2 | -6/+6 | ||
2022-10-18 | Update uws | 1 | -0/+0 | ||
2022-10-17 | add oniguruma for regex with variable length lookbehinds (#1329) | 1 | -0/+0 | ||
* added pcre2 submodule * pcre2 regex boilerplate * tests for pcre2 regex * flag validation, getters, construct and compile mostly working * string escaping for source and toString(), exec, more tests * flag sorting, match, matchAll, search, split, replace * remove lib link * add destructor to PCRE2RegExp * header include * removed ternary * switched to oniguruma for regex library * revert sql changes * fix indices flag, add tests * revert settings * working error messages * more tests for lastIndex, fix logic for compile and lastIndex * move oniguruma lib to deps out dir | |||||
2022-10-17 | Updates to UWS | 1 | -2/+3 | ||
2022-10-17 | Implement `error` and `binaryType` | 1 | -5/+5 | ||
2022-10-16 | Update uws | 1 | -0/+0 | ||
2022-10-16 | Set `Date` header | 1 | -0/+0 | ||
2022-10-16 | Make more sure we know what the types we are sending are | 1 | -5/+5 | ||
2022-10-16 | Fix WebSocket server sending invalid data at the end | 1 | -8/+10 | ||
2022-10-15 | WebSocket Server support | 3 | -119/+361 | ||
2022-10-11 | remove config struct | 3 | -14/+19 | ||
2022-10-11 | Handle eintr in uSockets | 1 | -0/+0 | ||
2022-10-11 | Work around Zig C ABI bug on Linux | 3 | -12/+8 | ||
2022-10-09 | maybe workaround C ABI issue on linux amd64 | 3 | -4/+5 | ||
2022-10-08 | Fix https://github.com/oven-sh/bun/issues/1263 | 2 | -0/+32 | ||
What happened: when moving to uSockets for the http client, I forgot to call `SSL_set_tlsext_host_name` and uSockets apparently doesn't do that | |||||
2022-10-06 | Fix linux amd64 crash | 1 | -2/+5 | ||
2022-10-06 | Add WebSocket bindings for uWS | 1 | -29/+102 | ||
2022-10-02 | Fix test failures | 1 | -2/+6 | ||
2022-09-30 | Make setTimeout/setInterval more reliable | 1 | -4/+12 | ||
2022-09-29 | Lazy URL, more explicit close() | 4 | -8/+64 | ||
2022-09-28 | Use uSockets for `setTimeout` and `setInterval` | 1 | -0/+0 | ||
2022-09-28 | /s/c_int/i32 | 1 | -189/+196 | ||
2022-09-28 | Fix several bugs with Request body streaming + store small response bodies ↵ | 1 | -7/+20 | ||
without an extra memory allocation | |||||
2022-09-25 | wip | 1 | -1/+1 | ||
2022-09-22 | 1 event loop per thread. Instead of 3. | 2 | -3/+6 | ||
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 | Fix `bun run foo --` by ignoring `--` | 1 | -2/+6 | ||
2022-09-19 | Pass through arguments unmodified after `bun run <script>` or `bun <script>` | 3 | -3/+32 | ||
Fixes https://github.com/oven-sh/bun/issues/231 | |||||
2022-09-17 | Update & configure SSL a little | 3 | -33/+41 | ||
2022-09-16 | Make new HTTP client more stable | 1 | -13/+76 | ||
2022-09-14 | 5x faster crypto.randomValues() | 1 | -0/+13 | ||