Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-27 | Implement `process.release` | 1 | -0/+31 | ||
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-26 | Fix issue with `CryptoKey` and `SubtleCrypto` constructors | 2 | -27/+10 | ||
2022-10-25 | Fix crash in TCP server | 1 | -18/+25 | ||
2022-10-25 | Fix lexer expected token error (#1387) | 1 | -0/+4 | ||
* fix: lexer expected token error * fix: handle parse error through logs | |||||
2022-10-25 | TCP & TLS Socket API (#1374) | 15 | -8/+3733 | ||
* 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 | oniguruma regex lookbehind and multibyte hex fix (#1363) | 1 | -15/+115 | ||
* handle multibyte hex characters * non extended strings used for toString() and source * add hasIndices flags * more tests for lookbehinds, unicode, and hex characters * handled case when hex doesnt have enough digit, more tests * fix adding characters out of bounds * backslash in character class * compile() returns object * escape special characters in oniguruma character class | |||||
2022-10-24 | Maybe fix a crash | 1 | -1/+1 | ||
2022-10-24 | `Bun.peek` | 1 | -0/+93 | ||
2022-10-23 | Add `fd` to `SystemError` and fix 2 cases with invalid tagged union | 7 | -9/+42 | ||
cc @sno2 | |||||
2022-10-23 | fix(web): stop segfault on invalid fd error (#1386) | 2 | -1/+15 | ||
2022-10-23 | Fix `ReadableStream.prototype.tee` | 2 | -1/+13 | ||
2022-10-23 | Add Web Crypto API (#1384) | 236 | -40/+18571 | ||
* Add Web Crypto API * Duplicate symbols * Update c_cpp_properties.json Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-23 | fix(fetch): stop `new Response(null)` from segfaulting (#1383) | 1 | -8/+1 | ||
* fix(fetch): resolve segfaults with 'Response' * nit: use shorter check | |||||
2022-10-22 | Fix spawn exitcode (#1371) | 1 | -1/+8 | ||
2022-10-21 | Codegen | 2 | -16/+25 | ||
2022-10-21 | Treat invalid buffer value as utf8 string | 1 | -2/+3 | ||
2022-10-21 | Implement `fs.createReadStream`, begin `fs.createWriteStream` | 1 | -3/+621 | ||
2022-10-21 | Make Node Streams work better in Bun | 1 | -140/+214 | ||
2022-10-21 | Fix error handling logic in read() | 1 | -51/+79 | ||
2022-10-21 | Fix bugs in mask boolean values | 2 | -15/+21 | ||
2022-10-21 | Emit errors | 2 | -2/+37 | ||
2022-10-21 | Fix segfault when logging position object from failed nested import | 1 | -114/+34 | ||
2022-10-21 | Implement `setMaxListeners` and `getMaxListeners` | 1 | -1/+46 | ||
2022-10-21 | Fix test failure | 1 | -2/+3 | ||
2022-10-21 | Reload node:fs in development | 1 | -0/+9 | ||
2022-10-21 | micro-optimize | 1 | -7/+14 | ||
2022-10-20 | Fix crash in `highWaterMark` | 1 | -143/+144 | ||
2022-10-20 | Fix Bun.serve error handler error param (#1359) | 6 | -3/+32 | ||
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-18 | get args fix (#1346) | 1 | -0/+1 | ||
* fix args.len < capacity check * tests for args * file name change * switch to stdout.writer, use JSON for parsing * bun-debug or bun * missing arg | |||||
2022-10-18 | Update javascript.zig | 1 | -2/+15 | ||
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 | ||