Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-22 | stub out process.stdin.setRawMode | 1 | -0/+1 | ||
2023-01-21 | Refactor `new Buffer` to pass Node.js tests | 1 | -6/+2 | ||
2023-01-21 | [Buffer] Add deprecated `parent` property | 1 | -0/+6 | ||
2023-01-21 | [buffer] Add faster path for Uint8Array | 1 | -0/+6 | ||
2023-01-21 | [buffer] Make Buffer.from pass more tests | 1 | -37/+59 | ||
2023-01-18 | Fixes #1831 | 1 | -5/+12 | ||
2023-01-04 | 10x faster `new Buffer` (#1717) | 2 | -38/+46 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-28 | Move some code up | 1 | -7/+4 | ||
2022-12-28 | Fix `ReadableStream.pipeTo` | 1 | -1/+1 | ||
2022-12-17 | bug compatible with `stdin.on("readable")` (#1626) | 1 | -3/+26 | ||
2022-12-17 | Delete Oniguruma (#1625) | 1 | -583/+0 | ||
* Update .gitmodules * Delete oniguruma * Delete Oniguruma * Make this test less flaky * :scissors: Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-16 | add tests for `process.stdin` (#1621) | 1 | -1/+1 | ||
2022-12-15 | [process.stdin] Support reading from process.stdin in the same tick | 1 | -2/+17 | ||
2022-12-15 | fix(stream): make Readable.read work w/o _construct implemented (#1613) | 1 | -5/+0 | ||
* fix(stream): put Readable._readableState.constructed default in spec (true, not false) * cleanup(readable): remove unnecessary _construct methods * test(stream): add test for Readable w/o _construct method | |||||
2022-12-13 | Avoid creating closure | 1 | -7/+13 | ||
2022-12-13 | make `process.stdin` work under TTY (#1611) | 1 | -49/+35 | ||
- workarounds for #1607 & #1608 fixes #1604 | |||||
2022-12-11 | Add _read | 1 | -2/+17 | ||
2022-12-10 | override `process.stdin.on()` correctly (#1603) | 1 | -1/+1 | ||
* override `process.stdin.on()` correctly fixes #1601 * add tests | |||||
2022-12-05 | Make `console` an `AsyncIterable` | 2 | -27/+139 | ||
2022-12-05 | `process.stdin` exists but doesn't totally work yet | 1 | -15/+12 | ||
2022-12-04 | Add some basic tests for process.stdout | 1 | -5/+11 | ||
2022-12-03 | `process.stdout` and `process.stderr` | 2 | -24/+600 | ||
2022-12-02 | Propagate reason in AbortSignal and reuse in ReadableStream.pipeTo | 1 | -9/+4 | ||
Similar to https://github.com/WebKit/WebKit/pull/7013 | |||||
2022-12-02 | Update TransformStream options getters to check for undefined | 1 | -4/+8 | ||
This is essentially copied from https://github.com/WebKit/WebKit/pull/7021 | |||||
2022-11-28 | Ensure we report errors in controller.close | 1 | -1/+9 | ||
2022-11-27 | Handle more cases with printing objects | 1 | -0/+2 | ||
2022-11-25 | Fix double free | 1 | -7/+14 | ||
2022-11-25 | [streams] Always call start | 1 | -6/+4 | ||
2022-11-24 | Add extra check | 1 | -1/+1 | ||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 1 | -24/+65 | ||
* wip * wip * Fix bug with stdin * zig fmt * seems to work! * Update streams.test.js Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-20 | mild clean up | 2 | -10/+10 | ||
2022-11-19 | [streams] Fix exception in `WritableStream` | 1 | -4/+1 | ||
cc @Electroid | |||||
2022-11-19 | [streams] Fix exception in streams with 1 item that sometimes occurred | 1 | -2/+15 | ||
2022-11-11 | Add test that fails on linux | 2 | -9/+2 | ||
2022-11-08 | Fix Buffer.slice and Buffer.subarray | 1 | -16/+16 | ||
2022-10-23 | Fix `ReadableStream.prototype.tee` | 1 | -0/+6 | ||
2022-10-21 | micro-optimize | 1 | -7/+14 | ||
2022-10-17 | add oniguruma for regex with variable length lookbehinds (#1329) | 1 | -0/+583 | ||
* 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-12 | Regenerate builtins | 1 | -0/+24 | ||
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-03 | `Bun.spawn` start to implement support for buffered input (ArrayBuffer, ↵ | 1 | -0/+3 | ||
Response, Request body) | |||||
2022-10-03 | Fix undefined is not a function error in WritableStream | 2 | -3/+5 | ||
2022-09-28 | Support a `default` object in CommonJS wrapper | 1 | -1/+5 | ||
Fixes https://github.com/oven-sh/bun/issues/1284 Related to https://github.com/oven-sh/bun/issues/1285 | |||||
2022-09-26 | Make `Bun.spawn`, FileSink and FileBlobLoader a little more reliable | 1 | -1/+4 | ||
2022-09-25 | :sleepy: | 1 | -3/+0 | ||
2022-09-25 | wip | 2 | -0/+6 | ||
2022-09-11 | Fix bug with `Buffer.from([123], "utf8")` | 1 | -1/+4 | ||
cc @worm-emoji | |||||
2022-09-06 | Make the plugins a little more resilient | 1 | -1/+1 | ||