Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-04-04 | Implement `import.meta.main` (#2556) | 4 | -2/+30 | ||
* Implement `import.meta.main` * Update main-test-1.js * Update fs.test.ts --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-01 | Add stubs for missing node builtins (#2534) | 3 | -0/+74 | ||
* Stub `node:v8` * Stub `node:trace_events` * Stub `node:repl` * Stub `node:inspector` * Stub `node:http2` * Stub `node:diagnostics_channel` * Stub `node:dgram` * Stub `node:cluster` * Link stubs * cleanup * Clean up the test * Implement `node:vm` stub * Cleanup `v8` module stub * Add missing `promises` export to node:stream * Implement `node:stream/promise` * Implement `node:assert/strict` * cleanup * better errors * Increaase timeout * Update inspector.exports.js * Make the version consistent * Implement `process.binding("constants")` * Update runner.node.mjs --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-03-19 | Several bug fixes (#2427) | 1 | -1/+1 | ||
* Fix test * Fix segfault when unexpected type is passed in `expect().toThrow` * Fix issues with request constructor * Don't bother cloning headers when its empty * woops * more tests * fix incorrect test * Make the fetch error messages better * Update response.zig * Fix test that failed on macOS * Fix test * Remove extra hash table lookups * Support running dummy registry directly cc @alexlamsl * Update test * Update test * fixup * Workaround crash in test runner * Fixup test * Fixup test * Update os.test.js --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-03-07 | improve `Buffer` compatibility with Node.js (#2341) | 3 | -37/+661 | ||
* improve `Buffer` compatibility with Node.js * use `memmove()` allow `encoding` to be `undefined` | |||||
2023-03-06 | feat(tty): add some `tty.WriteStream` methods to `process.{stdout, stderr}` ↵ | 2 | -1/+47 | ||
(#2320) * feat(stdio): add some `tty.WriteStream` methods * chore(builtins): add process builtin gen'd code | |||||
2023-02-14 | don't break esbuild | 4 | -38/+18 | ||
2023-01-31 | Re-run prettier after changes | 1 | -30/+10 | ||
2023-01-28 | [buffer] Do not throw in getters | 1 | -4/+4 | ||
2023-01-28 | [buffer] Add missing `offset` property | 3 | -1/+27 | ||
2023-01-27 | `Buffer.from` doesn't need to be the Buffer constructor | 3 | -21/+16 | ||
2023-01-22 | stub out process.stdin.setRawMode | 2 | -1/+3 | ||
2023-01-21 | Refactor `new Buffer` to pass Node.js tests | 3 | -13/+14 | ||
2023-01-21 | [Buffer] Add deprecated `parent` property | 2 | -0/+18 | ||
2023-01-21 | [buffer] Add faster path for Uint8Array | 2 | -1/+13 | ||
2023-01-21 | [buffer] Make Buffer.from pass more tests | 3 | -91/+119 | ||
2023-01-18 | Fixes #1831 | 4 | -17/+48 | ||
2023-01-10 | attempt (unsuccessfully) to improve c++ build time | 1 | -2/+0 | ||
2023-01-10 | Changes from upgrading webkit | 1 | -1/+1 | ||
2023-01-04 | 10x faster `new Buffer` (#1717) | 5 | -114/+147 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-28 | Move some code up | 2 | -15/+9 | ||
2022-12-28 | Fix `ReadableStream.pipeTo` | 2 | -3/+3 | ||
2022-12-18 | Regenerate builtins | 1 | -4/+27 | ||
2022-12-17 | bug compatible with `stdin.on("readable")` (#1626) | 1 | -3/+26 | ||
2022-12-17 | Delete Oniguruma (#1625) | 51 | -1509/+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-17 | Regenerate builtins | 1 | -7/+2 | ||
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 | 2 | -5/+35 | ||
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 | 2 | -55/+53 | ||
2022-12-13 | make `process.stdin` work under TTY (#1611) | 1 | -49/+35 | ||
- workarounds for #1607 & #1608 fixes #1604 | |||||
2022-12-11 | Add _read | 2 | -5/+35 | ||
2022-12-10 | Regenerate builtins | 1 | -2/+2 | ||
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` | 7 | -55/+474 | ||
2022-12-05 | `process.stdin` exists but doesn't totally work yet | 2 | -31/+25 | ||
2022-12-05 | "Fix" monkey-patching EventEmitter prototype | 1 | -0/+1 | ||
2022-12-04 | Add some basic tests for process.stdout | 6 | -58/+23 | ||
2022-12-03 | `process.stdout` and `process.stderr` | 10 | -212/+1447 | ||
2022-12-02 | Propagate reason in AbortSignal and reuse in ReadableStream.pipeTo | 3 | -25/+19 | ||
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 | Fix failing spawn() and spawnSync() tests | 1 | -2/+10 | ||
cc @ThatOneBro | |||||
2022-11-28 | Ensure we report errors in controller.close | 1 | -1/+9 | ||
2022-11-27 | Handle more cases with printing objects | 3 | -3/+8 | ||
2022-11-25 | Fix double free | 2 | -15/+28 | ||
2022-11-25 | [streams] Always call start | 2 | -14/+10 | ||
2022-11-24 | Add extra check | 2 | -4/+4 | ||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 2 | -49/+131 | ||
* 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 | 4 | -22/+22 | ||
2022-11-19 | [streams] Fix exception in `WritableStream` | 2 | -9/+3 | ||
cc @Electroid | |||||
2022-11-19 | [streams] Fix exception in streams with 1 item that sometimes occurred | 2 | -5/+31 | ||