Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-21 | Fix `import Foo, {bar}` when from hardcoded builtin modules in runtime | 1 | -0/+16 | ||
2022-10-20 | Fix Bun.serve error handler error param (#1359) | 1 | -1/+5 | ||
2022-10-19 | Fix calling `ws.publish` inside `close` when other clients are connected | 1 | -0/+63 | ||
This fixes https://github.com/oven-sh/bun/issues/1357 | |||||
2022-10-19 | Prettier | 1 | -319/+346 | ||
2022-10-19 | Allow returning a Response object when upgrading | 1 | -0/+116 | ||
2022-10-18 | Fix test | 1 | -28/+38 | ||
2022-10-18 | get args fix (#1346) | 2 | -0/+37 | ||
* 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 | Implement `performance.timeOrigin` | 1 | -0/+6 | ||
2022-10-17 | add oniguruma for regex with variable length lookbehinds (#1329) | 1 | -0/+356 | ||
* 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 | Fix error handler | 1 | -0/+40 | ||
2022-10-17 | Update websocket-server.test.ts | 1 | -0/+41 | ||
2022-10-17 | Implement `sendText`, `sendBinary`, `publishText`, `publishBinary` | 1 | -4/+112 | ||
2022-10-17 | Fix headers + add test | 1 | -5/+16 | ||
2022-10-17 | More tests | 1 | -3/+293 | ||
2022-10-17 | Redo WebSocket api | 1 | -10/+59 | ||
2022-10-16 | Changed api | 1 | -4/+64 | ||
2022-10-15 | Add test for body mixin error | 1 | -0/+17 | ||
2022-10-15 | Add a simple test for websocket server | 1 | -0/+114 | ||
2022-10-13 | Fix import alias (#1313) | 1 | -0/+8 | ||
2022-10-13 | Add `for await` | 1 | -0/+27 | ||
2022-10-12 | Implement `ReadableStream.prototype[Symbol.asyncIterator]` | 1 | -0/+117 | ||
cc @fabiancook | |||||
2022-10-12 | Fix `require("bun")` and `import("bun")` when statically known | 1 | -0/+8 | ||
2022-10-12 | Update test_scope_debug.ts | 1 | -2/+111 | ||
2022-10-12 | support array as first arg in `Bun.spawn` | 2 | -3/+32 | ||
2022-10-12 | Fix test bug | 1 | -3/+4 | ||
2022-10-11 | Implement `Bun.spawnSync` | 2 | -16/+46 | ||
2022-10-11 | Make `Bun.spawn` work on Linux | 3 | -132/+161 | ||
2022-10-11 | Add test for Bun.file() for stdin and stdout | 1 | -1/+39 | ||
2022-10-11 | Add test that reads & writes stdin/stderr | 3 | -8/+32 | ||
2022-10-11 | Update bun-write.test.js | 1 | -4/+3 | ||
2022-10-11 | Implement `fs.rm` cross-platformly | 1 | -0/+32 | ||
2022-10-10 | Change behavior of Bun.write | 1 | -3/+3 | ||
2022-10-10 | Fix issue with exit callback in Bun.spawn() never firing | 4 | -13/+101 | ||
2022-10-10 | Add test for calling assert | 1 | -0/+11 | ||
2022-10-09 | Rename `resposne.file.test.js` -> `bun-write.test.js` + add some large file ↵ | 1 | -25/+81 | ||
tests | |||||
2022-10-09 | Start to add tests for spawn | 1 | -0/+89 | ||
2022-10-09 | Add a test for server.reload() | 1 | -17/+35 | ||
2022-10-09 | Fix navigator.userAgent test | 1 | -2/+2 | ||
2022-10-09 | Fix SQLite test | 1 | -1/+1 | ||
2022-10-09 | Add a test for `Bun.version` | 1 | -0/+6 | ||
2022-10-09 | Add a test for not logging .env | 1 | -0/+60 | ||
2022-10-08 | Fix https://github.com/oven-sh/bun/issues/1263 | 1 | -7/+28 | ||
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 Buffer.toJSON() | 1 | -0/+9 | ||
2022-10-05 | We need to explicitly flush now | 1 | -1/+1 | ||
2022-10-05 | Add a test for simultaneous requests | 1 | -0/+42 | ||
2022-10-05 | fix: console.log handle circular correctly (#1293) | 1 | -0/+2 | ||
2022-10-02 | Fix test failures | 3 | -3/+3 | ||
2022-10-01 | Fix `setTimeout(0)`, improve test coverage slightly, reduce memory usage of ↵ | 1 | -0/+40 | ||
timers | |||||
2022-10-01 | Increase test coverage for request body streaming | 1 | -76/+192 | ||
There is still one memory issue to address | |||||
2022-09-30 | Make setTimeout/setInterval more reliable | 1 | -0/+4 | ||