Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-18 | Implement `performance.timeOrigin` | 2 | -0/+19 | ||
2022-10-17 | Fix empty process.argv | 1 | -13/+6 | ||
2022-10-17 | add oniguruma for regex with variable length lookbehinds (#1329) | 57 | -113/+2400 | ||
* 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 | Slightly mroe careful TextEncoder | 1 | -2/+2 | ||
2022-10-17 | Load fewer copies of uWS | 3 | -52/+45 | ||
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` | 11 | -11/+805 | ||
2022-10-17 | Clean up some code | 2 | -34/+35 | ||
2022-10-17 | Fix headers + add test | 1 | -0/+8 | ||
2022-10-17 | Implement `error` and `binaryType` | 3 | -25/+158 | ||
2022-10-17 | Handle .zero better | 1 | -0/+4 | ||
2022-10-17 | Redo WebSocket api | 8 | -373/+451 | ||
2022-10-16 | Disable InlineBlob optimization | 2 | -210/+247 | ||
2022-10-16 | Add a comment | 1 | -0/+1 | ||
2022-10-15 | Disable some logging | 1 | -1/+1 | ||
2022-10-15 | More careful code generator | 1 | -5/+10 | ||
2022-10-15 | Simplify code that turns a fetch() response into a JSResponse | 1 | -18/+24 | ||
2022-10-15 | Dumber code is better code | 1 | -1/+3 | ||
2022-10-15 | Errors must return 0 instead of undefined | 4 | -48/+135 | ||
2022-10-15 | Fix crash when BodyMixin functions throw | 1 | -7/+12 | ||
Fixes https://github.com/oven-sh/bun/issues/1331#issuecomment-1279844836 | |||||
2022-10-15 | Add a helper for InlineBlob from two arrays | 2 | -7/+24 | ||
2022-10-15 | More logging | 1 | -5/+5 | ||
2022-10-15 | add more logging | 10 | -124/+129 | ||
2022-10-15 | More forcefully clone strings | 1 | -3/+15 | ||
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 | Be more careful with some of the string handling code | 1 | -1/+34 | ||
2022-10-15 | WebSocket Server support | 12 | -109/+2067 | ||
2022-10-15 | Add a way to update cached values from Zig | 1 | -15/+51 | ||
2022-10-13 | Fix import alias (#1313) | 1 | -0/+1 | ||
2022-10-12 | Fix crash in TextEncoder with rope strings that happens sometimes | 1 | -0/+1 | ||
2022-10-12 | Regenerate builtins | 11 | -17/+479 | ||
2022-10-12 | Fix `cancel` not working in some cases in ReadableStream | 1 | -1/+11 | ||
2022-10-12 | Fix a bug with ReadableStreamDefaultReader and `"direct"` controller | 1 | -14/+31 | ||
2022-10-12 | Implement `ReadableStream.prototype[Symbol.asyncIterator]` | 2 | -0/+74 | ||
cc @fabiancook | |||||
2022-10-12 | Stop keeping the process alive for too long | 1 | -4/+10 | ||
2022-10-12 | support array as first arg in `Bun.spawn` | 1 | -100/+118 | ||
2022-10-11 | Remove dead code | 1 | -17/+4 | ||
2022-10-11 | Fix crash when decoding latin1 rope strings and the GC is running | 1 | -1/+1 | ||
2022-10-11 | Implement `Bun.spawnSync` | 2 | -65/+168 | ||
2022-10-11 | Make `Bun.spawn` work on Linux | 2 | -40/+58 | ||
2022-10-11 | Add test for Bun.file() for stdin and stdout | 1 | -1/+1 | ||
2022-10-11 | Maybe fix linux bug? | 1 | -1/+4 | ||
2022-10-11 | Update server.zig | 1 | -1/+1 | ||
2022-10-11 | Use poll() to check if writable | 1 | -4/+14 | ||
2022-10-11 | Implement `fs.rm` cross-platformly | 1 | -3/+107 | ||