Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
2022-09-11 | New HTTP client (#1231) | 3 | -38/+116 | ||
* wip * It mostly works! * Support `bun install` * Support `bun create` * Support chunked transfer encoding * Handle Keep Alive when redirecting to a different domain Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-08-17 | New Zig <> C++ bindings generator. +20% faster HTTP server | 1 | -0/+0 | ||
2022-08-14 | updating libarchive (#1078) | 1 | -0/+0 | ||
2022-08-09 | [misc] Add a way to disable LOLHTML | 1 | -1/+71 | ||
LOLHTML costs about 1 MB of binary size | |||||
2022-08-07 | [bun install] Implement `bun link` | 2 | -0/+21 | ||
2022-07-09 | Migrate to Zig v0.10.0 | 1 | -26/+15 | ||
2022-07-04 | [internal] Fix duplicate symbol issue | 1 | -3/+0 | ||
2022-07-04 | 0! | 1 | -0/+0 | ||
2022-07-02 | [streams] Rename `drain()` -> `flush()` | 1 | -0/+51 | ||
2022-07-01 | [Bun.serve] Add explicit function for clearing the abort callback | 3 | -7/+21 | ||
2022-06-27 | [uws] Add helper for corking | 1 | -2/+27 | ||
2022-06-27 | use less `undefined` | 1 | -5/+9 | ||
2022-06-27 | Fix data corruption bug in HTTP server | 2 | -2/+13 | ||
2022-06-22 | Update libbacktrace | 1 | -0/+0 | ||
2022-06-22 | Fix `WebSocket` when HTTP server is not running | 1 | -0/+4 | ||